*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fdfbee;
}
.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    padding: 10px 20px;
    position: relative;
}
.logo img{
height: 40px;
}
.nav-toggle{
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.nav-toggle span{
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 4px 0;
    transition: 0.3s;
}
.nav-item{
display: flex;
align-items: center;
}
.navbar-nav{
    list-style: none;
    display: flex;
    gap: 20px;
}
.nav-link{
    text-decoration: none;
    color: #000;
    font-weight: 500;
}
.nav-link.active{
    font-weight: bold;
}
.btn-book{
    text-decoration: none;
    color: orange;
    padding: 8px 15px;
    border-radius: 4px;
    border: 1px solid orange;
    display: flex;
    align-items: center;
    gap:5px;
    font-size: 14px;
}
.btn-book img{
    height: 12px;
}

/* Media Query*/

@media(max-width:1024px){
    .navbar-nav{
        gap: 15px;
    }
    .btn-book{
        padding: 7px 12px;
    }
}
@media (max-width:768px){
    .nav-toggle{
        display: flex;
    }
    .navbar-nav{
        position: absolute;
        top:60px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 10px 0;
        z-index: 1;
    }
    .navbar-nav.open{
        display: flex;
    }
    .btn-book{
        margin-top: 10px;
    }
}

.home-container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 40px 0;
}
.home{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.home-text{
    flex :1 1 50%;
    padding: 20px;
}
.home-text h1{
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.home-text p{
    font-size: 1rem;
    margin-bottom: 30px;
}
.search-form{
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    flex-wrap: wrap;
}
.search-item{
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.search-item label{
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 5px;
}
.search-item span{
    display: flex;
    align-items: center;
    gap: 5px;
}
.divider{
    width: 1px;
    background-color: #ccc;
    height: 40px;
}
.search-btn{
    background-color: #f0f0f0;
    color: #fff;
    border: none;
    padding: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-btn img{
    height: 40px;
}
.home-image{
    flex: 1 1 50%;
    text-align: center;
    padding: 20px;
}
.home-image img{
    max-width: 100%;
    height: auto;
}
@media(max-width:992px){
    .home{
        flex-direction: column-reverse;
        text-align: center;
    }
    .home-text , .home-image{
        flex: 1 1 100%;
    }
    .search-form{
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    .divider{
        display: none;
    }
    .search-btn{
        width: 100%;
    }
}

@media(max-width:576px){
    .home-text h1{
        font-size: 2rem;
    }
    .home-text p{
        font-size: 0.95rem;
    }
    .search-form{
        padding: 10px;
    }
    .search-item{
        padding: 10px 0;
    }
}

.categories-container{
    max-width: 1200px;
    margin: 0 auto;
}
.categories-header{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.categories-header h2{
    font-size: 28px;
    margin-bottom: 5px;
}
.categories-header p{
    color:#555;
    font-size: 16px;
}
.nav-buttons{
    margin-top: 10px;
}
.nav-btn{
    padding: 8px 14px;
    border: none;
    background-color: #ccc; 
cursor: pointer;
font-size: 20px;
border-radius: 4px;
margin-right: 10px;
}
.btn-dark{
    background-color: #000;
    color: #fff;
}
.categories-slider{
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap:15px;
    padding-bottom: 10px;
}
.category-item{
    flex: 0 0 auto;
    width: 150px;
    text-align: center;
}
.category-item img{
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}
.category-item span{
    display: block;
    margin-top: 8px;
    font-weight: 500;
    color:#333;
}
.categories-slider::-webkit-scrollbar{
    height: 6px;
}
.categories-slider::-webkit-scrollbar-thumb{
    background: #ccc;
    border-radius: 10px;
}

@media(min-width:768px){
    .categories-header{
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    }
    .categories-slider{
        flex-wrap: wrap;
        overflow-x: hidden;
        justify-content: center;
    }
    .category-item{
        width: 180px;
    }
}
@media(min-width:1024px){
    .categories-slider{
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(180px, 1fr));
        gap:20px;
    }
    .category-item{
        width: 100%;
    }
}

.experience-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.experience-image{
    position: relative;
    flex: 1;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.circle-bg{
    width: 280px;
    height: 280px;
    background-color: #fdfbee;
    border-radius: 50%;
    position: absolute;
    z-index: 0;
}
.experience-image img{
    width: 100%;
    max-width: 340px;
    z-index: 1;
    position: relative;
}
.experience-text{
    flex: 1;
    max-width: 600px;
    text-align: center;
}
.experience-text h6{
    font-size: 16px;
    color:#888;
    margin-bottom: 8px;
}
.experience-text h2{
    font-size: 28px;
    margin-bottom: 16px;
}
.experience-text p{
    font-size: 16px;
    color:#555;
    line-height: 1.6;
    margin-bottom: 20px;
}
.stats-container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.stats-box{
    text-align: center;
    background-color: #fff;
}
.stats-box span{
    font-size: 24px;
    font-weight: bold;
    display: block;
    color: #000;
}
.stats-box p{
    font-size: 14px;
    color:#555;
    margin-top: 4px;
}
@media(min-width:600px){
    .experience-container{
        flex-direction: row;
        align-items: flex-start;
        gap:40px;

    }
    .experience-text{
        text-align: left;
    }
    .stats-container{
        flex-direction: row;
        justify-content: space-between;
    }
    .stats-box{
        flex: 1;
    }
}
@media(min-width:1024px){
    .experience-text h2{
        font-size: 36px;
    }
    .experience-text p{
        font-size: 17px;
    }
    .stats-box span{
        font-size: 28px;
    }
}

.destinations-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .destinations-container h2 {
    text-align: center;
    margin-bottom: 20px;
  }

  .destination-slider-wrapper {
    position: relative;
  }

  .destination-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-behavior: smooth;
    padding-bottom: 10px;
  }

  .destination-card {
    min-width: 280px;
    flex: 0 0 auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease;
  }

  .destination-card:hover {
    transform: translateY(-5px);
  }

  .destination-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
  }

  .destination-card h5 {
    font-size: 18px;
    margin: 10px 0 5px;
  }

  .destination-card p {
    margin: 4px 0;
    color: #555;
  }

  .price {
    font-weight: bold;
    color: #000;
  }

  .book-now-btn {
    margin-top: 10px;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .book-now-btn:hover {
    background-color: #333;
  }

  .slider-controls {
    display: none;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
  }

  .slider-controls button {
    background-color: #000;
    color: white;
    padding: 10px 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }

  /* Tablet View (2 columns) */
  @media (min-width: 600px) {
    .destination-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      overflow-x: unset;
    }

    .destination-card {
      min-width: auto;
    }

    .slider-controls {
      display: none;
    }
  }

  /* Desktop View (3 columns) */
  @media (min-width: 1024px) {
    .destination-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  /* Show slider buttons on mobile only */
  @media (max-width: 599px) {
    .slider-controls {
      display: flex;
    }
  }


.tours-container{
    max-width: 1200px;
    text-align: center;
    margin: 0 auto;
}
.tours-container h2{
    font-size: 28px;
    margin-bottom: 10px;
}
.tours-container p{
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}
.filter-buttons{
    
    display: flex;
    flex-wrap: wrap;
    gap:10px;
    margin-bottom: 30px;
    margin-left: 32%;
}
.filter-buttons button{
    padding: 8px 16px;
    border: 1px solid #000;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
}
.filter-buttons button:hover{
    background: #000;
    color: #fff;
}
.grid-container{
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
}
.grid-item{
    position: relative;
    overflow: hidden;
}
.grid-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.overlay{
    position: absolute;
    bottom: 10px;
    left: 10px;
    color:#fff;
    background: rgba(0,0.0,0.6);
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 4px;
}
.item-portrait{
    grid-row: span 2;
}
.item-landscape{
    grid-column: span 2;
}
@media(min-width:1024px){
    .grid-container{
        grid-template-areas: 
        "a a b c"
        "d e b f";
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 200px;
    }
    .item-1{grid-area:a;}
    .item-2{grid-area:b;}
    .item-3{grid-area:c;}
    .item-4{grid-area:d;}
    .item-5{grid-area:e;}
    .item-6{grid-area:f;}
}

.review-container{
    display: flex;
    flex-direction: column;
    gap:20px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 1200px;
    margin: 0 auto;
}
.review-image img{
    width: 60%;
    height: auto;
    border-radius: 10px;
}
.review-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    white-space: pre-line;
}
.review-content h2{
    font-size: 24px;
    margin-bottom: 10px;
}
.review-text{
    font-size: 16px;
    color:#444;
    margin-bottom: 15px;
}
.star-rating{
    font-size:18px;
    margin-bottom: 10px;
    color:#f39c12;
}
.reviewer-name{
    font-weight: bold;
    margin-bottom: 4px;
}
.reviewer-role{
    font-size: 14px;
    color:#666;
    margin-bottom: 20px;
}
.review-buttons{
    display: flex;
    gap:10px;
}
.review-buttons button{
    padding: 8px 12px;
    border: 1px solid #000;
    background: #fff;
    cursor: pointer;
    transition: background 0.3s;
}
.review-buttons button:hover{
    background: #000;
    color:#fff
}
@media(min-width:768px){
    .review-container{
        flex-direction: row;
        align-items: center;
        gap:40px;
    }
    .review-image,.review-content{
        flex: 1;
    }
}
@media(min-width:1024px){
    .review-content h2{
        font-size: 28px;
    }
    .review-text{
        font-size: 18px;
    }
    .review-buttons button{
        font-size: 16px;
    }
}

.signup-section{
    position: relative;
    background-color: #ff9f43;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    overflow: hidden;
    background-image: url('Images/Intersect\ lines.png');
}
.signup-section::before,
.signup-section::after{
    content: '';
    position: absolute;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: contain;
}

.newsletter-container{
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 600px;
    width: 100%;
    z-index: 1;
    position: relative;
}
.newsletter-title{
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}
.newsletter-text{
    font-size: 16px;
    color:#555;
    margin-bottom: 25px;
    text-align: center;
}
.newsletter-form{
    display: flex;
    gap:10px;
    flex-direction: column;
}
.newsletter-form button{
    padding:2px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    
}
.newsletter-form button:hover{
    background-color:orange;
}
.newsletter-form button img{
    height: 50px;
}
@media(min-width:768px){
    .newsletter-form{
        flex-direction: row;
    }
    .newsletter-form input{
        flex:3;
    }
    .newsletter-form button{
        flex:1;
    }
    .newsletter-title{
font-size: 28px;
    }
    .newsletter-text{
font-size: 18px;
    }
}

.footer {
    background-color: #fdfbee;
    color: #000;
    padding: 50px 20px 30px;
  }

  .footer .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }

  .footer-column {
    flex: 1 1 150px;
    min-width: 180px;
  }

  .footer-logo img {
    width: 120px;
    margin-bottom: 10px;
  }

  .footer-text {
    margin: 10px 0;
    font-size: 14px;
  }

  .social-icons {
    display: flex;
    gap: 10px;
  }

  .social-icons img {
    width: 24px;
    height: 24px;
    cursor: pointer;
  }

  .footer-heading {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
  }

  .footer-links a {
    color: #333;
    text-decoration: none;
    margin: 6px 0;
    font-size: 14px;
  }

  .footer-links a:hover {
    color: #fff;
  }

  /* Media Queries */
  @media (max-width: 768px) {
    .footer .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-column {
      width: 100%;
      margin-bottom: 30px;
    }

    .social-icons {
      justify-content: center;
    }
  }

  @media (min-width: 769px) and (max-width: 1024px) {
    .footer .footer-container {
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-column {
      flex: 1 1 45%;
    }
  }
