        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            
        }

        
        nav {
            font-family: "Figtree", sans-serif;
            max-height: 75px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 3rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            overflow: visible;
        
        }
.nav-inline {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-inline a {
    padding-right: 110px;
  text-decoration: none;
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.nav-inline a:hover {
  color: #f4a261;
}


        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            z-index: 1001;
        }

        .logo {
            margin-left: -30px;
            margin-top: 15px;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            position: relative;
            transform: translateY(20px);
        }
        
        .logo img {
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
        }

        .brand-name {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: #2c3e50;
        }

        .nav-links {
            position: fixed;
            top: 0;
            right: -400px;
            height: 100vh;
            width: 350px;
            background:rgb(36, 36, 36);
            display: flex;
            flex-direction: column;
            gap: 2rem;
            list-style: none;
            padding: 6rem 3rem 3rem 3rem;
            transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 999;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
        }

        .nav-links.active {
            right: 0;
        }

        .nav-links a {
            text-decoration: none;
            color: #fff;
            font-size: 1.5rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }

        .nav-links a:hover {
            color: #f4a261;
            border-bottom: 2px solid #f4a261;
            transform: translateX(10px);
        }

        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s;
            z-index: 998;
        }

        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .nav-icons {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .search-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            color: #2c3e50;
            transition: color 0.3s;
        }

        .search-icon:hover {
            color: #f4a261;
        }

        .search-icon svg {
            width: 24px;
            height: 24px;
        }

        .search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 2000;
        }

        .search-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .search-container {
            position: relative;
            width: 90%;
            max-width: 600px;
        }

        .search-input {
            width: 100%;
            padding: 1.5rem 3rem 1.5rem 1.5rem;
            font-size: 1.5rem;
            border: none;
            border-radius: 5px;
            background: white;
            color: #2c3e50;
            outline: none;
        }

        .search-input::placeholder {
            color: #999;
        }

        .search-close {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            font-size: 2.5rem;
            color: #666;
            cursor: pointer;
            transition: color 0.3s;
        }

        .search-close:hover {
            color: #f4a261;
        }

        .hero {
            position: relative;
            height: 130vh;
            width: 100%;
            overflow: hidden;
            margin-top: 75px; 
                  margin-bottom: -300px;
        }

        .hero-image {
            width: 100%;
            height: 100%;
            position: fixed;
        }

       
        .hero-content {
            position: absolute;
            bottom: 25%;
            left: 5%;
            color: white;
            z-index: 10;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }

        .hero-title {
            font-size: 5rem;
            font-weight: 400;
            margin-bottom: 1rem;
            letter-spacing: 2px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.8rem;
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 23rem;
        }


        .second-hero {
            position: relative;
            height: 85vh;
            width: 100%;
            overflow: hidden;
            margin-top: 75px; 
            
        }

    
        .second-hero-content {
            background-color: #fff;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            position: absolute;
            bottom: 10%;
            height: 80%;
            width: 100%;
            padding: 2rem;
            color: rgb(0, 0, 0);
            z-index: 10;
             opacity: 0;
            transform: translateY(130px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .second-hero-content.visible {
  opacity: 1;
  transform: translateY(0);
}

        .image {
            flex: 1;
            max-width: 40%;
            margin-right: 10rem;
               margin-left:30px;
        }

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

        .text {
            flex: 1;
            max-width: 50%;
            padding-left: 1rem;
            text-align: left;
            margin-right: 120px;
            
        }

        .second-hero-title {
            font-size: 4rem;
            letter-spacing: 2px;
            line-height: 1.2;
            margin-left: 20px;
        }

        .second-hero-subtitle {
            color: rgb(73, 45, 9);
              font-family: "Figtree", sans-serif;
              font-weight: 700;
            font-size: 1.6rem;
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 2rem;
              margin-left: 60px;
        }

        .shop-btn {
            display: inline-block;
            padding: 0.7rem 2rem 0.75rem;
            background-color: #333;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            margin-left: 250px;
            transition: background-color 0.3s;
        }

        .shop-btn:hover {
            background-color: #555;
        }

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

        .hamburger span {
            height: 3px;
            background: #2c3e50;
            transition: all 0.3s;
        }

        .hamburger span:nth-child(1) {
            width: 15px;
            align-self: flex-start;
        }

        .hamburger span:nth-child(2) {
            width: 30px;
        }

        .hamburger span:nth-child(3) {
            width: 15px;
            align-self: flex-end;
        }

        .mobile-search-item {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .mobile-search-btn {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem 0;
            color: #fff;
            font-size: 1.5rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s;
            width: 100%;
            text-align: left;
        }

        .mobile-search-btn:hover {
            color: #f4a261;
            transform: translateX(10px);
        }

        .mobile-search-btn svg {
            width: 24px;
            height: 24px;
        }


/* ---------- TABLET (<= 1024px) ---------- */
@media (max-width: 1024px) {

  .nav-inline {
    display: none;
  }

  nav {
    padding: 1rem 2rem;
    justify-content: space-between;
  }

  .logo {
    pointer-events: none;
    cursor: default;
  }

  .search-icon {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo img {
    width: 250px;
  }

  .hero {
    height: 100vh;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .second-hero-content {
    flex-direction: column;
    text-align: center;
    bottom: 0;
    padding: 2rem 1rem;
    height: auto;
  }

  .image {
    max-width: 80%;
    margin: 0 auto 1.5rem auto;
  }

  .text {
    max-width: 90%;
    margin: 0 auto;
  }

  .second-hero-title img {
    width: 100%;
    max-width: 450px;
  }

  .-hero-subtitle {
    margin: 1rem auto;
    font-size: 1.3rem;
  }

  .shop-btn {
    margin: 1rem auto;
    display: inline-block;
  }
}


@media (max-width: 768px) {
  nav {
    padding: 0.8rem 1rem;
  }

  .logo img {
    width: 180px;
  }

  .hero {
    height: 80vh;
  }

  .hero-title {
    margin-top: 8px;
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 600;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 5rem;
  }

  .hero-content {
    left: 5%;
    bottom: 15%;
  }

  .second-hero-content {
   width: 100%;
    padding: 1rem;
    text-align: center;
     height: 67vh;
     padding-bottom: 100px;
  }

  .image {
     padding-top: 60px;
    max-width: 100%;
    margin: 0 auto 1rem auto;
  }

  .second-hero-title img {
    width: 90%;
    max-width: 350px;
  }

  .second-hero-subtitle {
    font-size: 1rem;
    margin-left: 0;
    
  }

  .shop-btn {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
    margin: 0 auto;
    text-align: center;
    margin-left: 20px;
  }

}


@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
.hero-image {
            width: 1500px;
            height:100%;
            position: fixed;
        }
  .hero-subtitle {
    font-size: 0.9rem;
  }

  .second-hero-title img {
    width: 80%;
  }

  .shop-btn {
    width: 80%;
    font-size: 1rem;

  }

  nav {
    padding: 0.5rem 1rem;
  }
}

/* ============================================
   MAIN CONTENT SECTIONS
   ============================================ */

main {
    background: #fff;
    position: relative;
    z-index: 1;
}

/* Features Section */
.features {
    padding: 5rem 3rem;
    background: #f8f9fa;
    text-align: center;
}

.features h2 {
    font-family: "Figtree", sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    font-family: "Figtree", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Destinations Section */
.destinations {
    padding: 5rem 3rem;
    background: white;
    text-align: center;
}

.destinations h2 {
    font-family: "Figtree", sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

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

.destination-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.destination-card h3 {
    font-family: "Figtree", sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 1.5rem 0 0.5rem;
    padding: 0 1rem;
}

.destination-card p {
    font-size: 1rem;
    color: #555;
    padding: 0 1rem 1.5rem;
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 2rem 1rem;
    font-family: "Figtree", sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f4a261;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f4a261;
}

.footer-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #f4a261;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(244, 162, 97, 0.2);
    border-radius: 50%;
    color: #f4a261;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #f4a261;
    color: #2c3e50;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ddd;
}

/* ============================================
   RESPONSIVE STYLES FOR NEW SECTIONS
   ============================================ */

@media (max-width: 768px) {
    .features {
        padding: 3rem 1.5rem;
    }

    .features h2,
    .destinations h2 {
        font-size: 2rem;
    }

    .features-grid,
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .destinations {
        padding: 3rem 1.5rem;
    }

    footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .features h2,
    .destinations h2 {
        font-size: 1.6rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .destination-card img {
        height: 200px;
    }
}
