/* 
Color Palette:
- Pastel Beige: #FFF5E1
- Pastel Rose: #FADADD
- Soft Grey: #E3E3E3
- Muted Sage: #D4E2D4
- White: #FFFFFF
*/

:root {
    --pastel-beige: #FFF5E1;
    --pastel-rose: #FADADD;
    --soft-grey: #E3E3E3;
    --muted-sage: #D4E2D4;
    --white: #FFFFFF;
    --text-color: #5B5B5B;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
    text-align: center;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.logo {
    max-width: 580px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--text-color);
    display: block;
    margin-left: auto;
    margin-right: auto;
}


p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: visible;
}

/* Hero Section */
.hero {
    text-align: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--pastel-beige), var(--pastel-rose));
    padding: 5vh 20px 0;
    position: relative;
    overflow-x: hidden;
}

.hero-content {
    animation: fadeIn 2s ease-in-out;
}

.hero .headline {
    font-size: 1.5rem;
    margin-top: 0rem;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--text-color);
}

.coming-soon {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.2;
    text-transform: none;
    letter-spacing: normal;
    margin-top: 4rem;
    opacity: 1;
    max-width: none;
}

/* Sections */
main section {
    padding: 4rem 20px;
}

.signup h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Signup Form */
#mc-embedded-subscribe-form {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
}

#mc-embedded-subscribe-form input[type="email"] {
    font-family: 'Inter', sans-serif;
    padding: 10px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

#mc-embedded-subscribe-form button[type="submit"] {
    font-family: 'Inter', sans-serif;
    padding: 10px 20px;
    border: none;
    background-color: var(--text-color);
    color: var(--white);
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

#mc-embedded-subscribe-form button[type="submit"]:hover {
    background-color: #555;
}

#mc-embedded-subscribe-form .response {
    margin-top: 1rem;
    color: var(--muted-sage);
    font-weight: 500;
    font-size: 1rem;
}

/* Footer */
footer {
    padding: 2rem 20px;
    background-color: #fdfdfd;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer p {
    margin: 0.5rem 0;
}

footer a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--text-color);
}

.social-icons a {
    text-decoration: none;
    color: var(--text-color);
    margin: 0 10px;
}

.social-icons svg {
    width: 24px;
    height: 24px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        
    }
    .hero .headline {
        font-size: 1.2rem;
    }
    .signup h2 {
        font-size: 2rem;
    }
    #mc-embedded-subscribe-form {
        flex-direction: column;
        align-items: center;
    }
    #mc-embedded-subscribe-form input[type="email"] {
        width: 100%;
        min-width: 0;
    }
}

@media (min-width: 769px) {
    .hero {
        padding-top: 2vh;
    }
    .coming-soon {
        white-space: nowrap;
        font-size: clamp(4rem, 9vw, 8rem);
    }
} 