/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a; /* Solid black background */
    color: #ffffff;
    text-align: center;
    padding: 4rem 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    width: 90%;
    padding: 0 20px;
}

.hero-graphic {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.flag-container {
    /* Your flag graphic styling */
    margin: 3rem 0;
    min-height: 300px;
}

.hero h2 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 0.08em;
    margin-top: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.launch-date {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: 2rem;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 2rem;
    color: #ffffff;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ABOUT SECTION */
.about {
    padding: 6rem 0;
    background: #ffffff;
}

.about h3 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    color: #1a1a1a;
}

.about .lead {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2a2a2a;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

/* EMAIL CAPTURE SECTION */
.notify {
    padding: 6rem 0;
    background: #f5f5f5;
    text-align: center;
}

.notify h3 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    color: #1a1a1a;
}

.email-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.email-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.email-form input[type="email"]:focus {
    outline: none;
    border-color: #1a1a1a;
}

.email-form button {
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Bebas Neue', Arial, sans-serif;
    letter-spacing: 0.05em;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.email-form button:hover {
    background: #000000;
}

.privacy {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

/* EXPLORE SECTION */
.explore {
    padding: 4rem 0;
    background: #ffffff;
    text-align: center;
}

.explore p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

.explore a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #1a1a1a;
    transition: opacity 0.3s ease;
}

.explore a:hover {
    opacity: 0.7;
}

.subtext {
    font-size: 0.95rem;
    color: #666;
}

/* FOOTER */
footer {
    padding: 3rem 0;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        height: 100svh; /* Use svh for mobile browsers */
    }
    
    .email-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .email-form input[type="email"],
    .email-form button {
        width: 100%;
        min-width: unset;
    }
    
    .about,
    .notify {
        padding: 4rem 0;
    }
}

/* THANK YOU PAGE */
.thank-you {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
    background: #f5f5f5;
}

.thank-you h1 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thank-you .lead {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2a2a2a;
}

.thank-you p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Bebas Neue', Arial, sans-serif;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #1a1a1a;
    color: #ffffff;
}

.btn-primary:hover {
    background: #000000;
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}