/* ========================================
   HERO SECTION WITH BACKGROUND IMAGE
======================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 520px;
    margin-top: 0;
    padding-top: 0;
    background-image: url('uploads/archery.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Ensure hero starts at top of viewport */
    top: 0;
}

/* Dark overlay for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Hero content container */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Main hero title */
.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin: 0;
    padding: 0 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

/* Animation for title */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   TRANSPARENT HEADER STYLES
======================================== */
/* Note: Main transparent header styles are in styles.css */
/* These are additional responsive overrides */

/* ========================================
   MAIN CONTENT SECTION
======================================== */
.main-content {
    padding: 60px 0;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-section {
    padding: 40px 0;
}

.content-section h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text);
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
    background: var(--primary);
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

.site-footer p {
    margin: 0;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
======================================== */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        min-height: 500px;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.5rem;
        padding: 0 15px;
    }

    /* Mobile: when menu opens, make it white with dark text */
    .site-header.transparent .main-nav.active {
        background: var(--white);
    }

    .site-header.transparent .main-nav.active .nav-link {
        color: var(--text) !important;
        text-shadow: none !important;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .content-section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-section {
        min-height: 400px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}
