/* Main Styles */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#0a0a0a;
    color:white;
    overflow-x:hidden;
}

.top-bar{
    background:#c7f11f;
    color:black;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:.8rem 3rem;
    font-family:'Inter',sans-serif;
    font-size:0.875rem; /* 14px */
    font-weight:700;
}

.top-left{
    display:flex;
    align-items:center;
    gap:3rem;
}

.top-right{
    display:flex;
    align-items:center;
    gap:1rem;
}
.top-right a{
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111;
}

.top-right svg{
    width:16px;
    height:16px;
    stroke:#111;
    stroke-width:2;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:.5rem;
    font-family:'Inter',sans-serif;
    font-weight:700;
}

.contact-item svg{
    width:14px;
    height:14px;
}

.hero{
    position:relative;
    min-height:100vh;
    background:url("../assets/images/ZyroHero.webp")
    center center/cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    rgba(0,0,0,.55),
    rgba(0,0,0,.75));
}

.navbar{
    position:relative;
    z-index:10;
    width:90%;
    max-width:1400px;
    margin:auto;
    padding:2rem 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.navbar ul{
    display:flex;
    gap:1rem;
    font-family:'Inter',sans-serif;
    list-style:none;
    background:
    rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    padding:0.75rem 0.75rem;
}

.navbar a{

    font-family:'Inter',sans-serif;
    font-size:.95rem;
    font-weight:500;
    text-decoration:none;
    color:white;
    transition:.3s;
}

.join-btn{
    background:white;
    color:black;
    font-family:'Inter',sans-serif;
    font-size:.95rem;
    font-weight:500;
    border:none;
    padding:0.75rem 0.75rem;
    cursor:pointer;
}

.join-nav{
    display:none;
    list-style:none;
}

.hero-content{
    position:relative;
    z-index:10;
    width:90%;
    max-width:1400px;
    margin:auto;
    min-height:70vh;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:block;
    text-decoration:none;
}

.logo img{
    width:74px;
    height:auto;
    object-fit:contain;
}

.menu-toggle{
    display:none;

    background:none;
    border:none;

    color:white;

    cursor:pointer;
}

.menu-toggle svg{
    width:28px;
    height:28px;
}

.hero-left h1{
    font-family:'Bebas Neue',sans-serif; 
    font-size:5rem;
}

.hero-line{
    display:block;
}


.event-card {
    width: 293px;
    padding: 24px;
    font-family:'Inter',sans-serif;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
}

.event-badge{
    background:#c7f11f;
    color:black;
    width:max-content;
    padding:.5rem 1rem;
    font-weight:bold;
}

.event-card img{
    width:100%;
    height:134px;
    object-fit:cover;
    display:block;
    margin-bottom:24px;
}

.event-details{
    display:flex;
    flex-direction:column;
    gap:1rem;
}
.event-details svg{
    width:20px;
    height:20px;
    stroke:#C3E82E;
    flex-shrink:0;
    display:block;
}

.event-details p{
    display:grid;
    grid-template-columns:16px 1fr;
    gap:12px;
    align-items:start;
    margin:0;
}

.hero-footer{
    position:absolute;
    bottom:40px;
    width:100%;
    padding:0 5%;
    display:flex;
    justify-content:space-between;
    z-index:10;
}

.coordinates{
    font-family:'Bebas Neue',sans-serif; 
    font-size:1.5rem;
}

.countdown{
    font-family:'Bebas Neue',sans-serif; 
    font-size:1.5rem;
}

.modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.7);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:.3s;
    z-index:9999;
}

.modal.show{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.modal-content{
    position:relative;
    width:520px;
    background:#fff;
    color:#111;
    padding:40px;
    border-radius:20px;
    box-shadow:
    0 20px 60px rgba(0,0,0,.25);
    transform:translateY(40px);
    transition:.35s ease;
}
.modal-content h2{
    font-family:'Bebas Neue';
    font-size:4rem;
    line-height:.9;
    margin-bottom:24px;
}

.modal-tag{
    display:inline-block;
    background:#C3E82E;
    color:#111;
    padding:8px 12px;
    border-radius:8px;
    font-family:'Inter';
    font-size:.8rem;
    font-weight:600;
    margin-bottom:16px;
}

.modal.show{
    opacity:1;
    visibility:visible;
}

.modal-content{
    transform:translateY(40px);
}

.close-modal{
    position:absolute;
    top:20px;
    right:20px;
    background:none;
    border:none;
    color:white;
    cursor:pointer;
}

.run-info{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-bottom:30px;
}
.info-item{
    display:flex;
    align-items:center;
    gap:12px;
    font-family:'Inter';
    font-weight:500;
}

.info-item svg{
    width:18px;
    height:18px;
    stroke:#C3E82E;
}

.route-options{
    display:grid;
    grid-template-columns:
    repeat(3,1fr);
    gap:12px;
    margin-bottom:30px;
}

.route-btn{
    background:#f5f5f5;
    border:1px solid #ddd;
    border-radius:12px;
    padding:16px;
    cursor:pointer;
    display:flex;
    flex-direction:column;
    gap:4px;
    font-family:'Inter';
    font-weight:700;
    transition:.3s;
}

.whatsapp-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    padding:16px;
    background:#111;
    color:#fff;
    text-decoration:none;
    border-radius:12px;
    font-family:'Inter';
    font-weight:600;
    transition:.3s;
}

.close-modal{
    position:absolute;
    top:20px;
    right:20px;
    background:none;
    border:none;
    cursor:pointer;
    color:#111;
}

.stats{
    min-height:40vh;
    padding:6rem 8%;
    display:grid;
    grid-template-columns:
    repeat(4,1fr);
    align-items:center;
    text-align:center;

    background:
    linear-gradient(
        90deg,
        #000000 0%,
        #050505 40%,
        #666666 100%
    );
}

.counter{
    font-family:'Bebas Neue',sans-serif;
    font-size:clamp(4rem,6vw,6rem);
    line-height:1;
    color:#fff;
    margin-bottom:.5rem;
    letter-spacing:1px;
}

.stat p{
    font-family:'Bebas Neue',sans-serif;
    font-size:clamp(1.5rem,2vw,2.5rem);
    color:#fff;
    letter-spacing:1px;
    margin:0;
}

.about{
    background:#f7f7f7;
    padding:4rem 8%;
    display:grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap:4rem;
    align-items:center;
}

.section-tag{
    font-family:'Rubik',sans-serif;
    font-size:.9rem;
    font-weight:700;
    letter-spacing:1px;
    color:#111;
    display:block;
    margin-bottom:2rem;
}

.about-left h2{
    font-family:'Rubik',sans-serif;
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight:600;
    line-height:1.05;
    color:#111;
}

.about-images{
    display:flex;
    align-items:flex-end;
    gap:1.5rem;
}

.image-top{
    width:232px;
    height:291px;
    object-fit:cover;

}

.image-bottom{
    width:232px;
    height:291px;
    object-fit:cover;
    margin-bottom:-60px;
}

.about-right p{
    font-family:'Rubik',sans-serif;
    font-size:1.2rem;
    line-height:1.5;
    color:#000000;
    max-width:500px;
}

.weekly-run{
    background:#000;
    display:grid;
    grid-template-columns:
    38% 62%;
    min-height:100vh;
}

.weekly-content{
    padding:8rem 6rem;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.sectionweekly-tag{
    font-family:'Rubik',sans-serif;
    font-size:.9rem;
    font-weight:700;
    color:#C3E82E;
    margin-bottom:2rem;
}

.weekly-content h2{
    font-family:'Rubik',sans-serif;
    font-size:2.5rem;
    font-weight:600;
    line-height:1.1;
    color:white;
    margin-bottom:2rem;
}

.weekly-content p{
    font-family:'Rubik',sans-serif;
    font-size:1.2rem;
    line-height:1.5;
    color:rgba(255,255,255,.85);
    max-width:550px;
}

.route-grid{
    display:flex;
    height:100%;
}

.route-card{
    position:relative;
    flex:1;
    overflow:hidden;
    cursor:pointer;
    transition:.5s ease;
}

.route-card:hover{
    flex:1.25;
}

.route-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s ease;
}
.route-card:hover img{
    transform:scale(1.08);
}

.route-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.9),
        rgba(0,0,0,.35)
    );
}

.route-info{
    position:absolute;
    bottom:60px;
    left:50%;
    transform:translateX(-50%);
    text-align:center;
    color:white;
    z-index:2;
    width:100%;
}

.route-info h3{

    font-family:'Rubik';
    font-size:1.5rem;
    font-weight:700;
    margin-bottom:1rem;
}

.route-info p{
    font-family:'Rubik';
    font-size:1rem;
    margin-bottom:.5rem;
}

.route-info span{
    display:block;
    margin-top:1rem;
    font-family:'Inter';
    font-size:1.2rem;
    font-weight:700;
}

.gallery-section{
    background:#FFFFFF;
    padding:3rem 6%;
}

.gallery-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:2rem;
}

.gallery-title h2{
    font-family:'Rubik',sans-serif;
    font-size:4rem; /* 64px */
    font-weight:600;
    line-height:1;
    color:#111;
}

.gallery-description{
    max-width:500px;
}

.gallery-description p{
    font-family:'Inter',sans-serif;
    font-size:1.25rem; /* 30px */
    line-height:1.3;
    color:#222;
}
.gallery-carousel{
    position:relative;
    width:100%;
    height:650px;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;
}

.gallery-track{
    position:relative;
    width:100%;
    height:100%;
}

.gallery-card{
    position:absolute;

    top:50%;
    left:50%;

    width:420px;
    height:520px;

    border-radius:20px;

    overflow:hidden;

    transition:.7s ease;

    transform-style:preserve-3d;
}

.gallery-card img{
    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

.gallery-card.active{
    transform:
        translate(-50%,-50%)
        scale(1);

    opacity:1;

    z-index:5;
}

.gallery-btn{
    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:60px;
    height:60px;

    border:none;

    border-radius:50%;

    background:white;

    cursor:pointer;

    z-index:1000;

    font-size:24px;
}

.prev{
    left:40px;
}

.next{
    right:40px;
}

.faq-section{
    background:#F5F5F5;
    padding:4rem 8%;
    display:grid;
    grid-template-columns:
    1fr
    1.2fr;
    gap:3rem;
    align-items:start;
}

.section-tag{
    display:block;
    margin-bottom:2rem;
    font-family:'Inter',sans-serif;
    font-size:.9rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#111;
}
.faq-left h2{
    font-family:'Rubik',sans-serif;
    font-size:48px;
    font-weight:600;
    line-height:1.1;
    color:#111;
}

.faq-right{
    display:flex;
    flex-direction:column;
    gap:1rem;
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    padding:1rem 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-family:'Inter',sans-serif;
    font-size:18px;
    font: weight 500px;;
    color:#000;
    cursor:pointer;
    text-align:left;
}

.faq-item{
    border-bottom:
    1px solid
    rgba(0,0,0,.1);
}

.faq-question span{
    font-size:24px;
    transition:.3s ease;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:.3s ease;
    font-family:'Inter',sans-serif;
    font-size:16px;
    line-height:1.6;
    color:#555;
}

.faq-item.active .faq-answer{
    max-height:200px;
    padding-bottom:1.5rem;
}

.contact-section{
    background:#FFFFFF;
    padding:4rem 8%;
}

.contact-title{
    text-align:center;
    font-family:'Rubik',sans-serif;
    font-size:6rem;
    font-weight:600;
    margin-bottom:3.5rem;
    color:#000;
}

.contact-container{
    display:grid;
    grid-template-columns:
    420px
    1fr;
    gap:8rem;
    align-items:start;
}

.contact-info h3{
    font-family:'Rubik',sans-serif;
    color:#000;
    font-size:2.5rem;
    font-weight:600;
    margin-bottom:1.5rem;
}

.contact-info p{
    font-family:'Rubik',sans-serif;
    font-size:1.25rem;
    line-height:1.5;
    color:#222;
}

.contact-details{
    margin-top:1.5rem;
    display:flex;
    flex-direction:column;
    gap:1rem;
}

.contact-details a,
.contact-details p{
    font-family:'Inter',sans-serif;
    font-size:1.25rem;
    color:#111;
    text-decoration:none;
}
.contact-form{
    width:100%;
}

.form-row{
    display:grid;
    grid-template-columns:
    1fr
    1fr;
    gap:2rem;
    margin-bottom:2rem;
}

.form-group label{
    display:block;
    margin-bottom:.75rem;
    font-family:'Inter',sans-serif;
    font-size:1rem;
    color:#111;
}

.form-group span{
    color:#d10000;
}

.form-group input,
.form-group textarea{
    width:100%;
    border:none;
    border-bottom:
    1px solid #D9D9D9;
    background:transparent;
    padding:.75rem 0;
    font-family:'Inter',sans-serif;
    font-size:1rem;
    outline:none;
    resize:none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {

    -webkit-box-shadow: 0 0 0px 1000px #FFFFFF inset !important;
    -webkit-text-fill-color: #111 !important;

    transition: background-color 9999s ease-in-out 0s;
}

.send-btn{
    margin-top:2rem;
    background:#000;
    color:#fff;
    border:none;
    padding:1rem 2rem;
    font-family:'Inter',sans-serif;
    font-size:1rem;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.send-btn:hover{
    background:#C7F11F;
    color:#000;
}

.filler-section{
    position:relative;
    min-height:60vh;
    background-image:
    url("../assets/images/ZyroFiller.webp");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

.filler-overlay{
    position:absolute;
    inset:0;
    background:
    rgba(0,0,0,.65);
    z-index:1;
}

.filler-content{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:1200px;
    padding:0 2rem;
}

.filler-content h2{
    font-family:'Rubik',sans-serif;
    font-size:4rem;
    font-weight:400;
    line-height:1.1;
    color:white;
}

.filler-content span{
    color:#C7F11F;
}

.footer{
    background:#C7F11F;
    color:#000;
    padding:3rem 6rem 2rem;
    overflow:hidden;
}

.footer-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}
.footer-links{
    display:flex;
    gap:4rem;
}

.footer-intro p{
    font-family:'Rubik',sans-serif;
    font-size:1.5rem;
    font-weight: 600;
    line-height:1.15;
    max-width:420px;
}

.footer-links,
.footer-social,
.footer-legal{
    display:flex;
    flex-direction:column;
    gap:0.5rem;
}

.footer a{
    font-family:'Rubik',sans-serif;
    font-size:1rem;
    color:#000;
    text-decoration:none;
    transition:.3s;
}

.footer-info{
    font-family:'Rubik',sans-serif;
    font-size:1rem;
    line-height:1.4;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:2rem;
    margin-top:4rem;
}
.copyright{
    font-family:'Inter',sans-serif;
    font-size:1rem;
    white-space:nowrap;
    margin:0;
}

.footer-logo{
    font-family:'Bebas Neue',sans-serif;
    font-size:clamp(8rem,12vw,16rem);
    line-height:.8;
    margin:0;
    white-space:nowrap;
}