@font-face {
    font-family: "Roboto";
    src: url("fonts/Roboto/Roboto-Regular.ttf");
    font-weight: 400;
    font-style: normal;
  }

img{
    max-width: 100%;
    object-fit: cover;
    display: block;
}
a{
    color: inherit;
    text-decoration: none;
}

/* BaseCamp Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1a2a44 0%, #2e3b55 100%);
    color: #e0e0e0;
    overflow-x: hidden;
}

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

/* Header Styles (index.html, explore.html, catalog.html, terms-conditions.html, privacy-policy.html) */
header {
    position: fixed;
    width: 100%;
    background: rgba(26, 42, 68, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00ff88;
}

.burger {
    display: none;
    font-size: 1.8rem;
    color: #00ff88;
    cursor: pointer;
}
.green{
    color: #00ff88;
}
/* General Section Styles */
section {
    padding: 80px 0;
}
.section-top{
    padding-top: 130px;
}
h2, h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #00ff88;
    text-align: center;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 15px 30px;
    background: #00ff88;
    color: #1a2a44;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

/* index.html Specific Styles */
.hero {
    height: 100vh;
    max-height: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('image/banner.webp') no-repeat center/cover;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    color: #00ff88;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.gear-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.gear-card:hover {
    transform: translateY(-10px);
}

.gear-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.gear-card h3 {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 10px;
}
.story-section .container{
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .story-section img {
            width: 50%;
            border-radius: 15px;
        }

        .story-content {
            flex: 1;
        }

        .slider {
            position: relative;
            height: 400px;
            overflow: hidden;
            max-width: 800px;
            margin: 0 auto;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            display: none;
        }
        .slide:before{
            position: absolute;
            content: '';
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
          
        }

        .slide.active {
            display: block;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #fff;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        }

        .accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-item {
            margin-bottom: 10px;
        }

        .accordion-header {
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 10px;
        }

        .accordion-content {
            display: none;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 0 0 10px 10px;
        }

        .accordion-content.active {
            display: block;
        }

        .gear-finder {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 40px;
            text-align: center;
        }

        .gear-finder select {
            padding: 15px;
            width: 100%;
            max-width: 400px;
            margin: 20px auto;
            border: none;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: #e0e0e0;
            font-size: 1rem;
        }

        .gear-result {
            margin-top: 20px;
            font-size: 1.2rem;
            color: #00ff88;
        }
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        .contact-form input::placeholder,
        .contact-form textarea::placeholder{
            color: #fff;
        }
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            border: none;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: #e0e0e0;
        }

        .contact-form textarea {
            resize: vertical;
        }

        .checkbox-container {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }
        .checkbox-container input{
            width: auto;
            margin: 0;
        }
        .faq-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
        }

        .faq-item {
            margin-bottom: 20px;
        }

        .faq-item h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            color: #00ff88;
            margin-bottom: 10px;
        }

        .faq-item p {
            font-size: 1rem;
            line-height: 1.6;
            color: #e0e0e0;
        }
/* explore.html Specific Styles */
.trail-highlights,  .accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.trail-card, .accessory-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.trail-card:hover,  .accessory-card:hover {
    transform: translateY(-10px);
}

.trail-card img,  .accessory-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.trail-card h3, .accessory-card h3 {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 10px;
}

.gear-tips, .packing-guide{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
}

.tip-card, .packing-item {
    flex: 1;
    min-width: 270px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.tip-card:hover, .packing-item:hover{
    transform: translateY(-10px);
}

.tip-card img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}
.packing-item i{
    color: #00ff88;
    display: inline-block;
    font-size: 30px;
    margin-bottom: 15px;
}
.story-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px;
}

.carousel-item img {
    width: 50%;
    max-width: 600px;
    border-radius: 15px;
}

.carousel-content {
    flex: 1;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.carousel-nav i {
    font-size: 2rem;
    color: #00ff88;
    cursor: pointer;
    padding: 10px;
}

.gear-comparison, .gear-combo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}
.new-product-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .new-product-text {
            flex: 1;
        }

        .new-product-text h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            color: #00ff88;
            margin-bottom: 15px;
        }

        .new-product-text p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #e0e0e0;
            margin-bottom: 20px;
        }
        .new-product-image{
            flex: 0 0 50%;
        }
        .new-product-image img {
            width: 100%;
            border-radius: 15px;
        }
.comparison-item, .combo-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
}

.comparison-item img, .combo-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.comparison-item ul, .tech-content ul {
    list-style: none;
    padding-left: 20px;
}

.comparison-item ul li::before, .tech-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #00ff88;
    margin-right: 10px;
}

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

.survival-tips {
    background: url('image/banner2.webp') no-repeat center/cover;
    border-radius: 15px;
    padding: 40px;
    position: relative;
}

.survival-tips::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

.survival-content {
    position: relative;
    text-align: center;
}

.survival-content ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 0;
}

.survival-content ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.survival-content ul li::before {
    content: '\f3ed';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #00ff88;
    position: absolute;
    left: 0;
}

/* catalog.html Specific Styles */
.featured-gear {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.gear-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.gear-card:hover {
    transform: translateY(-10px);
}

.gear-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.gear-card h3 {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 10px;
}

.gear-card .price {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.gear-showcase {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
}

.showcase-content {
    flex: 1;
}

.gear-showcase img {
    width: 50%;
    border-radius: 15px;
}

.gear-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: scale(1.05);
}

.benefit-card i {
    font-size: 3rem;
    color: #00ff88;
    margin-bottom: 15px;
}

.gear-tech {
    background: url('image/banner.webp') no-repeat center/cover;
    border-radius: 15px;
    padding: 40px;
    position: relative;
}

.gear-tech::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

.tech-content {
    position: relative;
    text-align: center;
}
.tech-content ul{
    padding: 0;
}
.tech-content ul li::before {
    content: '\f085';
}
.tech-content ul li{
    text-align: left;
    padding-left: 30px;
}
.photo-text {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.photo-text img {
    width: 50%;
    border-radius: 15px;
}

.text-content {
    flex: 1;
}

h3 {
    font-size: 1.5rem;
    color: #00ff88;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
    line-height: 1.6;
}

ul {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #00ff88;
    position: absolute;
    left: 0;
}

.terms-section, .policy-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

/* thank-you.html Specific Styles */
.thank-you {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

/* Footer Styles (index.html, explore.html, catalog.html, terms-conditions.html, privacy-policy.html) */
footer {
    background: #1a2a44;
    padding: 50px 0;
    color: #e0e0e0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-grid h3 {
    color: #00ff88;
    margin-bottom: 20px;
}

.footer-grid a {
    color: #e0e0e0;
    text-decoration: none;
}

.footer-grid a:hover {
    color: #00ff88;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 77px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: #2e3b55;
        padding: 20px;
        z-index: 999;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
       transform: translateX(0%);
    }

    .burger {
        display: block;
    }
    .hero h1{
        font-size: 2.5rem;
    }
    h2, h1 {
        font-size: 2rem;
    }

    .products, .trail-highlights, .gear-comparison, .gear-combo, .featured-gear, .gear-showcase, .accessories-grid, .gear-benefits {
        grid-template-columns: 1fr;
    }

    .gear-showcase, .photo-text , .new-product-section{
        flex-direction: column;
    }

    .showcase-content img, .story-section img, .gear-showcase img , .photo-text img, .carousel-item img, .new-product-image img {
        width: 100%;
        min-height: 200px;
    }

    .carousel-item, .packing-guide {
        flex-direction: column;
    }
    .container{
        padding: 0 10px;
    }
    .new-product-section, .gear-finder , .gear-tech, .gear-showcase, .survival-tips{
        padding: 30px 20px;
    }
}

body.no-scroll {
    overflow: hidden;
}