/* === HERO SLIDER === */
.hero-slider {
  position: relative;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.35);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
}

.slider-dots span.active {
  background: #ffffff;
}



:root {
  --green: #2b8c50;
  --green-soft: #e5f5ea;
  --blue: #1f8dd6;
  --bg: #f6faf7;
  --bg-deep: #0b1720;
  --text: #111827;
  --muted: #6b7280;
  --card: #ffffff;
  --border: #e5e7eb;
  --radius-lg: 18px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.12);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #effaf5 0, #f5faf8 40%, #e7f3ff 100%);
  color: var(--text);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER / NAVBAR */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.brand-text h1 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.brand-text span {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--green);
}

.nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(120deg, var(--green), #3ab07a);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.35);
}

/* MOBILE NAV */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
}

/* HERO */

.hero {
  padding: 70px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--green);
  background: #ebfdf2;
  border: 1px solid #bbf7d0;
}

.hero-title {
  font-size: 32px;
  margin: 10px 0 6px;
}

.hero-sub {
  color: var(--muted);
  font-size: 14px;
  max-width: 460px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.btn-primary {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--green), #1f8d64);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.4);
}

.btn-outline {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--green);
  background: transparent;
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.hero-tagline {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

.hero-gallery {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.35);
}

.hero-gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 12px;
}

/* SECTIONS */

.section {
  padding: 30px 0;
}

.section-header {
  margin-bottom: 16px;
}

.section-title {
  font-size: 24px;
  margin: 0;
}

.section-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 540px;
}

/* CARDS / GRIDS */

.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.room-img {
  height: 170px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
}

.room-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.room-text {
  font-size: 13px;
  color: var(--muted);
}

.room-price {
  margin-top: 6px;
  font-weight: 800;
  font-size: 14px;
}

/* AMENITY GRID */

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.amenity-title {
  font-weight: 700;
  font-size: 14px;
}

.amenity-list {
  list-style: none;
  padding-left: 0;
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.amenity-list li {
  margin: 3px 0;
}

/* GALLERY GRID */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item::after {
  content: "View";
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #f9fafb;
  font-size: 11px;
}

/* CONTACT FORM */

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 22px;
}

label {
  font-size: 13px;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}

input,
select,
textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 13px;
  font-family: inherit;
}

textarea {
  min-height: 90px;
  resize: vertical;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid #d1d5db;
  padding: 18px 0 26px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

/* WHATSAPP FLOAT */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25d366;
  color: #fff;
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 60px;
  }
  .hero-title {
    font-size: 26px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* SLIDER ARROWS */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 20;
}

.slider-prev { left: 14px; }
.slider-next { right: 14px; }

.slider-arrow:hover {
  background: rgba(0,0,0,0.8);
}
/* HERO TEXT ANIMATION */
.hero-copy {
  animation: heroFadeUp 0.9s ease-out both;
}

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* LIGHTBOX OVERLAY */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox-backdrop img {
  max-width: 96%;
  max-height: 90%;
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  cursor: pointer;
}

/* MOBILE STICKY BOOKING BAR */
.mobile-booking-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 12px;
  background: #ffffff;
  border-top: 1px solid #d1d5db;
  display: none;
  z-index: 998;
}

.mobile-booking-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
}

.mobile-booking-inner button,
.mobile-booking-inner a {
  flex: 1;
  border-radius: 999px;
  border: none;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}

.mb-call {
  background: #0f172a;
  color: #fff;
}

.mb-wa {
  background: #25d366;
  color: #fff;
}

.mb-book {
  background: linear-gradient(135deg, var(--green), #1f8d64);
  color: #fff;
}

/* Sirf mobile par show karein */
@media (max-width: 768px) {
  .mobile-booking-bar {
    display: block;
  }

  body {
    padding-bottom: 58px; /* bar ke liye space */
  }
}


