* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
body {
    font-family: Montserrat, sans-serif;
    background: #121212;
    color: #f1f1f1;
}

/* TOP BAR */
.topbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #1a1a1a;
    z-index: 100;
    border-bottom: 1px solid #2a2a2a;
}

.topbar-inner {
    max-width: 1200px;
    margin: auto;
    padding: 14px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-weight: 700;
    letter-spacing: 2px;
}

.contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact a {
    color: #ffb703;
    text-decoration: none;
    font-weight: 600;
}

/* HERO */
.hero {
    height: 100vh;
    background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1920&q=80") center / cover no-repeat;
    position: relative;
    padding-top: 70px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.hero-content {
    position: relative;
    max-width: 700px;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.hero-buttons {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* BUTTONS */
.btn-primary {
    background: #ffb703;
    color: #121212;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary {
    border: 2px solid #ffb703;
    color: #ffb703;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.small { padding: 10px 22px; }
.large { font-size: 18px; padding: 18px 40px; }

/* INFO STRIP */
.info-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 24px;
    padding: 80px 40px;
    background: #1a1a1a;
}

.info-item {
    text-align: center;
}

.info-item span {
    font-size: 40px;
    color: #ffb703;
    margin-bottom: 12px;
}

/* PACKAGES */
.packages {
    padding: 20px 40px 40px 40px;
    text-align: center;
}

.section-subtitle {
    opacity: 0.7;
    margin-top: 10px;
}

.package-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 30px;
}

.package-card {
    background: #1f1f1f;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #2a2a2a;
}
.package-card ul {
    list-style: none;
    margin: 20px 0 28px;
    padding: 0;
}

.package-card li {
    padding: 6px 0;
    opacity: 0.85;
}
.package-card.featured {
    border: 2px solid #ffb703;
}

.price {
    font-size: 28px;
    font-weight: 700;
    margin: 16px 0;
}



/* FOOTER */
.footer {
    background: #0a0a0a;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
}

/* ANIMATIONS */
.fade, .slide {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s ease;
}

.slide {
    transform: translateX(-20px);
}

.delay { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

.show {
    opacity: 1;
    transform: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #f1f1f1;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.85;
    transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover {
    opacity: 1;
    color: #ffb703;
}

.nav-links .material-icons {
    font-size: 18px;
}
.final-cta {
    background: #0e0e0e;
    padding: 100px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.final-cta-single {
    background: #0e0e0e;
    padding: 100px 40px;
    text-align: center;
}

.final-cta-single .cta-content {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta-single .cta-content p {
    opacity: 0.75;
    margin-top: 10px;
    margin-bottom: 28px;
    line-height: 1.6;
}


.cta-content h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.cta-content p {
    opacity: 0.75;
    max-width: 500px;
    margin-bottom: 28px;
}

.location {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.location .material-icons {
    color: #ffb703;
}

/* MAP */
.map-wrapper {
    width: 100%;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #1f1f1f;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #f1f1f1;
    cursor: pointer;
}

.menu-toggle .material-icons {
    font-size: 28px;
}
.mobile-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: #121212;
    display: none;
    flex-direction: column;
    z-index: 99;
    border-bottom: 1px solid #1f1f1f;
}

.mobile-menu a {
    padding: 18px 24px;
    text-decoration: none;
    color: #f1f1f1;
    border-top: 1px solid #1f1f1f;
    font-weight: 600;
}

.mobile-menu a:hover {
    background: #1a1a1a;
    color: #ffb703;
}
/* PAGE HERO (INNER PAGES) */
.page-hero {
    height: 60vh;
    background: url("https://northwoodsatv-utv.com/braaap/wp-content/uploads/2022/09/Forest_County_ATV_Trail_System_4102-1-e1664300144861.jpg") center / cover no-repeat;
    position: relative;
    padding-top: 70px;
}

/* TRASEE */
.trasee {
    padding: 100px 40px;
    background: #121212;
}

.trasee-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.traseu-card {
    background: #1f1f1f;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #2a2a2a;
}

.traseu-card span.material-icons {
    font-size: 36px;
    color: #ffb703;
    margin-bottom: 12px;
}

.traseu-card h3 {
    margin-bottom: 10px;
}

.traseu-card p {
    opacity: 0.75;
    margin-bottom: 20px;
}

.traseu-card ul {
    list-style: none;
    padding: 0;
}

.traseu-card li {
    padding: 6px 0;
    opacity: 0.85;
}

.traseu-card li::before {
    content: "–";
    margin-right: 8px;
    color: #ffb703;
}
.brand {
    font-weight: 700;
    letter-spacing: 2px;
    color: #f1f1f1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.brand:hover {
    color: #ffb703;
}
.traseu-row {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.traseu-row.reverse {
    direction: rtl;
}

.traseu-row.reverse .traseu-info {
    direction: ltr;
}



.traseu-info h2 {
    margin-bottom: 14px;
}

.traseu-info p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.traseu-info ul {
    list-style: none;
    padding: 0;
}

.traseu-info li {
    padding: 6px 0;
    opacity: 0.9;
}

.traseu-info li::before {
    content: "–";
    margin-right: 8px;
    color: #ffb703;
}
.traseu-image {
    width: 100%;
    height: 100%;
}

.traseu-image img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid #2a2a2a;
}
/* PRICING INTRO */
.pricing-intro {
    max-width: 900px;
    margin: 120px auto 50px;
    padding: 0 40px;
    text-align: center;
}

.pricing-intro h1 {
    margin-bottom: 14px;
}

.pricing-intro p {
    opacity: 0.75;
    line-height: 1.6;
}

/* INCLUDED */
.included {
    padding: 80px 40px;
    background: #1a1a1a;
    text-align: center;
}

.included h2 {
    margin-bottom: 24px;
}

.included-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: auto;
}

.included-list li {
    padding: 8px 0;
    opacity: 0.85;
}

.included-list li::before {
    content: "–";
    margin-right: 8px;
    color: #ffb703;
}
/* GALLERY */
.gallery {
    padding: 100px 40px;
    background: #121212;
}

.gallery-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #2a2a2a;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
	cursor:pointer;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
/* MODAL */
.image-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 1000;
}

.image-modal.active {
    display: block;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.modal-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
}

/* Close button */
.modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    color: #f1f1f1;
    cursor: pointer;
}

.modal-close .material-icons {
    font-size: 32px;
}

/* Call button inside modal */
.modal-call {
    padding: 14px 28px;
}
/* CONTACT PAGE */
.contact-page {
    padding: 100px 40px;
    background: #121212;
}

.contact-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 24px;
}

/* CONTACT SOCIAL */
.contact-social {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.contact-social a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #f1f1f1;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.85;
    transition: opacity 0.2s, color 0.2s;
}

.contact-social a:hover {
    opacity: 1;
    color: #ffb703;
}

.contact-social .material-icons {
    font-size: 20px;
}


.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.contact-item a {
    color: #ffb703;
    text-decoration: none;
    font-weight: 600;
}

.contact-note {
    margin-top: 20px;
    opacity: 0.75;
}

.contact-map iframe {
    width: 100%;
    height: 360px;
    border: none;
    border-radius: 16px;
    border: 1px solid #2a2a2a;
}

/* USEFUL INFO */
.useful-info {
    padding: 50px 40px;
    background: #1a1a1a;
    text-align: center;
}

.useful-info h2{
    margin:0px 0px 40px 0px;
}

.useful-grid {
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
}

.useful-info ul {
    list-style: none;
    padding: 0;
}

.useful-info li {
    padding: 6px 0;
    opacity: 0.85;
}

.useful-info li::before {
    content: "–";
    margin-right: 8px;
    color: #ffb703;
}

/* MOBILE */
@media (max-width: 900px) {
    .final-cta-single {
        padding: 80px 20px;
    }

    .final-cta-single .btn-primary.large {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .pricing-intro {
        padding: 0 20px;
        margin: 100px auto 40px;
    }
}

@media (max-width: 900px) {
    .contact-grid,
    .useful-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-page {
        padding: 80px 20px;
    }
}

/* Mobile */
@media (max-width: 900px) {
    .modal-content {
        width: 100%;
        padding: 0 16px;
    }

    .modal-call {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile: CTA always visible */
@media (max-width: 900px) {
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(
            to top,
            rgba(0,0,0,0.7),
            rgba(0,0,0,0.2)
        );
        align-items: flex-end;
        padding-bottom: 20px;
    }
}

/* MOBILE */
@media (max-width: 900px) {
    .traseu-row {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .traseu-row.reverse {
        direction: ltr;
    }
}


/* MOBILE */
@media (max-width: 900px) {
    .page-hero {
        height: 50vh;
    }

    .trasee {
        padding: 80px 20px;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 900px) {
    .final-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .topbar-inner {
        padding: 12px 20px;
    }

    .brand {
        font-size: 16px;
    }

    .contact a {
        font-size: 16px;
    }
}
@media (max-width: 900px) {
    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
        opacity: 0.85;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 900px) {
    .info-strip {
        padding: 60px 20px;
        gap: 32px;
    }
}
@media (max-width: 900px) {
    .packages {
        padding: 80px 20px;
    }

    .package-card {
        padding: 30px;
    }

    .price {
        font-size: 24px;
    }
}
@media (max-width: 900px) {
    .final-cta {
        padding: 80px 20px;
    }

    .map-wrapper {
        height: 260px;
    }

    .large {
        width: 100%;
        justify-content: center;
    }
}

.mobile-call {
    display: none;
}

@media (max-width: 900px) {
    .mobile-call {
        position: fixed;
        bottom: 16px;
        left: 16px;
        right: 16px;
        background: #ffb703;
        color: #121212;
        padding: 14px;
        border-radius: 30px;
        text-align: center;
        font-weight: 700;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        z-index: 999;
    }
}
