
body{
  background:linear-gradient(180deg,var(--dark2),#001820);
  color:var(--text);
}



/* ================= HERO SPLIT ================= */
.hero2{
  display:grid;
  grid-template-columns:1fr 1.2fr 1fr;
  gap:24px;
  align-items:center;
  margin-bottom:70px;
}

/* HERO IMAGE */
.hero-img2{
  position:relative;
  height:360px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 20px 45px rgba(0,0,0,0.6);
  text-decoration:none;
}

.hero-img2 img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.9s ease;
}

/* OVERLAY */
.hero-img2::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(1,29,36,0.75),
    rgba(1,29,36,0.25)
  );
}

.hero-img2:hover img{
  transform:scale(1.12);
}

/* LABEL */
.hero-label2{
  position:absolute;
  bottom:20px;
  left:20px;
  z-index:2;
  font-size:0.95rem;
  font-weight:700;
  color:var(--gold);
  letter-spacing:0.5px;
  backdrop-filter:blur(4px);
  background:rgba(0,0,0,0.5);
  padding:6px 14px;
  border-radius:8px;
}

/* CENTER TEXT */
.hero-text2{
  text-align:center;
  padding:20px;
}

.hero-text2 h1{
  margin:0;
  font-family:"Great Vibes", serif;
  font-size:3.6rem;
  color:var(--gold);
}

.hero-text2 p{
  margin-top:14px;
  line-height:1.7;
  color:#e6fbf6;
  font-size:1rem;
}

/* ================= SECTION TITLE ================= */
.section-title{
  margin:70px 0 16px;
}

.section-title h2{
  margin:0;
  font-family:"Great Vibes", serif;
  font-size:2.6rem;
  color:var(--gold);
}

.section-title p{
  margin-top:6px;
  color:#dff9f4;
}
.region {
  margin-top:60px;
}

.region .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.region h3 {
  font-size:2rem;
  color:var(--gold);
  margin-bottom:12px;
}

.region p {
  font-size:1rem;
  color: var(--reef-turquoise);
  margin-bottom:20px;
}

/* ================= GRID ================= */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* ================= CARD ================= */
.card{
  position:relative;
  height:340px;
  border-radius:22px;
  overflow:hidden;
  background:#000;
  box-shadow:0 18px 40px rgba(0,0,0,0.55);
}
.card-body h3,
.card-body h4 {
  margin:0;
  font-size:1.4rem;
  color:var(--gold);
  font-weight:700;
}


/* IMAGE */
.card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.9s ease;
}

/* CARD OVERLAY */
.card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(1,29,36,0.95),
    rgba(1,29,36,0.45),
    rgba(1,29,36,0.08)
  );
  z-index:1;
}

/* CARD BODY */
.card-body{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:24px;
  z-index:2;
  transform:translateY(40px);
  transition:transform 0.5s ease;
}

.card-body h3{
  margin:0;
  font-size:1.4rem;
  color:var(--gold);
  font-weight:700;
}

.card-body p{
  margin-top:8px;
  font-size:0.95rem;
  line-height:1.6;
  color:#e9fdf7;
}

/* BUTTON */
.btn{
  margin-top:16px;
  display:inline-block;
  padding:9px 20px;
  border-radius:30px;
  border:2px solid var(--gold);
  color:var(--gold);
  text-decoration:none;
  font-weight:700;
  font-size:0.85rem;
  opacity:0;
  transition:all 0.4s ease;
}

/* HOVER */
.card:hover img{
  transform:scale(1.18);
}

.card:hover .card-body{
  transform:translateY(0);
}

.card:hover .btn{
  opacity:1;
}

.btn:hover{
  background:var(--gold);
  color:#022730;
}

/* ================= RESPONSIVE ================= */
@media(max-width:1000px){
  .hero2{
    grid-template-columns:1fr;
  }
  .region .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-img2{
    height:280px;
  }

  .grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .grid{
    grid-template-columns:1fr;
  }
  .region .grid {
    grid-template-columns:1fr;
  }

  .hero-text2 h1{
    font-size:2.8rem;
  }
}
/* ===============================
   MOBILE: HERO
================================ */
@media (max-width: 768px) {
  .destinations-hero {
    padding: 60px 16px;
  }

  .destinations-hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .destinations-hero p {
    font-size: 0.95rem;
    max-width: 95%;
    margin: 12px auto 0;
  }
}
/* ===============================
   MOBILE: GRID
================================ */
@media (max-width: 768px) {
  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
/* ===============================
   MOBILE: DESTINATION CARDS
================================ */
@media (max-width: 768px) {
  .destination-card {
    height: auto;
    border-radius: 18px;
  }

  .destination-card img {
    height: 220px;
    object-fit: cover;
  }

  .destination-card-content {
    padding: 18px 16px 20px;
  }
}
@media (max-width: 768px) {
  .destination-card h3 {
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .destination-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}
@media (max-width: 768px) {
  .destination-card .btn,
  .destination-card .book-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 12px 0;
    margin-top: 14px;
  }
}
.destinations-page {
  overflow-x: hidden;
}
/* DESTINATIONS HERO STYLE */
.destinations-hero {
  background: linear-gradient(
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.55)
    ),
    url("../../images/destinations/hero.jpg") center / cover no-repeat;
}

.destinations-hero h1 {
  font-family: "Great Vibes", serif;
  font-size: 3rem;
  color: var(--gold);
  margin: 0;
}

.destinations-hero p {
  margin-top: 12px;
  font-size: 1rem;
  color: #eafaf6;
}
/* DESTINATION CARDS */
.destination-card {
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
  transition: transform 0.6s ease;
}

.destination-card:hover {
  transform: scale(1.02);
}

/* BACKGROUNDS */
.destination-card.zanzibar {
  background-image: url("../../images/destinations/zanzibar/hero.jpg");
}

.destination-card.mainland {
  background-image: url("../../images/destinations/mainland/hero.jpg");
}

/* OVERLAY */
.destination-overlay {
  width: 100%;
  padding: 28px;
  background: linear-gradient(
    to top,
    rgba(1,29,36,0.9),
    rgba(1,29,36,0.4),
    transparent
  );
}

.destination-overlay h2 {
  margin: 0;
  font-family: "Great Vibes", serif;
  font-size: 2.4rem;
  color: var(--gold);
}

.destination-overlay p {
  margin: 10px 0 18px;
  color: #eafaf6;
  font-size: 0.95rem;
}

.explore-btn {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 30px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
}
@media (max-width: 800px) {
  .destinations-split {
    grid-template-columns: 1fr;
  }

  .destination-card {
    height: 320px;
  }
}