/* Home Page Styles */
body {
    color: white;
    overflow-x: hidden;
}

/* Dark Nav Theme Override */
.nav-container {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
}

.nav-links a:hover,
.nav-links a.active {
    color: #60a5fa;
}

.btn-apply-nav {
    background: white;
    color: #1e3a8a;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-apply-nav:hover {
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hamburger span {
    background: white;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline-color: #60a5fa;
}

.nav-links a:focus-visible {
    outline-color: #60a5fa;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: url('../images/head.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 80px 60px;
}

.hero-content {
    max-width: 700px;
    text-align: left;
    flex-shrink: 0;
}

.hero-image {
    max-width: 500px;
    margin-left: 60px;
    flex-shrink: 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
}

.hero-description {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description p {
    margin-bottom: 16px;
}

.highlight {
    color: #FCEE35;
}

.btn-apply {
    background: white;
    color: #1e3a8a;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-how-it-works {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
}

.btn-how-it-works:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    align-items: center;
}

/* Incubator Section */
.incubator-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 40px;
}

.section-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.incubator-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #60a5fa;
    margin-bottom: 60px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.info-card {
    background: rgba(30, 58, 138, 0.3);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.3);
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.info-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.info-card ul li {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 20px;
    position: relative;
}

.info-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #60a5fa;
}

.card-link {
    color: #60a5fa;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s;
}

.card-link:hover {
    color: #93c5fd;
}

.incubator-note {
    text-align: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Gain Section */
.gain-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a1628 0%, #042044 100%);
    padding: 80px 40px;
}

.gain-header {
    text-align: center;
    margin-bottom: 16px;
}

.gain-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.gain-subtitle {
    font-size: 16px;
    color: #fde047;
    margin-bottom: 60px;
    text-align: center;
}

.weeks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.week-card {
    background: transparent;
    text-align: center;
}

.week-number {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1A168A 0%, #080624 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    font-weight: 700;
    margin: 0 auto 32px;
    box-shadow: 0 8px 32px rgba(55, 48, 163, 0.4);
}

.week-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.week-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.gain-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.btn-learn-more {
    background: transparent;
    color: #fde047;
    border: 2px solid #fde047;
    padding: 14px 36px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
}

.btn-learn-more:hover {
    background: rgba(253, 224, 71, 0.1);
    transform: translateY(-2px);
}

.btn-apply-now {
    background: linear-gradient(145deg, #1d2a64 0%, #11408c 100%);
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-apply-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}

/* Newsletter Section */
.newsletter-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a1628 0%, #0f172a 100%);
    padding: 80px 40px;
}

.newsletter-section .section-container {
    text-align: center;
    max-width: 600px;
}

.newsletter-content {
    margin-bottom: 16px;
}

.newsletter-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.newsletter-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    min-width: 0;
    padding: 16px 24px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.email-input:focus {
    border-color: #818cf8;
}

.btn-subscribe {
    background: linear-gradient(145deg, #1A168A 0%, #15116A 100%);
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(129, 140, 248, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(129, 140, 248, 0.5);
}

/* Newsletter Form Feedback */
.btn-subscribe.subscribed {
    background: #059669;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        padding: 120px 40px 60px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image {
        margin-left: 0;
        max-width: 400px;
        margin-top: 40px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .weeks-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 24px 40px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-image {
        max-width: 100%;
    }

    .incubator-section,
    .gain-section {
        padding: 60px 24px;
        min-height: auto;
    }

    .incubator-section h2,
    .gain-section h2 {
        font-size: 32px;
    }

    .newsletter-section {
        padding: 60px 24px;
        min-height: auto;
    }

    .gain-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .newsletter-section h2 {
        font-size: 32px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .btn-subscribe {
        width: 100%;
    }

    .week-number {
        width: 80px;
        height: 80px;
        font-size: 42px;
    }

    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.9);
    }

    .dropdown-menu a:hover {
        color: #60a5fa;
    }
}
