/* GLOBAL */
body {
   font-family: 'Poppins', sans-serif;
}

/* HEADINGS (LUXURY LOOK) */
h1, h2, h3, h4, h5, h6, p {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;

   margin: 0;
  padding: 0;
}

/* HERO */
.dest-hero{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.dest-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
    linear-gradient(
        135deg,
        rgba(0,0,0,.75),
        rgba(0,0,0,.45)
    );
}

.dest-hero .content{
    position: relative;
    z-index: 2;
    max-width: 950px;
    text-align: center;
    padding: 40px;
}

.hero-subtitle{
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    color: #f4c542;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
}

.dest-hero h1{
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0,0,0,.4);
}

.dest-hero p{
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255,255,255,.92);
    max-width: 750px;
    margin: auto;
}

.hero-buttons{
    margin-top: 35px;
}

.btn-gold{
    background: linear-gradient(
        135deg,
        #d4af37,
        #f4c542
    );
    color: #000;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s ease;
    box-shadow: 0 15px 35px rgba(212,175,55,.35);
    text-decoration:none;
}

.btn-gold:hover{
    transform: translateY(-5px);
    color: #000;
}

/* Responsive */

@media(max-width:1200px){

    .dest-hero h1{
        font-size: 44px;
    }
}

@media(max-width:992px){

    .dest-hero h1{
        font-size: 38px;
    }

    .dest-hero p{
        font-size: 18px;
    }
}

@media(max-width:768px){

    .dest-hero{
        min-height: 100vh;
    }

    .dest-hero .content{
        padding: 20px;
    }

    .dest-hero h1{
        font-size: 30px;
    }

    .dest-hero p{
        font-size: 16px;
        line-height: 1.7;
    }

    .hero-subtitle{
        font-size: 11px;
        letter-spacing: 2px;
    }

    .btn-gold{
        width: 100%;
        max-width: 260px;
    }
}



/* LUXURY STRIP */
.luxury-strip {
  margin-top: 40px;
  background: #000;
  color: #fff;
  padding: 80px 0;
}

.luxury-strip h2 {
  color: gold;
}



/* DESTINATION CARD */
/* TITLE */
.section-title {
  font-family: 'Playfair Display';
  font-size: 28px;
  color: #d4af37;
  margin-bottom: 30px;
}

/* GRID */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ITEM */
.dest-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.dest-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.5s;
}

/* HOVER ZOOM */
.dest-item:hover img {
  transform: scale(1.1);
}

/* OVERLAY */
.dest-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  opacity: 0;
  transition: 0.4s;
}

.dest-item:hover .overlay {
  opacity: 1;
}

/* BUTTON */
.btn-gold {
  background: linear-gradient(45deg, #d4af37, #f1c40f);
  border: none;
  padding: 8px 20px;
  border-radius: 30px;
  color: #000;
  margin-top: 10px;
  transition: 0.3s;
}

.btn-gold:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .dest-grid {
    grid-template-columns: 1fr;
  }
}
/* BUTTON */

/* PARALLAX */



.parallax {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
               url('../images/destination/tajmahal.jpg') center/cover fixed;
 
  padding: 120px 0;
  color: #fff;
}

.parallax h2 {
  font-family: 'Playfair Display';
  font-size: 40px;
}


/* .parallax {
    background: linear-gradient(rgba(0, 0, 0, 0.266), rgba(0, 0, 0, 0.337)),
             url('../images/destination/tajmahal.jpg') center/cover fixed;
 
  padding: 100px 0;
  color: #fff;
} */

/* WHY */
.why-box {
  background: #fff;
  padding: 40px 20px;
  border-radius: 15px;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.why-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section-title {
  font-family: 'Playfair Display';
  margin-bottom: 20px;
}

/* CTA */
/* .cta {
  background: linear-gradient(135deg, #000, #111);
  color: #fff;
  padding: 80px 0;
}
 */





 
/* ==========================
   LUXURY CTA SECTION
========================== */
.destination-cta{
    padding:80px 0;
    background:#f8f9fb;
}

.cta-box{
    background:linear-gradient(135deg,#081225,#1b2940);
    border-radius:35px;
    padding:90px 50px;
    text-align:center;
    overflow:hidden;
    position:relative;
}

.cta-box h2{
    font-size:50px;
    line-height:1.1;
    color:#fff;
    font-family:'Playfair Display',serif;
    font-weight:700;
    margin:25px 0;
}

.cta-box p{
    color:#e5e7eb;
    font-size:20px;
    margin-bottom:40px;
}

.cta-badge{
    display:inline-block;
    background:#c19a6b;
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    font-size:18px;
    font-weight:500;
}

.cta-btn-primary{
    display:inline-block;
    background:#c19a6b;
    color:#fff;
    text-decoration:none;
    padding:20px 55px;
    border-radius:16px;
    font-size:20px;
    font-weight:600;
    transition:.3s;
}

.cta-btn-primary:hover{
    background:#d4a76f;
    color:#fff;
}

@media(max-width:768px){

    .cta-box{
        padding:50px 25px;
    }

    .cta-box h2{
        font-size:38px;
    }

    .cta-box p{
        font-size:17px;
    }

    .cta-btn-primary{
        width:100%;
        font-size:18px;
        padding:15px 20px;
    }

}



/* ==========================
   LUXURY TOUR POPUP
========================== */
/* 