/* ================================================
   GANGA SADAN SRISAILAM — MAIN STYLESHEET
   ================================================ */

:root {
  --saffron: #FF6B00;
  --saffron-dark: #D85A00;
  --saffron-light: #FF8C2A;
  --gold: #C9920A;
  --gold-light: #F2C94C;
  --maroon: #6B0F1A;
  --maroon-light: #8B1A2A;
  --cream: #FFF8EE;
  --cream-dark: #F5ECD8;
  --text-dark: #1A0A00;
  --text-mid: #4A2E00;
  --text-light: #7A5C3A;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(180,80,0,0.12);
  --shadow-lg: 0 12px 48px rgba(180,80,0,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Hind', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- TOP BAR ---- */
.topbar {
  background: var(--maroon);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-call {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.topbar-call:hover { color: #fff; }

/* ---- HEADER ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,248,238,0.97);
  border-bottom: 2px solid var(--saffron);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(180,80,0,0.15);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-om {
  font-size: 36px;
  color: var(--saffron);
  line-height: 1;
}
.logo-title {
  font-family: 'Yatra One', cursive;
  font-size: 22px;
  color: var(--maroon);
  line-height: 1.1;
}
.logo-sub {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  font-size: 15px;
}
.nav a:hover, .nav a.active { color: var(--saffron); }
.nav .btn-book {
  background: var(--saffron);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
}
.nav .btn-book:hover { background: var(--saffron-dark); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--maroon);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--maroon) 0%, #3D0A10 40%, #7A2010 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(255,107,0,0.2) 0%, transparent 70%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,107,0,0.2);
  border: 1px solid rgba(255,107,0,0.4);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-family: 'Yatra One', cursive;
  font-size: clamp(42px, 7vw, 80px);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-brand {
  color: var(--saffron-light);
  text-shadow: 0 0 40px rgba(255,140,42,0.5);
}
.hero-sub {
  color: rgba(255,248,238,0.8);
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff !important;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.btn-primary:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
.btn-primary.large { padding: 18px 40px; font-size: 18px; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cream) !important;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid rgba(255,248,238,0.4);
  transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--saffron); color: var(--saffron) !important; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--saffron);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid var(--saffron);
  transition: var(--transition);
}
.btn-outline:hover { background: var(--saffron); color: #fff; }
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-light);
  font-size: 24px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- FEATURES STRIP ---- */
.features-strip {
  background: var(--saffron);
  padding: 24px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feat {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.feat-icon { font-size: 28px; }
.feat strong { display: block; font-size: 15px; font-weight: 700; }
.feat span { font-size: 12px; opacity: 0.85; }

/* ---- SECTION COMMONS ---- */
.section { padding: 80px 0; }
.bg-light { background: var(--cream-dark); }
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header.light h2 { color: var(--cream); }
.section-label {
  display: inline-block;
  color: var(--saffron);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-header h2 {
  font-family: 'Yatra One', cursive;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--maroon);
  margin-bottom: 16px;
}
.section-header p {
  color: var(--text-light);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}
h2 span { color: var(--saffron); }

/* ---- ABOUT HOME ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-box {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--maroon), var(--saffron));
  padding: 4px;
  box-shadow: var(--shadow-lg);
}
.about-img-inner {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius-lg) - 4px);
  background: linear-gradient(135deg, #2A0A0A, #5A1A00);
  display: flex;
  align-items: center;
  justify-content: center;

}
.temple-art { position: relative; display: flex; align-items: center; justify-content: center; width: 200px; height: 200px; }
.mandala {
  position: absolute;
  width: 180px; height: 180px;
  border: 2px solid rgba(255,140,42,0.3);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}
.mandala::before {
  content: '';
  position: absolute;
  inset: 15px;
  border: 2px solid rgba(255,140,42,0.2);
  border-radius: 50%;
}
.mandala::after {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(255,140,42,0.15);
  border-radius: 50%;
}
@keyframes spin { to { transform: rotate(360deg); } }
.temple-icon { font-size: 80px; position: relative; z-index: 2; }
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--saffron);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  font-size: 12px;
  z-index: 2;
}
.badge-num {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-light);
}
.about-text h2 {
  font-family: 'Yatra One', cursive;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--maroon);
  margin-bottom: 20px;
}
.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 16px;
}
.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0;
}
.check-list li { font-size: 14px; color: var(--text-mid); font-weight: 500; }

/* ---- ROOMS ---- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.room-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-card.featured { border: 2px solid var(--saffron); }
.room-img {
  height: 200px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.room-img-1 { background: linear-gradient(135deg, #4A1A00, #8B3A00); }
.room-img-2 { background: linear-gradient(135deg, #0A2A4A, #1A4A7A); }
.room-img-3 { background: linear-gradient(135deg, #1A3A0A, #2A5A1A); }
.room-img::before {
  content: '🛏️';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  font-size: 52px;
  display: none;
}
.room-tag {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.3);
}
.room-tag.ac { background: rgba(26,74,122,0.7); }
.room-popular {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--saffron);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}
.room-info { padding: 20px; }
.room-info h3 { font-family: 'Yatra One', cursive; font-size: 20px; color: var(--maroon); margin-bottom: 8px; }
.room-info p { color: var(--text-light); font-size: 14px; margin-bottom: 14px; }
.room-features { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.room-features span {
  background: var(--cream-dark);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-mid);
}
.btn-book-sm {
  display: block;
  text-align: center;
  background: #25D366;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}
.btn-book-sm:hover { background: #1da851; }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ---- WHY US ---- */
.why-us { background: linear-gradient(135deg, var(--maroon), #3D0A10); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.why-icon { font-size: 36px; margin-bottom: 14px; }
.why-card h3 { color: var(--gold-light); font-size: 18px; margin-bottom: 10px; }
.why-card p { color: rgba(255,248,238,0.75); font-size: 14px; }

/* ---- CTA ---- */
.cta-section {
  background: var(--cream-dark);
  text-align: center;
}
.cta-wrap { max-width: 700px; margin: 0 auto; }
.cta-deco { font-size: 56px; color: var(--saffron); opacity: 0.3; margin-bottom: -10px; }
.cta-section h2 { font-family: 'Yatra One', cursive; font-size: clamp(28px,4vw,44px); color: var(--maroon); margin-bottom: 16px; }
.cta-section p { color: var(--text-light); font-size: 17px; margin-bottom: 32px; }

/* ---- TESTIMONIALS ---- */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--saffron);
}
.stars { color: #F2C94C; font-size: 20px; margin-bottom: 14px; }
.testi-card p { color: var(--text-light); font-size: 14px; margin-bottom: 20px; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  background: var(--saffron);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}
.testi-author strong { display: block; font-size: 15px; color: var(--text-dark); }
.testi-author span { font-size: 12px; color: var(--text-light); }

/* ---- FOOTER ---- */
.footer {
  background: var(--text-dark);
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}
.footer-pattern {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--maroon), var(--saffron), var(--gold), var(--saffron), var(--maroon));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-title { color: var(--cream); }
.footer-brand .logo-sub { color: rgba(255,248,238,0.5); }
.footer-brand p { color: rgba(255,248,238,0.6); font-size: 14px; margin-bottom: 20px; line-height: 1.7; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff !important;
  padding: 10px 20px; border-radius: 50px;
  font-weight: 600; font-size: 14px;
  text-decoration: none; transition: var(--transition);
}
.btn-wa:hover { background: #1da851; }
.footer-links h4, .footer-contact h4 {
  color: var(--gold-light);
  font-size: 15px;
  margin-bottom: 16px;
  font-family: 'Yatra One', cursive;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,248,238,0.65); text-decoration: none; font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--saffron); }
.footer-contact p { color: rgba(255,248,238,0.65); font-size: 14px; margin-bottom: 10px; }
.footer-contact a { color: var(--gold-light); text-decoration: none; }
.footer-contact a:hover { color: var(--saffron); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { color: rgba(255,248,238,0.4); font-size: 13px; }
.footer-seo { font-size: 11px !important; margin-top: 6px; }

/* ---- WHATSAPP FLOAT ---- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  color: #fff;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
  overflow: hidden;
}
.wa-float span {
  display: none;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.wa-float:hover {
  width: auto;
  padding: 0 24px;
  border-radius: 50px;
}
.wa-float:hover span { display: block; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--maroon), #3D0A10);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,107,0,0.15) 0%, transparent 70%);
}
.page-hero .section-label { color: var(--gold-light); }
.page-hero h1 {
  font-family: 'Yatra One', cursive;
  font-size: clamp(32px,5vw,56px);
  color: var(--cream);
  margin-bottom: 12px;
}
.page-hero p { color: rgba(255,248,238,0.75); font-size: 17px; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: rgba(255,248,238,0.5); font-size: 13px; margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold-light); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav {
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-top: 2px solid var(--saffron);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav a { padding: 12px 16px; }
  .about-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-btns { flex-direction: column; }
  .about-badge-float { bottom: -10px; right: 0; }
  .topbar { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .section { padding: 120px 0; }
}


/* HERO SECTION FULL CSS */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* Background Image + Overlay */
  background: linear-gradient(rgba(0, 0, 0, 0.263), rgba(0, 0, 0, 0.247)),
              url('1.jpg') no-repeat center center/cover;
}

/* Overlay (optional extra layer) */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}



/* Room Image Common */
.room-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 10px 10px 0 0;
}

/* Room 1 Image */
.room-img-1 {
  background-image: url('one.jpg');
}

/* Room 2 Image */
.room-img-2 {
  background-image: url('two.jpg');
}

/* Room 3 Image */
.room-img-3 {
  background-image: url('three.jpg');
}

.room-full-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
}

.room-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}

.room-full-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
}

.room-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-full-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
}

.room-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

/* Hover Zoom Effect 🔥 */
.gallery-item:hover img {
  transform: scale(1.1);
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 10px;
  text-align: center;
}