/* ==========================================================================
   GTFO Landing Page Styles
   ========================================================================== */

/* CSS Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: Arial, sans-serif;
    background-color: #F5F5F5;
    color: #2D2D2D;
    line-height: 1.6;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Layout */
.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    padding: 48px 0 16px;
    text-align: center;
}

.hero-logo {
    width: 140px;
    height: 140px;
    margin-bottom: 24px;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-tagline {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #2EAD4B;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: #5C5C5C;
    max-width: 450px;
    margin: 0 auto;
}

/* ==========================================================================
   Email Signup Section
   ========================================================================== */

.signup {
    padding: 0 0 40px;
}

.signup-box {
    background-color: transparent;
    padding: 8px 20px;
    text-align: center;
}

.signup-heading {
    font-size: 1.5rem;
    color: #2D2D2D;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.signup-form {
    margin-bottom: 8px;
}

.beehiiv-embed {
    width: 100%;
    max-width: 550px;
    min-height: 300px;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
    background-color: transparent;
    display: block;
}

.signup-note {
    font-size: 1rem;
    color: #5C5C5C;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #D4D4D4;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
}

.social-links a {
    color: #5C5C5C;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: #2EAD4B;
}

.social-icon {
    width: 28px;
    height: 28px;
}

.copyright {
    font-size: 0.875rem;
    color: #5C5C5C;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .hero-headline {
        font-size: 3.5rem;
    }

    .hero-tagline {
        font-size: 2rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .hero {
        padding: 60px 0 24px;
    }

    .hero-logo {
        width: 160px;
        height: 160px;
    }

    .hero-headline {
        font-size: 4rem;
    }

    .hero-tagline {
        font-size: 2.25rem;
    }

    .footer {
        padding: 50px 0;
    }
}

/* Ensure iframe scales on very small screens */
@media (max-width: 360px) {
    .hero-headline {
        font-size: 2.25rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }
}
