/*
Theme Name: Dream Travel Shop
Author: Manas Barman
Version: 1.0
*/

/* Reset */
    * { margin:0; padding:0; box-sizing:border-box; font-family:"Poppins",sans-serif; }
    body { background:#f5f7f8; }

    /* Header */
    .header {
      position: fixed;
      top:0; left:0;
      width:100%;
      background: linear-gradient(45deg, #fffbfb, #0278999c);
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:12px 40px; /* Reduced height for desktop */
      transition: all 0.3s ease;
      z-index:10000;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    .header.shrink {
      padding:8px 30px;
      background: linear-gradient(45deg, #ffffff, #ff6200f0);
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    /* Logo */
    .logo {
      display:flex;
      align-items:center;
      gap:10px;
    }
    .logo a img {
      height:50px; /* Reduced height for desktop */
      width:auto;
      object-fit:contain;
      transition: transform 0.3s;
      border-radius:10px;
      border:2px solid rgba(0,0,0,0.1);
    }
    .logo a img:hover { transform:scale(1.05); }

    /* Navbar */
    .navbar ul {
      display:flex;
      gap:25px;
      list-style:none;
    }
    .navbar ul li a {
      text-decoration:none;
      color:#fff;
      font-size:16px;
      font-weight:500;
      transition:0.3s;
      position:relative;
    }
    .navbar ul li a:hover { color:#ffeb3b; }

    /* Menu Toggle */
    .menu-toggle {
      display:none;
      font-size:26px;
      color:#fff;
      cursor:pointer;
    }

    /* Mobile Responsive */
    @media (max-width:768px){
      .header { padding:10px 15px; }
      .logo a img { height:40px; }

      .menu-toggle { display:block; }

      .navbar {
        display:none;
        position:absolute;
        top:55px;
        right:10px;
        background: linear-gradient(45deg, #007bff, #00c6ff);
        width:160px;
        border-radius:8px;
        padding:15px;
        box-shadow:0 4px 12px rgba(0,0,0,0.25);
      }
      .navbar ul { flex-direction:column; gap:10px; }
      .navbar ul li a { font-size:14px; }
      .navbar.active { display:block; }
    }
    
     .tour-hero-slider {
    width: 100%;
    height: 700px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
  }

  .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none; 
  } 

  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
  }

  .slide-text {
    position: absolute;
    bottom: 30px;
    left: 25px;
    z-index: 5;
    color: #fff;
    max-width: 80%;
  }

  .slide-text h2 {
    font-size: 28px;
    margin: 10 0 8px;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.8);
  }

  .slide-text p {
    font-size: 15px;
    margin: 1;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  }

  /* Arrows - Desktop */
  .swiper-button-next,
  .swiper-button-prev {
    color: #fff;
    width: 34px;
    height: 34px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    font-size: 14px;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.3s;
  }

  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background: #ff5c33;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 18px;
  }

  /* Pagination */
  .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
  }

  .swiper-pagination-bullet-active {
    background: #ff5c33;
    opacity: 1;
  }

  /* Mobile Adjustments */
  @media (max-width: 768px) {
    .tour-hero-slider {
      height: 350px;
    }

    .slide-text {
      bottom: 14px;
      left: 15px;
    }

    .slide-text h2 {
      font-size: 18px;
    }

    .slide-text p {
      font-size: 12px;
    }

    .swiper-button-next,
    .swiper-button-prev {
      width: 24px !important;
      height: 24px !important;
      font-size: 10px !important;
      background: rgba(0, 0, 0, 0.5);
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
      font-size: 12px !important;
    }
  }
  
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

 .top-destination-carousel {
  font-family: 'Segoe UI', sans-serif;
  padding: 20px;
}
.top-destination-carousel h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}
.top-destination-carousel h2 span {
  color: #e91e63;
}
.carousel-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}
.destination-card {
  flex: 0 0 auto;
  width: 260px;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #000;
  position: relative;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: white;
  font-weight: 600;
}
.destination-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  filter: brightness(0.65);
}
.info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: white;
  text-align: center;
}
.info-overlay .name {
  width: 100%;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .destination-card {
    width: 200px;
  }
  .destination-card img {
    height: 150px;
  }
  .info-overlay {
    font-size: 1rem;
    padding: 10px 12px;
  }
}
@media (max-width: 480px) {
  .destination-card {
    width: 160px;
  }
  .destination-card img {
    height: 130px;
  }
  .info-overlay {
    font-size: 0.9rem;
    padding: 8px 10px;
  }
}

  :root{
      --bg:#0b1120;
      --accent:#ff8a00;
      --muted:#9aa6b2;
      --white:#f8fafc;
    }
    *{box-sizing:border-box;margin:0;padding:0}
    body{font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,'Helvetica Neue',Arial;color:var(--white)}

    .site-footer{background:linear-gradient(180deg,var(--bg),#050d1a);padding:50px 24px 24px;position:relative;overflow:hidden}
    .footer-container{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:32px}

    .footer-brand h3{font-size:22px;margin-bottom:10px;color:var(--accent)}
    .footer-brand p{color:var(--muted);line-height:1.6;font-size:15px}

    .contact{margin-top:14px;display:flex;flex-direction:column;gap:8px}
    .contact a{color:var(--muted);text-decoration:none;font-size:14px;display:flex;align-items:center;gap:8px;transition:.3s}
    .contact a:hover{color:var(--accent)}

    .footer-links h4,.footer-news h4{margin-bottom:12px;font-size:16px;color:var(--white)}
    .footer-links ul{list-style:none}
    .footer-links li{margin:8px 0}
    .footer-links a{color:var(--muted);text-decoration:none;font-size:14px;transition:.3s}
    .footer-links a:hover{color:var(--accent)}

    .newsletter{display:flex;gap:8px;flex-wrap:wrap}
    .newsletter input{flex:1;min-width:160px;padding:12px;border-radius:8px;border:1px solid rgba(255,255,255,0.1);background:rgba(255,255,255,0.05);color:var(--white)}
    .newsletter input::placeholder{color:#cbd5e1}
    .newsletter button{padding:12px 18px;border-radius:8px;border:none;background:var(--accent);color:#08121a;font-weight:600;cursor:pointer;transition:.3s}
    .newsletter button:hover{background:#ffa733}
    .newsletter small{display:block;margin-top:8px;color:var(--muted)}

    .socials{margin-top:18px;display:flex;flex-wrap:wrap;gap:12px}
    .socials a{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:8px;background:rgba(255,255,255,0.05);color:var(--white);font-size:16px;transition:.3s}
    .socials a:hover{background:var(--accent);color:#0b1120}

    .footer-bottom{grid-column:1/-1;border-top:1px solid rgba(255,255,255,0.05);margin-top:24px;padding-top:18px;display:flex;flex-direction:column;align-items:center;gap:10px;text-align:center}
    .copyright{color:var(--muted);font-size:13px}
    .policies{display:flex;flex-wrap:wrap;gap:16px;justify-content:center}
    .policies a{color:var(--muted);text-decoration:none;font-size:13px;transition:.3s}
    .policies a:hover{color:var(--accent)}

    @media(max-width:520px){
      .newsletter{flex-direction:column}
      .newsletter button{width:100%}
    }

    /* background animation */
    .site-footer::before{content:"";position:absolute;top:-50%;left:-50%;width:200%;height:200%;background:radial-gradient(circle at center,rgba(255,138,0,0.08) 0%,transparent 60%);animation:spin 40s linear infinite;z-index:0}
    .footer-container,.footer-bottom{position:relative;z-index:1}
    @keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
    
    .bottom-nav {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    width: 92%;
    max-width: 450px;
    border-radius: 25px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    z-index: 999;
  }

  .bottom-nav a {
    text-decoration: none;
    color: #1e3a8a;
    text-align: center;
    flex-grow: 1;
    transition: all 0.3s ease;
  }

  .bottom-nav a:hover {
    transform: translateY(-3px);
    color: #2563eb;
  }

  .bottom-nav i {
    font-size: 22px;
    display: block;
    margin-bottom: 5px;
  }

  .bottom-nav span {
    font-size: 13px;
    font-weight: 500;
  }
  
  :root {
  --accent:#ff4d00;
  --dark:#0b0f15;
  --card-radius:18px;
}

*{box-sizing:border-box; margin:0; padding:0;}
body{font-family:"Poppins", sans-serif; background:#f4f6f8;}

.travel-carousel-section{
  padding:40px 12px;
  max-width:1200px;
  margin:auto;
}

.travel-carousel-title{
  text-align:center;
  font-size:26px;
  font-weight:800;
  color:#0b0f15;
  margin-bottom:14px;
}

.travel-carousel-title span{
  color:var(--accent);
}

.tc-wrapper{
  position:relative;
}

.tc-track{
  display:flex;
  gap:16px;
  overflow-x:auto;
  padding-bottom:18px;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
}

.tc-track::-webkit-scrollbar{display:none}

/* MOBILE FULL-WIDTH CARD */
.tc-card{
  flex:0 0 100%;
  height:380px;
  background:#000;
  border-radius:var(--card-radius);
  position:relative;
  overflow:hidden;
  scroll-snap-align:start;
  box-shadow:0 8px 24px rgba(0,0,0,0.18);
  transition:.28s ease;
}

.tc-card:hover{
  transform:translateY(-6px);
}

.tc-img{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:.9;
  transition:.4s;
}

.tc-card:hover .tc-img{
  transform:scale(1.06);
  opacity:1;
}

/* Overlay */
.tc-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:18px;
  background:linear-gradient(0deg, rgba(0,0,0,.85), rgba(0,0,0,.15));
  color:#fff;
}

/* Top badges */
.tc-badges{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}

.tc-location{
  background:#fff;
  color:#000;
  padding:6px 10px;
  border-radius:10px;
  font-weight:700;
  font-size:13px;
  display:flex;
  align-items:center;
  gap:6px;
}

.tc-location img{
  width:18px;
  height:18px;
  border-radius:3px;
}

.tc-offer{
  background:var(--accent);
  padding:6px 10px;
  border-radius:10px;
  color:#fff;
  font-size:12px;
  font-weight:700;
}

/* Title + Price */
.tc-title-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.tc-title{
  font-size:20px;
  font-weight:800;
}

.tc-price{
  background:rgba(255,255,255,0.15);
  padding:6px 12px;
  border-radius:10px;
  font-size:14px;
  font-weight:700;
}

/* description */
.tc-desc{
  font-size:13px;
  opacity:.85;
  max-width:85%;
  margin:4px 0 10px;
}

/* Buttons */
.tc-buttons{
  display:flex;
  gap:10px;
}

.tc-btn{
  padding:10px 12px;
  border-radius:10px;
  font-weight:700;
  font-size:14px;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
}

.tc-primary{background:var(--accent); color:#fff;}
.tc-secondary{background:#fff; color:#000;}

/* DESKTOP LAYOUT */
@media(min-width:900px){
  .tc-card{ flex:0 0 calc(33.3% - 16px); }
}

/* Arrows (Desktop Only) */
.tc-arrow{
  display:none;
}

@media(min-width:900px){
  .tc-arrow{
    display:flex;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:46px; height:46px;
    background:#fff;
    border-radius:50%;
    border:none;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 18px rgba(0,0,0,.20);
    z-index:10;
    font-size:18px;
  }
  .tc-arrow.left{ left:-10px; }
  .tc-arrow.right{ right:-10px; }
}

:root {
  --accent:#ff4d00;
  --dark:#0b0f15;
  --card-radius:18px;
}

/* RESET */
*{box-sizing:border-box; margin:0; padding:0;}
body{font-family:"Poppins", sans-serif; background:#f4f6f8;}

/* SECTION */
.travel-carousel-section{
  padding:40px 12px;
  max-width:1200px;
  margin:auto;
}

.travel-carousel-title{
  text-align:center;
  font-size:26px;
  font-weight:800;
  color:#0b0f15;
  margin-bottom:14px;
}

.travel-carousel-title span{
  color:var(--accent);
}

.tc-wrapper{ position:relative; }

/* TRACK */
.tc-track{
  display:flex;
  gap:16px;
  overflow-x:auto;
  padding-bottom:18px;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
}

.tc-track::-webkit-scrollbar{display:none}

/* MOBILE = 1 full + half next card */
.tc-card{
  flex:0 0 82%;    /* THIS MAKES 1 + HALF CARD VISIBLE */
  height:380px;
  background:#000;
  border-radius:var(--card-radius);
  position:relative;
  overflow:hidden;
  scroll-snap-align:start;
  box-shadow:0 8px 24px rgba(0,0,0,0.18);
  transition:.28s ease;
}

.tc-card:hover{
  transform:translateY(-6px);
}

.tc-img{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:.9;
  transition:.4s;
}

.tc-card:hover .tc-img{
  transform:scale(1.06);
  opacity:1;
}

/* Overlay */
.tc-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:18px;
  background:linear-gradient(0deg, rgba(0,0,0,.85), rgba(0,0,0,.15));
  color:#fff;
}

/* Top badges */
.tc-badges{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}

.tc-location{
  background:#fff; color:#000;
  padding:6px 10px;
  border-radius:10px;
  font-weight:700;
  font-size:13px;
  display:flex;
  align-items:center;
  gap:6px;
}

.tc-location img{
  width:18px;
  height:18px;
  border-radius:3px;
}

.tc-offer{
  background:var(--accent);
  padding:6px 10px;
  border-radius:10px;
  color:#fff;
  font-size:12px;
  font-weight:700;
}

/* Title + Price */
.tc-title-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.tc-title{
  font-size:20px;
  font-weight:800;
}

.tc-price{
  background:rgba(255,255,255,0.15);
  padding:6px 12px;
  border-radius:10px;
  font-size:14px;
  font-weight:700;
}

/* description */
.tc-desc{
  font-size:13px;
  opacity:.85;
  max-width:85%;
  margin:4px 0 10px;
}

/* Buttons */
.tc-buttons{
  display:flex;
  gap:10px;
}

.tc-btn{
  padding:10px 12px;
  border-radius:10px;
  font-weight:700;
  font-size:14px;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
}

.tc-primary{background:var(--accent); color:#fff;}
.tc-secondary{background:#fff; color:#000;}

/* DESKTOP: 3 cards */
@media(min-width:900px){
  .tc-card{ flex:0 0 calc(33.3% - 16px); }
}

/* ARROWS (Desktop Only) */
.tc-arrow{
  display:none;
}

@media(min-width:900px){
  .tc-arrow{
    display:flex;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:46px; height:46px;
    background:#ff6600;
    color:#fff;
    border-radius:50%;
    border:none;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 18px rgba(0,0,0,.20);
    z-index:10;
    font-size:18px;
  }
  .tc-arrow.left{ left:-10px; }
  .tc-arrow.right{ right:-10px; }
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f5f5f5;
}

.tour-box {
  background: #fff;
  padding: 15px 18px;
  margin: 10px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tour-info {
  max-width: 80%;
}

.tour-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 5px;
}

.tour-desc {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.arrow-link {
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
  color: #ff6600;
}

.arrow-link:hover {
  opacity: 0.7;
}
.tour-title {
  color: #000 !important;
}

/* 🌟 OFFER SLIDER'' TRAVEL OFFER SLIDER DESIGN */
.offer-slider {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  margin: 15px auto;
}

/* Mobile small */
@media(max-width:768px){
  .offer-slider{
    height: 170px;
  }
}

.offer-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.offer-slide a{
  display:block;
  width:100%;
  height:100%;
  position:relative;
}

.offer-text{
  position:absolute;
  bottom:12px;
  left:14px;
  background:#ff6600;
  color:#fff;
  padding:6px 12px;
  border-radius:6px;
  font-size:18px;
  font-weight:700;
  box-shadow:0 2px 4px rgba(0,0,0,0.4);
}

@media(max-width:768px){
  .offer-text{
    font-size:12px;
    bottom:6px;
    left:8px;
    padding:4px 8px;
  }
}

/* Arrows */
.offer-next,
.offer-prev{
  top: 60% !important;              /* Center vertically */
  transform: translateY(-50%) !important;
  background:#00000070;
  color:#fff;
  width:36px !important;
  height:36px !important;
  border-radius:50%;
}

.offer-next:hover,
.offer-prev:hover{
  background:#ff6600;
  color:#fff;
}

/* Pagination */
.offer-pagination .swiper-pagination-bullet{
  background:#fff;
  opacity:0.4;
}
.offer-pagination .swiper-pagination-bullet-active{
  background:#ff6600;
  opacity:1;
}
.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius:20px;
}