:root {
    --primary-gold: #C5A059;
    /* Extracted approximate gold from checking standard gold colors, adjustable */
    --primary-gold-hover: #b08d4b;
    --bg-color: #0f0f0f;
    /* very dark grey/black */
    --text-color: #f0f0f0;
    --font-heading: 'Cinzel', serif;
    /* Elegant, premium feel */
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
}

.container {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fadeIn 1.5s ease-out;
}

/* Logo Styles */
.logo-wrapper {
    margin-bottom: 1rem;
}

.logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    /* If the logo has a black background, this helps blend it if there's a slight mismatch, 
       though a transparent PNG is ideal. Rounded corners can help soft transitions if needed. */
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Typography */
.title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* Gold gradient text */
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Form Styles */
.newsletter-form {
    display: flex;
    width: 100%;
    max-width: 500px;
    gap: 0;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #333;
    border-right: none;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    border-radius: 4px 0 0 4px;
}

.email-input:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
}

.submit-btn {
    padding: 1rem 2rem;
    background-color: var(--primary-gold);
    color: #000;
    border: 2px solid var(--primary-gold);
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 0 4px 4px 0;
    white-space: nowrap;
}

.submit-btn:hover {
    background-color: var(--primary-gold-hover);
    border-color: var(--primary-gold-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

/* Social Icons */
.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-icon {
    color: var(--primary-gold);
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: #fff;
    background-color: var(--primary-gold);
    transform: scale(1.1);
}

.footer {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: #666;
}

/* Responsive */
@media (max-width: 600px) {
    .title {
        font-size: 2.5rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .email-input {
        border-right: 2px solid #333;
        border-radius: 4px;
        width: 100%;
    }

    .submit-btn {
        border-radius: 4px;
        width: 100%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}