/* ThreeGigs Waitlist Layout v25 - Complete Stylesheet */
/* Matches Index_v25 aesthetic with dark/light theme toggle */

/* ========================================
   CSS VARIABLES (Dark/Light Theme)
   ======================================== */
:root {
    --primary: #8A2BE2;
    --primary-dark: #6A1BB2;
    --primary-light: #9932CC;
    --accent: #FF6B9D;
    /* Dark theme as default */
    --bg: #0D0D0D;
    --bg-alt: #1A1A1A;
    --text: #FFFFFF;
    --text-light: #9CA3AF;
    --border: #2D2D2D;
    --shadow: rgba(138, 43, 226, 0.2);
    --card-bg: #1A1A1A;
    --radius: 20px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light theme */
.light-theme {
    --bg: #FFFFFF;
    --bg-alt: #F8F9FA;
    --text: #1A1A1A;
    --text-light: #6B7280;
    --border: #E5E7EB;
    --shadow: rgba(138, 43, 226, 0.12);
    --card-bg: #FFFFFF;
}

/* ========================================
   RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.light-theme .nav {
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo-img-dark {
    display: block;
}

.logo-img-light {
    display: none;
}

.light-theme .logo-img-dark {
    display: none;
}

.light-theme .logo-img-light {
    display: block;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.5px;
}

.theme-toggle {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
    font-size: 1rem;
}

    .theme-toggle:hover {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
    }

    .theme-toggle .fa-sun {
        display: none;
    }

    .theme-toggle .fa-moon {
        display: block;
    }

.light-theme .theme-toggle .fa-sun {
    display: block;
}

.light-theme .theme-toggle .fa-moon {
    display: none;
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px var(--shadow);
    }

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    margin-top: 70px;
    text-align: center;
    overflow: hidden;
}

.hero--fotg {
    background: linear-gradient(135deg, #8A2BE2 0%, #7270da 50%, #9932CC 100%);
}

.hero--selexions {
    background: linear-gradient(135deg, #1a1a1a 0%, #8A2BE2 50%, #9932CC 100%);
}

.hero--sidegigs {
    background: linear-gradient(135deg, #6A5ACD 0%, #8A2BE2 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: white;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: white;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 3rem;
    background: white;
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

    .hero-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    }

/* ========================================
   CONTAINER & SECTIONS
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #8A2BE2 0%, #9932CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   BENEFITS GRID
   ======================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
}

    .benefit-card:hover {
        transform: translateY(-8px);
        border-color: var(--primary);
    }

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(138, 43, 226, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.benefit-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   REQUIREMENTS SECTION
   ======================================== */
.requirements-section {
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 20px var(--shadow);
}

.requirements-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(138, 43, 226, 0.1));
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.requirement-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8A2BE2, #9932CC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.requirement-content {
    flex: 1;
}

.requirement-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.requirement-detail {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ========================================
   TESTIMONIAL
   ======================================== */
.testimonial-section {
    background: var(--card-bg);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .testimonial-section::before {
        content: '"';
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 8rem;
        color: var(--primary);
        opacity: 0.1;
        font-family: Georgia, serif;
    }

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text);
    position: relative;
    z-index: 2;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ========================================
   FORM SECTION
   ======================================== */
.form-section {
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 20px var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

    .form-label .required {
        color: var(--primary);
    }

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.02), rgba(138, 43, 226, 0.05));
    color: var(--text);
}

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        outline: none;
        border-color: var(--primary);
        background: var(--card-bg);
    }

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-helper {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

    .form-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px var(--shadow);
    }

    .form-submit:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

    .faq-item:hover {
        border-color: var(--primary);
    }

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.faq-answer {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
    color: var(--text-light);
}

    .footer a {
        color: var(--primary);
        text-decoration: none;
    }

        .footer a:hover {
            text-decoration: underline;
        }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
    .requirements-list {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 767px) {
    .nav-container {
        padding: 1rem;
    }

    .logo-text {
        display: none;
    }

    .theme-toggle {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .nav-cta {
        padding: 0.6rem 1rem;
        font-size: 0.875rem;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .container {
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .requirements-section {
        padding: 2rem 1.5rem;
    }

    .form-section {
        padding: 2rem 1.5rem;
    }
}
