@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;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #f4ece6 0%, #d8c7a3 100%);
    color: #3c2f2f;
    overflow-x: hidden;
    line-height: 1.4;
}

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

header {
    background: linear-gradient(90deg, #8b5e3c, #d4a373);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

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

.logo {
    font-size: 2.5rem;
    color: #fff;
}

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

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

.nav-links a:hover {
    color: #3c2f2f;
}

.burger {
    display: none;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
}

.no-scroll {
    overflow: hidden;
}

section {
    padding: 80px 0;
}
section p{
    margin-bottom: 15px;
}
.btn {
    background: #8b5e3c;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    margin-top: 10px;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Index Page Styles */
.hero {
    background: url('image/banner.webp') no-repeat center/cover;
    height: 100vh;
    max-height: 1200px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.features {
    background: #f4ece6;
    text-align: center;
}

 h2 {
    font-size: 3rem;
    margin-bottom: 40px;
}

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

.feature-card {
    padding: 20px;
    border-radius: 15px;
    background: #d8c7a3;
    transition: transform 0.3s;
}

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

.feature-card img {
    height: 300px;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    position: relative;
}

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

.slider-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
}

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

.slider-nav button {
    background: #8b5e3c;
    border: none;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5rem;
}

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

.accordion-item {
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-header {
    background: #8b5e3c;
    color: #fff;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    background: #f4ece6;
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    padding: 15px;
    max-height: 200px;
}

.gear-guide {
    background: #d8c7a3;
    text-align: center;
}

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

.gear-item {
    padding: 20px;
    border-radius: 15px;
    background: #f4ece6;
}

.gear-item img {
    height: 250px;
    border-radius: 10px;
    margin-bottom: 20px;
}

button{
    border: none;
}
.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input, .contact textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact textarea {
    resize: vertical;
}

/* Explore Page Styles */
.journey-planner {
    padding-top: 130px;
    background: #f4ece6;
    text-align: center;
}

.journey-planner h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.planner-card {
    background: #d8c7a3;
    padding: 20px;
    border-radius: 15px;
    text-align: left;
}

.planner-card img {
    height: 300px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.gear-tech {
    background: url('image/banner.webp') no-repeat center/cover;
    color: #fff;
    position: relative;
    text-align: center;
}

.gear-tech::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

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

.tech-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.packing-stories {
    background: #d8c7a3;
}

.story-split {
    display: flex;
    align-items: center;
    gap: 40px;
}

.story-split img {
    border-radius: 10px;
    width: 50%;
}

.story-text {
    flex: 1;
}

.travel-hacks {
    background: #f4ece6;
    text-align: center;
}

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

.hack-card {
    background: #d8c7a3;
    padding: 20px;
    border-radius: 15px;
}

.eco-travel {
    background: url('image/parallax2.jpg') no-repeat center/cover;
    color: #fff;
    position: relative;
    text-align: center;
    padding: 120px 0;
}

.eco-travel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

.eco-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.eco-list li {
    margin-bottom: 15px;
}

.gear-care {
    background: #d8c7a3;
    text-align: center;
}

.care-steps {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.care-step {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.care-step img {
    width: 200px;
    border-radius: 10px;
}

.travel-quotes {
    background: #f4ece6;
    text-align: center;
}

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

.quote-container {
    display: flex;
    transition: transform 0.5s ease;
}

.quote-slide {
    min-width: 100%;
    padding: 20px;
}

.quote-slide p {
    font-style: italic;
    margin-bottom: 10px;
}

.quote-author {
    font-weight: bold;
    margin-bottom: 5px;
}

.quote-rating {
    color: #d4a373;
}

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

.quote-nav button {
    background: #8b5e3c;
    border: none;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5rem;
}

.community {
    background: #d8c7a3;
    text-align: center;
}

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

.community-card {
    background: #f4ece6;
    padding: 20px;
    border-radius: 15px;
}
h3{
    margin-bottom: 10px;
}
/* Catalog Page Styles */
.catalog-hero {
    background: url('image/banner2.webp')  top center/cover no-repeat;
    color: #fff;
    text-align: center;
    position: relative;
}

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

.catalog-hero-content {
    position: relative;
    z-index: 2;
    padding: 130px 0;
}

.catalog-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.featured-gear {
    background: #f4ece6;
    text-align: center;
}

.gear-card {
    background: #d8c7a3;
    padding: 20px;
    border-radius: 15px;
    text-align: left;
}

.gear-card img {
    height: 300px;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

.gear-card .price {
    font-weight: bold;
    color: #8b5e3c;
    margin-bottom: 10px;
}

.travel-style {
    background: #d8c7a3;
    text-align: center;
}

.style-split {
    display: flex;
    align-items: center;
    gap: 40px;
}

.style-split img {
    border-radius: 10px;
    width: 50%;
}

.style-text {
    flex: 1;
    text-align: left;
}

.gear-benefits {
    background: #f4ece6;
    text-align: center;
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list i {
    color: #8b5e3c;
}

.customize-gear {
    background: url('image/parallax.jpg') no-repeat center/cover;
    color: #fff;
    text-align: center;
    position: relative;
}

.customize-gear::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

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

.customize-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.gear-comparison {
    background: #d8c7a3;
    text-align: center;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    border: 1px solid #8b5e3c;
}

.comparison-table th {
    background: #8b5e3c;
    color: #fff;
}

.travel-inspo {
    background: #f4ece6;
    text-align: center;
}

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

.inspo-card {
    background: #d8c7a3;
    padding: 20px;
    border-radius: 15px;
}

.inspo-card img {
    border-radius: 10px;
    margin-bottom: 20px;
}

.gear-accessories {
    background: #d8c7a3;
    text-align: center;
}

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

.accessory-card {
    background: #f4ece6;
    padding: 20px;
    border-radius: 15px;
}

/* Privacy Policy and Terms Pages Styles */
.privacy-content, .terms-content {
    padding: 120px 0 80px;
}

.privacy-content h1, .terms-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.privacy-content h2, .terms-content h2 {
    font-size: 2rem;
    margin: 30px 0 15px;
}

.privacy-content p, .terms-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.privacy-content ul, .terms-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-content li, .terms-content li {
    margin-bottom: 10px;
}

/* Thanks Page Styles */
.thanks{
    height: 100vh;
}
.thanks-message {
    padding: 40px;
    background: #d8c7a3;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.thanks-message h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.thanks-message p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Footer Styles */
footer {
    background: #3c2f2f;
    color: #fff;
    padding: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.footer-grid div{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-grid h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-grid a {
    color: #d4a373;
    text-decoration: none;
}
.faq-section {
            padding: 120px 0 80px;
            text-align: center;
        }

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

        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            background: #d8c7a3;
        }

        .faq-question {
            background: #8b5e3c;
            color: #fff;
            padding: 15px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.2rem;
            font-weight: bold;
        }

        .faq-answer {
            background: #f4ece6;
            padding: 0 15px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-answer.active {
            padding: 15px;
            max-height: 200px;
        }

        .faq-answer p {
            font-size: 1.1rem;
        }
        .our-craft {
            padding: 80px 0;
            text-align: center;
            background: #d8c7a3;
        }
        .craft-process {
            max-width: 800px;
            margin: 0 auto;
            text-align: left;
        }

        .process-step {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .process-step i {
            color: #8b5e3c;
            font-size: 2rem;
        }

        .process-step div h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .process-step div p {
            font-size: 1.1rem;
        }
        .trip-essentials {
            padding: 80px 0;
            text-align: center;
            background: #f4ece6;
        }

        .trip-essentials h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .trip-essentials p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }

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

        .essential-card {
            background: #d8c7a3;
            padding: 20px;
            border-radius: 15px;
            transition: transform 0.3s;
        }

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

        .essential-card h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .essential-card p {
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        .essential-card .btn {
            display: inline-block;
        }
/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #8b5e3c;
        padding: 20px;
    }

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

    .burger {
        display: block;
    }

    .hero h1, .catalog-hero h1, .journey-planner h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .story-split, .style-split, .care-step {
        flex-direction: column;
    }

    .story-text, .style-text {
        flex: none;
        width: 100%;
    }
    .style-split img, .story-split img{
        width: 100%;
        min-height: 250px;
    }

    .comparison-table {
        font-size: 0.9rem;
    }
    .comparison-table th, .comparison-table td{
        padding: 5px;
    }

    .privacy-content h1, .terms-content h1 {
        font-size: 2.5rem;
    }

    .privacy-content h2, .terms-content h2 {
        font-size: 1.8rem;
    }

    .thanks-message h1 {
        font-size: 2.5rem;
    }

    .thanks-message p {
        font-size: 1rem;
    }
    .container{
        padding: 0 10px;
    }
    .catalog-hero-content{
        padding: 130px 10px;
    }
    .thanks-message{
        padding: 30px 20px;
    }
    .slider-text{
        width: 80%;
    }
    h2{
        font-size: 2.5rem;
    }

            .faq-question {
                font-size: 1rem;
            }

            .faq-answer p {
                font-size: 1rem;
            }
            process-step {
                flex-direction: column;
                text-align: center;
            }
            .trip-essentials p {
                font-size: 1rem;
            }

            .essential-card h3 {
                font-size: 1.5rem;
            }

            .essential-card p {
                font-size: 1rem;
            }
}