/* ===== Home page – Hero, About, Rooms, Services, Testimonials (sab ek sath) ===== */

/* Hero */
.hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--bg-creme);
}
.hero::before {
  content: '';
  position: absolute;
  top: 5%;
  left: 5%;
  right: 5%;
  bottom: 0;
  background: var(--img-hero) center/cover no-repeat;
  border-radius: 20px 20px 0 0;
  filter: brightness(0.85);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(28,27,25,0.7) 100%);
  border-radius: 20px 20px 0 0;
  top: 5%;
  left: 5%;
  right: 5%;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 40px 20px;
}
.hero-tag {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
  font-family: 'Inter', sans-serif;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--white);
  margin: 0 0 32px;
  line-height: 1.1;
  text-shadow: none;
  font-family: 'Playfair Display', serif;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero .btn-primary {
  background: var(--bg-creme);
  color: var(--navy-dark);
  border-color: var(--bg-creme);
}
.hero .btn-primary:hover {
  background: transparent;
  color: var(--bg-creme);
  border-color: var(--bg-creme);
}
.hero .btn-secondary {
  background: transparent;
  color: var(--bg-creme);
  border-color: var(--bg-creme);
}
.hero .btn-secondary:hover {
  background: var(--bg-creme);
  color: var(--navy-dark);
}

/* About */
.about { padding: 100px 0; background: var(--bg-creme); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-desc {
  color: var(--gray);
  margin: 0 0 24px;
  line-height: 1.7;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.stat-card {
  text-align: left;
  padding: 0;
  background: transparent;
  border: none;
}
.stat-card:hover {
  transform: none;
  box-shadow: none;
}
.stat-card i {
  color: var(--orange);
  font-size: 1.2rem;
  margin-bottom: 12px;
  display: block;
}
.stat-num { display: block; font-size: 2.5rem; font-weight: 400; color: var(--navy-dark); font-family: 'Playfair Display', serif; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.about-images {
  position: relative;
  min-height: 600px;
}
.about-img {
  position: absolute;
  background-size: cover;
  background-position: center;
}
.about-img-1 { width: 60%; height: 60%; top: 0; left: 0; z-index: 2; border-radius: 0 40px 0 0; }
.about-img-2 { width: 50%; height: 50%; bottom: 0; right: 0; z-index: 3; border-radius: 0 0 0 40px; }
.about-img-3 { display: none; }
.about-img-4 { width: 70%; height: 75%; top: 10%; right: 10%; z-index: 1; filter: grayscale(30%); opacity: 0.6; }

/* Rooms */
.rooms { padding: 100px 0; background: var(--white); }
.room-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.room-card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  transition: all var(--transition);
}
.room-card:hover {
  transform: translateY(-5px);
}
.room-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 0 40px 0 0;
}
.room-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}
.room-card:hover .room-img { transform: scale(1.05); }
.room-img-1 { background-image: var(--img-room1); }
.room-img-2 { background-image: var(--img-room2); }
.room-img-3 { background-image: var(--img-room3); }
.room-price {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: var(--bg-creme);
  color: var(--navy-dark);
  padding: 12px 20px;
  font-weight: 500;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
}
.room-body { padding: 0; }
.room-body h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  color: var(--navy-dark);
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}
.room-stars { display: none; }
.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.room-features i { color: var(--orange); margin-right: 8px; font-size: 1rem; }
.room-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Services */
.services { padding: 100px 0; background: var(--white); }
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.service-card {
  background: transparent;
  padding: 0;
  border-radius: 0;
  text-align: left;
  transition: all var(--transition);
  border: none;
  box-shadow: none;
}
.service-card:hover {
  box-shadow: none;
  transform: translateY(-5px);
}
.service-card i {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-creme);
}
.service-card h3 { margin: 0 0 16px; color: var(--navy-dark); font-size: 1.35rem; font-family: 'Playfair Display', serif; font-weight: 400; }
.service-card p { margin: 0; color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }

/* Testimonials */
.testimonials {
  padding: 100px 0;
  position: relative;
  background: var(--bg-creme);
  overflow: hidden;
}
.testimonials-bg {
  display: none; /* Removed heavy background */
}
.testimonial-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: var(--white);
  padding: 32px 30px;
  border-radius: 2px;
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: 0 10px 40px rgba(0,0,0,0.02);
  color: var(--navy-dark);
  position: relative;
  transition: all var(--transition);
  
}
.testimonial-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  transform: translateY(-5px);
}
.testimonial-text {
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}
.testimonial-quote {
  position: absolute;
  top: 30px;
  right: 30px;
  width: auto;
  height: auto;
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  color: var(--orange);
  opacity: 0.1;
  line-height: 1;
  background: none;
}
.testimonial-quote::before {
  content: '"';
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  border: none;
  color: var(--white);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
}
.testimonial-author strong { display: block; color: var(--navy-dark); font-size: 1.05rem; font-weight: 500; font-family: 'Playfair Display', serif; }
.testimonial-author span { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Home responsive */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { max-width: 600px; margin: 0 auto; min-height: 450px; }
  .room-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero { min-height: 70vh; }
  .about-images { display: none; }
  .about { padding: 40px 0 20px; }
  .rooms { padding: 20px 0 60px; }
  .stats { grid-template-columns: 1fr; gap: 20px; margin-bottom: 0; }
  .room-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .service-cards { grid-template-columns: 1fr; }
  .testimonial-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.75rem; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .about-img { min-height: 120px; }
  .room-btns { flex-direction: column; }
  .room-btns .btn { width: 100%; justify-content: center; }
}
