/*
  Fariyas Resort Lonavla - Main Stylesheet
  Premium, responsive, mobile-first, luxury design
*/

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 119, 101, 0.7);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 119, 101, 0);
  }
}

:root {
  --primary: #bfa16a;
  --primary-dark: #a88a4a;
  --secondary: #2d2d2d;
  --bg: #f8f6f2;
  --text: #222;
  --accent: #e5c07b;
  --white: #fff;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --radius: 1.2rem;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', Arial, sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

/* Header & Navigation */
.landing-header {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.4s ease;
}

.home-page .landing-header {
  background-color: transparent;
}

.landing-header.scrolled,
body:not(.home-page) .landing-header {
  background-color: #1a2634; /* Dark blue, almost black */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.landing-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-menu-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-links svg {
  display: none; /* Hidden on desktop */
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--white);
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-actions .btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: none;
}
.header-actions .btn-primary.pulse {
  animation: pulse-animation 2s infinite;
}


.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}
.header-phone svg {
  stroke: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
  position: relative; /* For stacking context */
}
.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1040;
}
.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}


/* Mobile Nav & Responsive */
@media (max-width: 992px) {
  .nav-menu-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: #1a2634;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1050; /* Needs to be higher than hero */
  }
  
  .nav-menu-wrapper.open {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    align-items: flex-start;
  }
  
  .nav-links a {
    font-size: 1.2rem;
    text-shadow: none;
  }
  
  .nav-links svg {
    display: inline-block; /* Show icons on mobile */
    stroke: var(--primary);
  }

  .header-actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .header-actions .btn {
    width: 100%;
    text-align: center;
  }

  .nav-toggle {
    display: block;
  }
  
  .nav-toggle[aria-expanded="true"] span {
     background-color: var(--primary);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}


/* Hero Section */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets\images\Fariyas-Lonavala-Aerial-790x500.jpg') center/cover no-repeat;
  opacity: 0.7;
  z-index: 0;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  padding: 2rem 1rem;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
.hero .luxury {
  color: var(--primary);
  font-style: italic;
}
.hero .subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--accent);
}

/* Buttons */
.btn, .btn-link {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  margin: 0.5rem 0.5rem 0 0;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(191,161,106,0.12);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(191,161,106,0.18);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--primary);
  color: var(--white);
}
.btn-link {
  background: none;
  color: var(--primary);
  padding: 0.5rem 0;
  font-weight: 600;
  border: none;
  box-shadow: none;
}
.btn-link:hover, .btn-link:focus {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Section Layouts */
.section {
  padding: 3.5rem 0 2.5rem 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Rooms Preview */
.rooms-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: visible;
  max-width: 320px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition), box-shadow var(--transition);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 2.2rem;
}
.room-card:hover, .room-card:focus-within {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(191,161,106,0.18);
}
.room-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 2px solid var(--primary);
}
.room-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin: 1rem 0 0.5rem 0;
}
.room-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}
.room-card .btn-link {
  margin-bottom: 0.2rem;
  margin-top: 0.5rem;
  position: relative;
  z-index: 2;
  color: var(--primary);
  background: var(--white);
  font-weight: 600;
  border-radius: 1.2rem;
  padding: 0.6rem 1.2rem;
  box-shadow: 0 2px 8px rgba(191,161,106,0.08);
  display: inline-block;
  border: 1px solid var(--primary);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.room-card .btn-link:hover, .room-card .btn-link:focus {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(191,161,106,0.16);
  text-decoration: none;
}

/* Amenities Preview */
.amenities-preview .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.amenities-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
  width: 100%;
}
.amenity {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  max-width: 260px;
  flex: 1 1 200px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  margin: 0 auto;
}
.amenity:hover, .amenity:focus-within {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px rgba(191,161,106,0.14);
}
.amenity img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 1.2rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px rgba(44,62,80,0.10);
}
.amenity h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.amenity p {
  font-size: 0.98rem;
  color: #555;
}

/* Gallery Preview */
.gallery-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  margin: 2rem 0;
  scroll-snap-type: x mandatory;
}
.gallery-slider img {
  width: 320px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-slider img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(191,161,106,0.14);
}

/* Testimonials */
.testimonials-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  margin: 2rem 0;
  scroll-snap-type: x mandatory;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  min-width: 320px;
  max-width: 400px;
  scroll-snap-align: start;
  font-style: italic;
  color: #444;
  position: relative;
}
.testimonial footer {
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
  margin-top: 1rem;
}

/* Contact CTA */
.contact-cta {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  border-radius: var(--radius);
  margin: 3rem 0 0 0;
  padding: 3rem 1rem;
  box-shadow: var(--shadow);
}
.contact-cta .btn {
  margin: 1rem 0.5rem 0 0;
}

/* Footer */
.site-footer {
  background: var(--secondary);
  color: var(--white);
  padding: 2.5rem 0 1rem 0;
  margin-top: 3rem;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-brand {
  flex: 1 1 220px;
}
.footer-brand img {
  margin-bottom: 1rem;
}
.footer-link {
  display: block;
  color: var(--accent);
  text-decoration: none;
  margin: 0.2rem 0;
  font-size: 1rem;
}
.footer-link:hover, .footer-link:focus {
  color: var(--primary);
  text-decoration: underline;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  transition: color var(--transition);
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--primary);
}
.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.social-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}
.social-icon:hover img, .social-icon:focus img {
  filter: brightness(1) invert(0.7) sepia(1) hue-rotate(20deg) saturate(2);
}
.footer-bottom {
  text-align: center;
  color: #bbb;
  font-size: 0.95rem;
  margin-top: 2rem;
}

/* WhatsApp Floating Button */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.call-float {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(8px) saturate(180%);
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(45,190,96,0.18);
  border: 1.5px solid rgba(45,190,96,0.18);
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  position: relative;
  animation: call-pulse 1.5s infinite cubic-bezier(.4,0,.2,1);
}

.call-float img {
  filter: drop-shadow(0 2px 8px rgba(45,190,96,0.10));
}

@keyframes call-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(45,190,96,0.25), 0 4px 24px rgba(45,190,96,0.18);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(45,190,96,0), 0 4px 24px rgba(45,190,96,0.18);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(45,190,96,0), 0 4px 24px rgba(45,190,96,0.18);
  }
}

.whatsapp-float {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(8px) saturate(180%);
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(37,211,102,0.18);
  border: 1.5px solid rgba(37,211,102,0.18);
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-top: 0;
}

.whatsapp-float img {
  filter: drop-shadow(0 2px 8px rgba(37,211,102,0.10));
}

.whatsapp-float:hover, .whatsapp-float:focus {
  background: rgba(255,255,255,0.32);
  box-shadow: 0 8px 32px rgba(37,211,102,0.24);
}

.call-float:hover, .call-float:focus {
  background: #7c7c7c;
  box-shadow: 0 8px 32px rgba(45,190,96,0.24);
}
.whatsapp-float svg, .call-float svg {
  width: 36px;
  height: 36px;
  display: block;
}
@media (max-width: 600px) {
  .floating-actions {
    bottom: 1rem;
    right: 1rem;
    gap: 0.7rem;
  }
  .whatsapp-float, .call-float {
    width: 48px;
    height: 48px;
    padding: 0.4rem;
  }
  .whatsapp-float svg, .call-float svg {
    width: 28px;
    height: 28px;
  }
}

/* Responsive Layouts */
@media (max-width: 900px) {
  .rooms-cards, .amenities-list, .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .gallery-slider, .testimonials-slider {
    gap: 1rem;
  }
  .room-card {
    max-width: 100%;
    margin-bottom: 2rem;
  }
  .amenities-list {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .amenity {
    max-width: 100%;
    margin: 0 auto;
  }
  .amenity img {
    height: 160px;
  }
}
@media (max-width: 600px) {
  html { font-size: 15px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-content { padding: 1.2rem 0.2rem; }
  .room-card img { height: 140px; }
  .testimonial, .amenity, .room-card { padding: 1.2rem 0.7rem; }
  .contact-cta { padding: 2rem 0.5rem; }
  .site-footer { padding: 1.5rem 0 0.5rem 0; }
  .room-card { padding-bottom: 2.5rem; }
  .room-card .btn-link {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    font-size: 1.05rem;
    width: 90%;
    text-align: center;
  }
  .amenity img {
    height: 120px;
  }
}

/* Animations & Micro-interactions */
.section, .room-card, .amenity, .gallery-slider img, .testimonial {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.section.visible, .room-card.visible, .amenity.visible, .gallery-slider img.visible, .testimonial.visible {
  opacity: 1;
  transform: none;
}

.resort-welcome-glass {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 0 2.5rem 0;
  background: none;
}
.resort-welcome-card {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.12);
  border: 1px solid rgba(191,161,106,0.13);
  max-width: 700px;
  width: 95%;
  margin: 0 auto;
  padding: 2.5rem 2rem 2.2rem 2rem;
  position: relative;
}
.resort-welcome-content {
  text-align: center;
}
.resort-welcome-breadcrumb {
  color: #bfa16a;
  font-size: 1rem;
  margin-bottom: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.resort-welcome-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a2634;
}
.resort-welcome-subtitle {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.resort-welcome-desc {
  font-size: 1.08rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 0;
}
.resort-welcome-desc .highlight {
  color: #bfa16a;
  font-weight: 600;
  background: rgba(191,161,106,0.08);
  border-radius: 0.5em;
  padding: 0.1em 0.4em;
  display: inline-block;
}
@media (max-width: 600px) {
  .resort-welcome-card {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    max-width: 99%;
  }
  .resort-welcome-title {
    font-size: 1.2rem;
  }
  .resort-welcome-subtitle {
    font-size: 1rem;
  }
  .resort-welcome-desc {
    font-size: 0.98rem;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0 1.5rem 0;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(44,62,80,0.10);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s cubic-bezier(.4,0,.2,1);
  background: #f8f6f2;
}
.gallery-grid img:hover, .gallery-grid img:focus {
  transform: scale(1.045);
  box-shadow: 0 8px 32px rgba(44,62,80,0.16);
  z-index: 2;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .gallery-grid img {
    height: 180px;
  }
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid img {
    height: 120px;
  }
}

/* Glassmorphic Room Card Styles */
.rooms-glass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}
.room-card-glass {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18);
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.3);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  min-height: 520px;
}
.room-card-glass:hover, .room-card-glass:focus-within {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 48px rgba(44, 62, 80, 0.22);
}
.room-img-glass {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  border-bottom: 0;
}
.room-info-glass {
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  color: #222;
}
.room-info-glass h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin: 0 0 0.7rem 0;
  color: #1a2634;
}
.room-info-glass p {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  color: #333;
}
.room-meta-glass {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.stars-glass {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #bfa16a;
  font-weight: 600;
  gap: 0.2rem;
}
.badge-glass {
  background: rgba(191,161,106,0.12);
  color: #bfa16a;
  border-radius: 1rem;
  padding: 0.2rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.btn-glass {
  margin-top: auto;
  display: inline-block;
  background: #bfa16a;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  border-radius: 2rem;
  padding: 0.85rem 2.2rem;
  box-shadow: 0 2px 12px rgba(191,161,106,0.10);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
}
.btn-glass:hover, .btn-glass:focus {
  background: #a88a4a;
  color: #fff;
  box-shadow: 0 8px 32px rgba(191,161,106,0.18);
}
@media (max-width: 600px) {
  .room-img-glass { height: 140px; }
  .room-info-glass { padding: 1.2rem 0.7rem 1rem 0.7rem; }
}

.room-pricing-wrapper {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(191, 161, 106, 0.3);
}

.monsoon-deal-badge {
  background-color: #e74c3c; /* Red color for a deal */
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.price-option {
  margin-bottom: 0.8rem;
  background-color: rgba(191, 161, 106, 0.05); /* Light golden background */
  padding: 0.7rem;
  border-radius: 8px;
}

.price-option p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}

.price-option p.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.85rem;
}

.price-option p.new-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #bfa16a;
  margin-top: 0.3rem;
}

.price-option p.taxes {
  font-size: 0.8rem;
  color: #777;
  margin-top: 0.3rem;
}

.booking-note {
  font-size: 0.9rem;
  color: #777;
  background-color: rgba(191, 161, 106, 0.03);
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(191, 161, 106, 0.1);
} 