/* ---------------------------------------------------------
   GLOBAL COLORS & BASE
--------------------------------------------------------- */
:root {
  --accent: #1e7a3a;
  --accent-2: #2fa86a;
  --muted: #6c757d;
  --card-radius: 14px;
}

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  background: #f7fbf6;
  color: #163a2b;
  margin: 0;
  padding: 0;
}

/* ---------------------------------------------------------
   HERO SECTION
--------------------------------------------------------- */
.hero {
  height: 85vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 27, 16, 0.25), rgba(6, 27, 16, 0.65));
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 15px;
}

.hero-inner h1 {
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
}

.hero-bg.faded {
  opacity: 0;
}

/* Smaller hero for mobiles */
@media (max-width: 576px) {
  .hero {
    height: 70vh;
    min-height: 380px;
  }
}

/* HERO BACKGROUND IMAGES */
#heroBg1 { background-image: url('../Assets/Banner1.jpg'); }
#heroBg2 { background-image: url('../Assets/Banner2.jpg'); }
#heroBg3 { background-image: url('../Assets/Banner3.jpg'); }

/* ---------------------------------------------------------
   AMENITY CARDS
--------------------------------------------------------- */
.amenity-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .amenity-card { min-height: auto; }
}

/* ---------------------------------------------------------
   SERVICE PHOTO CARDS
--------------------------------------------------------- */
.service-photo-card {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 15px;
  color: white;
  transition: 0.3s ease-out;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.service-text {
  position: relative;
  z-index: 2;
}

.service-text h5 {
  margin: 0;
  font-weight: 700;
}

.service-text p {
  margin: 2px 0 0;
  font-size: 14px;
}

.service-photo-card:hover {
  transform: scale(1.04);
}

/* Responsive service card height */
@media (max-width: 992px) { .service-photo-card { height: 200px; } }
@media (max-width: 768px) { .service-photo-card { height: 180px; } }
@media (max-width: 576px) { .service-photo-card { height: 160px; padding: 12px; } }

/* ---------------------------------------------------------
   GALLERY IMAGE FIX
--------------------------------------------------------- */
.gallery img,
.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.img-box {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 12px;
}

@media (max-width: 576px) {
  .img-box { height: 190px; }
}

/* ---------------------------------------------------------
   SUNDARBAN BANNER
--------------------------------------------------------- */

/* ---------------------------------------------------------
   SUNDARBAN BANNER
--------------------------------------------------------- */
.sundarban-banner {
  background-image: url('../Assets/Banner-home-Sundarbans.jpg') !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  max-width: calc(100% - 1in);
  height: 55vh;
  border-radius: 12px;
  margin: 40px auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sundarban-banner h2,
.sundarban-banner p {
  color: white;
  text-shadow: 0px 3px 8px rgba(0,0,0,0.8);
}

/* Tablet */
@media (max-width: 768px) {
  .sundarban-banner {
    height: 50vh;
    border-radius: 10px;
  }
}

/* Mobile Image Change */
@media (max-width: 576px) {
  .sundarban-banner {
    background-image: url('../Assets/Banner-home-Sundarbans-mobile.jpg') !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: top center !important;
    height: 43vh;
    border-radius: 8px;
    padding: 15px;
  }
}

/* Extra Small Screens */
@media (max-width: 420px) {
  .sundarban-banner {
    height: 34vh;
    background-position: top !important;
  }
}
