/* ===== COLOR VARIABLES ===== */
:root {
    --desert-sand: #D2B8A9;
    --charcoal-blue: #284554;
    --sky-blue: #CBE4EB;
    --champagne: #FCD3A2;
    --brandy: #793015;
    --blue-grey: #6795C7;
    --blue-grey-darker: #447fbf;
    --open-sky: #AACEE6;
    --gold-foil: #daa520;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--blue-grey-darker) 0%, var(--blue-grey) 50%, var(--desert-sand) 100%);
    color: #ffffff;
    min-height: 100vh;
    position: relative;
    /* No flex here anymore */
}

/* Keep the shimmer */
body::before {
    content: '';
    position: fixed; /* Changed from absolute to fixed */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(252, 211, 162, 0.1) 0%, 
        transparent 50%, 
        rgba(40, 69, 84, 0.3) 100%);
    animation: shimmer 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero-section {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem 0 2rem; /* no bottom padding */

}

.content-section {
    padding: 0rem 2rem 2rem 2rem; /* no top padding */
    width: 100%; /* ADD THIS - ensures section takes full width */
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.container {
    text-align: center;
    padding: 4rem 2rem 4rem 2rem;
    max-width: 800px;
    z-index: 1;
    margin: 0 auto;
}

.names {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.0em;

}

.name-left {
    transform: translate(0.0rem, -1rem);
}

.name-right {
    transform: translateY(1rem);
}

.ampersand-svg {
    color: var(--champagne);
    width: 10rem;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin: -0.5 -0.5rem;
    /* filter: 
        drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3))
        drop-shadow(0 0 4px var(--champagne)); */
        
}

@keyframes gold-foil-shimmer {
    0%, 100% { 
        filter: 
            drop-shadow(0 0 3px rgba(212, 175, 55, 0.4))
            drop-shadow(0 0 8px rgba(252, 211, 162, 0.2))
            hue-rotate(0deg) 
            brightness(1); 
    }
    50% { 
        filter: 
            drop-shadow(0 0 5px rgba(212, 175, 55, 0.6))
            drop-shadow(0 0 12px rgba(252, 211, 162, 0.4))
            hue-rotate(5deg) 
            brightness(1.15); 
    }
}

.ampersand {
    font-size: 3rem;
    color: var(--champagne);
    margin: 0 0.5rem;
}

.date {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.location {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0rem;
    color: rgba(255, 255, 255, 0.6);
}

.divider {
    width: 80px;
    height: auto;
    margin: 2rem auto;
    display: block;
}

.coming-soon {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 1rem;
}

.message {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
}

.superscript {
    font-size: 0.6em;
    vertical-align: super;
}

/* tablet */
@media (max-width: 4000px) {
    .names {
        font-size: 4rem;
    }
    .ampersand-svg{
        width: 9rem;
    }
    .date {
        font-size: 1.5rem;
    }
    .location {
        font-size: 1.2em;
    }
    .message {
        font-size: 1.2rem;
    }

}


/* tablet */
@media (max-width: 1024px) {
    .names {
        font-size: 3rem;
    }
    .ampersand-svg{
        width: 7.5rem;
    }
    .date {
        font-size: 1.2rem;
    }
    .location {
        font-size: 1em;
    }
    .message {
        font-size: 1rem;
    }

}

/* phone */
@media (max-width: 480px) {
    .names {
        font-size: 2.8rem;
    }
    .ampersand-svg{
        width: 6rem;
    }
    .date {
        font-size: 1rem;
    }
    .location {
        font-size: 0.8em;
    }
    .message {
        font-size: 0.9rem;
    }

}