/* Import a modern, clean font (e.g., Google Fonts: Montserrat or Inter) */
/* Since we can't directly link external fonts in this context, we'll use a modern system font stack and assume the user can add a custom font if desired. */

:root {
    --color-primary: #00e676; /* Neon Green/Vibrant Accent */
    --color-secondary: #4a4a4a; /* Muted Gray */
    --color-background: #0a0a0a; /* Deep Black Background */
    --color-surface: #1a1a1a; /* Darker Surface for Cards */
    --color-text-light: #f0f0f0; /* Bright White Text */
    --color-text-muted: #b0b0b0; /* Light Gray Muted Text */
    --color-warning: #ffeb3b; /* Yellow Warning */
    --color-danger: #ff5252; /* Red Danger */
    --font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --border-radius: 12px;
    --spacing-unit: 1.5rem;
}

body {
    background-color: var(--color-background);
    color: var(--color-text-light);
    font-family: var(--font-family);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

/* Global Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--color-text-light);
    font-weight: 700;
    margin-top: 0;
    line-height: 1.1;
}

h2.section-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

h2.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
    margin: 10px auto 0;
    border-radius: 2px;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00b359;
}

/* Sections */
section {
    padding: .5rem 0;
    position: relative;
    z-index: 1;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-background); /* Dark text on bright button */
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.5);
}

.btn-primary:hover {
    background-color: #00b359;
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.8);
    transform: translateY(-3px);
}

/* --- 1. FULL-SCREEN HERO SECTION --- */
.full-screen-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.video-background-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    background-image: url('https://via.placeholder.com/1920x1080?text=Dynamic+AI+Background+Placeholder');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.video-background-placeholder .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
    z-index: -1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: var(--spacing-unit);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.text-gradient {
    background: linear-gradient(45deg, var(--color-primary), #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-hero {
    font-size: 1.5rem;
}

/* --- 2. CRITICAL INFORMATION SECTION --- */
.critical-info-section {
    background-color: var(--color-surface);
    padding: 2rem 0;
}

.alert-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.alert-card {
    flex: 1;
    max-width: 500px;
    background-color: var(--color-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 5px solid;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.alert-card:hover {
    transform: translateY(-5px);
}

.alert-card.system-req {
    border-color: var(--color-danger);
}

.alert-card.manual-setup {
    border-color: var(--color-primary);
}

.alert-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.alert-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.alert-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* --- 3. YOUTUBE VIDEO EMBED SECTION --- */
.video-showcase-section {
    background-color: var(--color-background);
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* --- 4. MEMBERSHIP TIERS SECTION --- */
.tiers-section {}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tier-card {
    background-color: var(--color-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.tier-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 25px rgba(0, 230, 118, 0.3);
}

.tier-card.featured {
    border: 3px solid var(--color-primary);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.5);
}

.tier-card.premium {
    border-color: #ffc107;
}

.tier-card.premium-plus {
    border-color: #ff5252;
}

.tier-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
}

.tier-icon {
    font-size: 2rem;
    margin-right: 0.75rem;
}

.tier-header h3 {
    font-size: 1.75rem;
    margin: 0;
}

.tier-summary {
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
    min-height: 40px;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-features li {
    padding: 0.75rem 0;
    border-top: 1px solid #2a2a2a;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.tier-features li:first-child {
    border-top: none;
}

.tier-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.tier-link {
    display: block;
    height: 100%;
    text-decoration: none !important;
}

.tier-link .tier-card {
    height: 100%;
}

/* --- 5. RESOURCES SECTION --- */
.resources-section {
    background-color: var(--color-surface);
    padding: 1rem 0;
}

.resources-left-pad {
    padding-left: 2rem ;
}


.single-post-note {
    font-size: 1.25rem;
    text-align: center;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.note-orange {
    color: #ff9800; /* clean bright orange */
}

.note-aqua {
    color: #00e6e6; /* aqua blue */
}

.note-white {
    color: #ffffff; /* white */
}

.resources-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

/* LINK-WRAPPED RESOURCE FIXES (important) */
.resource-link {
    display: block;
    color: var(--color-text-light);
    text-decoration: none;
}

.resources-left-pad {
    padding-left: 2rem;
}

.resource-link:hover {
    color: var(--color-primary);
}

/* BIGGER TEXT INSIDE RESOURCE ITEMS */
.resource-link .resource-text {
    font-size: 1.25rem;
}

.resource-link .resource-text strong {
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.resource-link .resource-text p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.resource-link {
    color: var(--color-text-light) !important;
    text-decoration: none !important;
}

.resource-link * {
    text-decoration: none !important;
}

.resource-icon {
    font-size: 2.5rem;
    margin-right: 1.5rem;
    color: var(--color-primary);
}

.resource-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;  /* spacing between icon + strong */
    flex-wrap: wrap;
}

.resource-text strong {
    display: inline-block;
}

.resource-icon {
    flex-shrink: 0;
}



/* --- 6. FOOTER --- */
.site-footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.site-footer a {
    color: var(--color-text-muted);
    text-decoration: underline;
}

/* --- Fixing mobile header --- */
/* HEADER BASE STYLING */
.site-header {
    width: 100%;
    padding: 0.75rem 0;
    background: #0a0a0a;
    text-align: center;
}

.site-header .site-logo {
    font-size: 1rem;
    color: var(--color-text-light);
    margin: 0 0.2rem;
    text-decoration: none;
}

/* Make the links flex so they collapse cleanly on mobile */
.site-header nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Ensure the logo image scales correctly */
.site-header img {
    max-width: 680px;
    height: auto;
    margin-bottom: 0.5rem;
}
/* LOGO Image */
.ggf-logo {
    width: 600px;    /* tweak this */
    height: auto;    /* keeps proper scaling */
    display: block;
    margin: 0 auto 10px auto;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 992px) {
    .ggf-logo {
        width: 900px;    /* tweak this */
        height: auto;    /* keeps proper scaling */
        display: block;
        margin: 0 auto 10px auto;
    }

    .hero-title {
        font-size: 3.5rem;
    }
    .hero-subtitle {
        font-size: 1.25rem;
    }
    h2.section-heading {
        font-size: 2rem;
    }
    .alert-container {
        flex-direction: column;
        align-items: center;
    }
    .alert-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .ggf-logo {
        width: 700px;    /* tweak this */
        height: auto;    /* keeps proper scaling */
        display: block;
        margin: 0 auto 10px auto;
    }

    section {
        padding: 2rem 0;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .cta-hero {
        font-size: 1.2rem;
        padding: 0.75rem 2rem;
    }
    h2.section-heading {
        font-size: 1.75rem;
    }
    .tiers-grid {
        grid-template-columns: 1fr;
    }
    .tier-card.featured {
        transform: scale(1.02);
    }
    .resource-item {
        flex-direction: column;
        text-align: center;
    }
    .resource-icon {
        margin: 0 0 0.5rem 0;
    }
    .download-btn {
        margin-top: 1rem;
    }
}


/* --- MOBILE SPACING FIXES --- */
@media (max-width: 480px) {
    .ggf-logo {
        width: 400px;    /* tweak this */
        height: auto;    /* keeps proper scaling */
        display: block;
        margin: 0 auto 10px auto;
    }

    section {
        padding-top: 1.0rem !important;
        padding-bottom: 0.15rem !important;
    }

    /* Make the specific section closer to hero */
    .critical-info-section {
        margin-top: -1rem;  /* tighten gap under hero */
    }
    
    /* Ensure header doesn't overlap hero */
    .header-spacer {
        height: auto !important;
        min-height: 70px; /* safe minimum */
    }

    /* Push hero content downward only on phones */
    .hero-content-wrapper {
        margin-top: 2.5rem; /* adjust higher/lower if needed */
    }

    /* Slight hero typography adjustments to reduce crowding */
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}