/* Swisseat Coming Soon Page Styles */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital,wght@0,400;1,400&family=Inter:wght@400;500;700&display=swap');
:root {
    --swiss-red: #D62828;
    --swiss-gray: #F8F5EC;
    --text-dark: #222;
    --input-bg: #fff;
    --input-border: #e5e5e5;
}
html, body {
    height: 100%;
}
body {
    min-height: 100vh;
    background: var(--swiss-gray);
    color: var(--text-dark);
    font-family: 'Inter', Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem 1rem 1.5rem 1rem;
}
.hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.1rem;
    line-height: 1.1;
}
.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 2.2rem;
    color: #333;
}
.logo {
    margin: 0 auto 1.5rem auto;
    display: block;
    width: 180px;
    height: auto;
}
.brand {
    font-family: 'DM Serif Display', serif;
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 2.2rem;
    color: #222;
}
.waitlist-lead {
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
    color: #222;
}
.waitlist-form {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.2rem;
}
.waitlist-form input[type="email"] {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    border: 1.5px solid var(--input-border);
    background: var(--input-bg);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border 0.2s;
}
.waitlist-form input[type="email"]:focus {
    border-color: var(--swiss-red);
}
.waitlist-form button {
    background: var(--swiss-red);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0 1.5rem;
    font-size: 1.05rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.waitlist-form button:hover {
    background: #b31f1f;
}
.message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    display: none;
}
.message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}
.message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}
.footer {
    margin-top: 2.5rem;
    text-align: center;
    color: #222222;
    font-size: 1.1rem;
    font-style: italic;
    font-family: 'DM Serif Display', serif;
    letter-spacing: 0.03em;
}
.footer .heart {
    color: var(--swiss-red);
}
@media (max-width: 600px) {
    .container {
        max-width: 98vw;
        padding: 2.5rem 0.5rem 2.5rem 0.5rem;
    }
    .hero-title {
        font-size: 2rem;
        margin-bottom: 2.2rem;
    }
    .logo {
        width: 140px;
        margin-bottom: 2.2rem;
    }
    .brand {
        font-size: 2.2rem;
        margin-bottom: 2.2rem;
        font-weight: 100;
    }
    .waitlist-lead {
        margin-bottom: 2.2rem;
    }
    .waitlist-form {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .waitlist-form input[type="email"],
    .waitlist-form button {
        width: 90%;
        max-width: 320px;
        min-width: 180px;
        box-sizing: border-box;
    }
    .waitlist-form button {
        margin-top: 1rem;
        padding-left: 0;
        height: 51px;
        padding-right: 0;
    }
    .footer {
        margin-top: 2.5rem;
        margin-bottom: 1.5rem;
    }
}
#intro-overlay {
    position: fixed;
    z-index: 9999;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: var(--swiss-gray, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
}
.intro-logo {
    width: 160px;
    height: auto;
    opacity: 0;
    transform: scale(0.85);
    animation: logo-pop-in 1.1s cubic-bezier(.4,0,.2,1) 0.2s forwards;
}
@keyframes logo-pop-in {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }
    60% {
        opacity: 1;
        transform: scale(1.08);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.main-content.fade-in {
    animation: main-fade-in 0.8s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes main-fade-in {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: none; }
}
@media (max-width: 600px) {
    .intro-logo {
        width: 100px;
    }
} 