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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Dosis', 'Trebuchet MS', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== Header ===== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 15px 0;
    transition: background-color 0.3s ease;
}

.site-header.scrolled {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.85);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    gap: 0;
}

.main-nav ul li a {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 15px;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: #52a7fe;
    transform: scaleX(0);
    transition: transform 0.25s;
}

.main-nav ul li a {
    position: relative;
}

.main-nav ul li a:hover {
    color: #52a7fe;
}

.main-nav ul li a:hover::after {
    transform: scaleX(1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 110;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
}

.hero-subtitle {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 16px;
    color: #52a7fe;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-title {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 80px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 0;
}

.hero-title-sub {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 80px;
    font-weight: 300;
    color: #ddd;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-etymology {
    font-family: 'Dosis', sans-serif;
    font-size: 15px;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== Icon Boxes Section ===== */
.icon-boxes {
    background: #fff;
    padding: 50px 0;
}

.icon-boxes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 10px;
    transition: transform 0.3s;
}

.icon-box:hover {
    transform: translateY(-5px);
}

.icon-box a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: #52a7fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.icon-circle i {
    font-size: 40px;
    color: #fff;
    transition: color 0.3s;
}

.icon-box:hover .icon-circle {
    background-color: #3a8fe0;
}

.icon-box-title {
    font-family: 'Dosis', sans-serif;
    font-size: 17px;
    color: #333;
    font-weight: 600;
}

.icon-box-title:hover {
    color: #52a7fe;
}

/* ===== Steps Section ===== */
.steps-section {
    background: #52a7fe;
    padding: 50px 0;
}

.steps-heading {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    color: #fff;
}

.step-number {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 89px;
    font-weight: 600;
    line-height: 1;
    display: block;
    margin-bottom: 15px;
}

.step-text {
    font-family: 'Dosis', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #fff;
}

/* ===== Section Heading (shared) ===== */
.section-heading {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 39px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 30px;
}

/* ===== About Section ===== */
.about-section {
    background: #fff;
    padding: 50px 0;
}

.about-heading {
    font-family: 'Dosis', sans-serif;
    color: #333;
    text-align: center;
}

.about-text {
    font-family: 'Dosis', sans-serif;
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.8;
    text-align: left;
}

/* ===== Gallery Section ===== */
.gallery-section {
    background: #fff;
    padding: 50px 0;
}

.gallery-heading {
    color: #333;
    text-align: center;
    font-size: 39px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 10px;
}

.gallery-item {
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s, opacity 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
    opacity: 0.85;
}

/* ===== Archery Section (Parallax) ===== */
.archery-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.archery-content {
    position: relative;
    z-index: 2;
}

.archery-heading {
    color: #fff;
    text-align: center;
}

.archery-text {
    font-family: 'Dosis', sans-serif;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* ===== Schedule Section ===== */
.schedule-section {
    background: #fff;
    padding: 50px 0;
    text-align: center;
}

.schedule-image {
    max-width: 100%;
    margin: 0 auto;
}

/* ===== Parallax Divider ===== */
.parallax-divider {
    position: relative;
    height: 430px;
    overflow: hidden;
}

.parallax-divider .parallax-bg {
    background-attachment: fixed;
}

/* ===== Training Section ===== */
.training-section {
    background: #fff;
    padding: 50px 0;
}

.training-heading {
    color: #333;
    text-align: center;
}

.training-grid {
    display: grid;
    grid-template-columns: 74% 26%;
    gap: 20px;
    align-items: center;
}

.training-image img {
    width: 100%;
    border-radius: 4px;
}

.training-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    font-family: 'Dosis', sans-serif;
    font-size: 15px;
    color: #333;
}

.info-item i {
    font-size: 32px;
    color: #52a7fe;
}

/* ===== Map Section ===== */
.map-section {
    width: 100%;
    line-height: 0;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* ===== Footer ===== */
.site-footer {
    margin-top: 0;
}

.footer-top {
    background: #1b1b1b;
    padding: 30px 0;
    text-align: center;
}

.follow-heading {
    font-family: 'Dosis', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-icons a i {
    color: #fff;
    font-size: 16px;
}

.social-icons a:hover {
    background: #52a7fe;
}

.footer-bottom {
    background: #1b1b1b;
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-family: 'Dosis', sans-serif;
    font-size: 13px;
    color: #888;
    letter-spacing: 0.5px;
}

/* ===== Lightbox ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    line-height: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    padding: 15px 20px;
    z-index: 1001;
    transition: background 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 10px;
}

.lightbox-next {
    right: 10px;
}

/* ===== Scroll Animations ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-title,
    .hero-title-sub {
        font-size: 60px;
    }

    .section-heading {
        font-size: 32px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        z-index: 105;
        align-items: center;
        justify-content: center;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .main-nav ul li a {
        font-size: 18px;
        padding: 15px;
    }

    .hero-title,
    .hero-title-sub {
        font-size: 40px;
    }

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

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

    .section-heading {
        font-size: 26px;
    }

    .icon-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .step-number {
        font-size: 60px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 200px;
    }

    .training-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .parallax-divider {
        height: 150px;
    }

    /* Disable parallax on mobile for performance */
    .hero-bg,
    .parallax-bg {
        background-attachment: scroll;
    }

    /* Inner page responsive */
    .page-header h1 {
        font-size: 24px;
    }

    .docs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   Inner Page Styles
   ======================================== */

/* --- Top Accent Bar --- */
.top-bar {
    background: #52a7fe;
    height: 4px;
}

/* --- Inner Page Header --- */
.inner-header {
    position: relative;
    background: #333333;
    padding: 15px 0;
}

/* --- Page Header / Banner --- */
.page-header {
    background: #333333;
    padding: 34px 0;
    text-align: center;
}

.page-header h1 {
    font-family: 'Dosis', sans-serif;
    font-size: 32px;
    color: #fff;
    font-weight: 600;
}

/* --- Breadcrumb Navigation --- */
.breadcrumb {
    background: transparent;
    padding: 8px 0;
    font-size: 13px;
    color: #fff;
}

.breadcrumb a {
    color: #fff;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #52a7fe;
}

.breadcrumb span.separator {
    margin: 0 8px;
    color: #aaa;
}

/* --- Page Content Area --- */
.page-content {
    background: #fff;
    padding: 50px 0;
    min-height: 60vh;
}

.page-content h2 {
    font-family: 'Dosis', sans-serif;
    font-size: 28px;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-content h3 {
    font-family: 'Dosis', sans-serif;
    font-size: 22px;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.page-content p {
    font-family: 'Dosis', sans-serif;
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.page-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.page-content ul li {
    margin-bottom: 10px;
}

.page-content ul li a {
    color: #52a7fe;
    transition: text-decoration 0.3s;
}

.page-content ul li a:hover {
    text-decoration: underline;
}

/* --- Documents Grid --- */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.doc-item {
    text-align: center;
    padding: 15px;
}

.doc-item img {
    width: 60px;
    margin: 0 auto 10px;
}

.doc-item a {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    display: block;
    transition: color 0.3s;
}

.doc-item a:hover {
    color: #52a7fe;
}

/* --- Step Blocks --- */
.step-block {
    margin-bottom: 30px;
}

.step-block h4 {
    font-size: 20px;
    color: #52a7fe;
    margin-bottom: 10px;
    font-weight: 600;
}

/* --- Contact Title & Subtitle --- */
.contact-title {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 39px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-family: 'Dosis', sans-serif;
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 30px;
}

/* --- Contact Info List --- */
.contact-info-list {
    max-width: 600px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item > i {
    font-size: 28px;
    color: #52a7fe;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item strong {
    font-family: 'Dosis', sans-serif;
    font-size: 16px;
    color: #333;
    display: block;
    margin-bottom: 4px;
}

.contact-info-item p {
    margin-bottom: 0;
}

.contact-info-item a {
    color: #52a7fe;
    transition: color 0.3s;
}

.contact-info-item a:hover {
    color: #3a8fe0;
    text-decoration: underline;
}

/* --- Under Construction --- */
.under-construction {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 18px;
}

/* --- Accordion --- */
.accordion {
    max-width: 800px;
}

.accordion-item {
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.accordion-item:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: #fafafa;
    border: none;
    cursor: pointer;
    font-family: 'Dosis', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: left;
    transition: background 0.2s, color 0.2s;
}

.accordion-header:hover {
    background: #f0f6ff;
    color: #52a7fe;
}

.accordion-header.active {
    background: #52a7fe;
    color: #fff;
}

.accordion-icon {
    font-size: 14px;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 15px;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
    color: #fff;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 22px;
    background: #fff;
}

.accordion-body.open {
    max-height: 1200px;
    padding: 20px 22px 24px;
}

.accordion-date {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
}

.accordion-date i {
    margin-right: 6px;
}

.accordion-body h4 {
    font-family: 'Dosis', sans-serif;
    font-size: 18px;
    color: #52a7fe;
    font-weight: 600;
    margin-bottom: 10px;
}

.accordion-body p {
    font-family: 'Dosis', sans-serif;
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 12px;
}

.accordion-body ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.accordion-body ul li {
    font-family: 'Dosis', sans-serif;
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 6px;
}

.accordion-body a {
    color: #52a7fe;
    font-weight: 600;
    transition: color 0.2s;
}

.accordion-body a:hover {
    color: #3a8fe0;
    text-decoration: underline;
}

.accordion-body a i {
    margin-right: 6px;
}

/* --- Placeholder Icon Box (disabled link) --- */
.icon-box-link-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: default;
    opacity: 0.5;
}
