/* Enhanced Typography Imports */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600&family=Playfair+Display:wght@600;700&display=swap');

/* Minimal floating icon-only FABs */
.fab.fab-icon {
  width: 3.5rem;
  height: 3.5rem;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(31, 38, 135, 0.18);
  font-size: 2rem;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}
.fab.fab-icon i {
  font-size: 2rem;
  margin: 0;
}
.fab.fab-icon.call {
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
}
.fab.fab-icon:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.22);
  opacity: 1;
}
@media (max-width: 600px) {
  .fab.fab-icon {
    width: 2.7rem;
    height: 2.7rem;
    font-size: 1.4rem;
  }
  .fab.fab-icon i {
    font-size: 1.4rem;
  }
}
/* Floating Action Buttons (FAB) */
.fab-container {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 1000;
}
.fab {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.5rem 0.85rem 1rem;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  border-radius: 2rem;
  box-shadow: 0 4px 18px rgba(31, 38, 135, 0.18);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  border: none;
  outline: none;
  cursor: pointer;
  opacity: 0.96;
  backdrop-filter: blur(6px);
}
.fab:hover {
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.22);
  transform: translateY(-2px) scale(1.04);
  opacity: 1;
}
.fab i {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fab span {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.fab.call {
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
  color: #fff;
}
.fab.call:hover {
  background: linear-gradient(90deg, #38f9d7 0%, #43e97b 100%);
}
@media (max-width: 600px) {
  .fab-container {
    right: 1rem;
    bottom: 1rem;
    gap: 0.7rem;
  }
  .fab {
    padding: 0.7rem 1.1rem 0.7rem 0.7rem;
    font-size: 1rem;
  }
  .fab i {
    font-size: 1.4rem;
  }
  .fab span {
    font-size: 0.98rem;
  }
}
:root {
  --primary-color: #ff4e8e;
  --primary-color-dark: #c9184a;
  --secondary-color: #5f72ff;
  --accent-color: #f9d923;
  --bg-gradient: linear-gradient(135deg, #f9d923 0%, #ff4e8e 50%, #5f72ff 100%);
  --glass-bg: rgba(255,255,255,0.7);
  --glass-blur: blur(12px);
  --text-dark: #1a1a2e;
  --text-light: #78716c;
  --white: #ffffff;
  --max-width: 1200px;
}
/* ...existing code... */
:root {
  --primary-color: #ff4e8e;
  --primary-color-dark: #c9184a;
  --secondary-color: #5f72ff;
  --accent-color: #f9d923;
  --bg-gradient: linear-gradient(135deg, #f9d923 0%, #ff4e8e 50%, #5f72ff 100%);
  --glass-bg: rgba(255,255,255,0.7);
  --glass-blur: blur(12px);
  --text-dark: #1a1a2e;
  --text-light: #78716c;
  --white: #ffffff;
  --max-width: 1200px;
}
.header {
  background: linear-gradient(120deg, #f9d923 0%, #ff4e8e 50%, #5f72ff 100%),
              linear-gradient(120deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.25) 100%),
              url("../images/main.jpg");
  background-blend-mode: overlay, multiply;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  position: relative;
}
.nav__bar {
  padding: 0.85rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(115deg, rgba(15,23,42,0.72), rgba(67,56,202,0.55), rgba(190,24,93,0.55));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2.2rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  transition: background 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}

nav.scrolled .nav__bar {
  background: linear-gradient(125deg, rgba(15,23,42,0.90), rgba(49,46,129,0.85), rgba(88,28,135,0.85));
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 10px 34px rgba(0,0,0,0.5);
}

/* Logo text simplified to ensure visibility */
.logo-text {
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 1px;
  color: #ffcc4d; /* high contrast gold tone */
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
  line-height: 1;
  text-shadow: 0 2px 6px rgba(0,0,0,0.55);
}
/* Ensure logo container does not constrain width or add background */
.logo {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  max-width: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* Nav links vibrant styling */
.nav__links a {
  color: #fff !important;
  font-weight: 500;
  letter-spacing: .3px;
  position: relative;
  text-shadow: 0 2px 6px rgba(0,0,0,0.45);
  transition: color .35s ease, text-shadow .35s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: linear-gradient(90deg,#f9d923,#ff4e8e,#5f72ff);
  border-radius: 2px;
  transition: width .4s ease;
}
.nav__links a:hover { color: #ffcc4d !important; text-shadow:0 4px 10px rgba(0,0,0,0.65); }
.nav__links a:hover::after { width: 100%; }

/* Book Now button refine inside nav */
.nav__btn.btn {
  background: linear-gradient(90deg,#ff4e8e,#5f72ff);
  box-shadow: 0 4px 18px rgba(255,78,142,0.4);
  font-weight:600;
  letter-spacing:.5px;
}
.nav__btn.btn:hover {
  background: linear-gradient(90deg,#5f72ff,#ff4e8e);
  box-shadow:0 6px 26px rgba(95,114,255,0.55);
}
.btn {
  padding: 0.75rem 2rem;
  outline: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background 0.3s, transform 0.2s;
}
.btn:hover {
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  transform: translateY(-2px) scale(1.04);
}
.room__card {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255,255,255,0.18);
  transition: box-shadow 0.3s;
}
.room__card:hover {
  box-shadow: 0 16px 48px 0 rgba(31, 38, 135, 0.18);
}
.room__card__icons span {
  display: inline-block;
  padding: 2px 8px;
  font-size: 1.5rem;
  background: var(--bg-gradient);
  color: var(--white);
  border-radius: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  cursor: pointer;
}
.service__list li{
  background: var(--glass-bg);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  transition: box-shadow 0.3s;
}
.service__list li:hover {
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.service__list li:hover span {
  background: linear-gradient(135deg, #5f72ff 0%, #ff4e8e 50%, #f9d923 100%);
  color: #fff;
  transform: scale(1.08);
  opacity: 1;
}
.footer {
  background: #f6f7fb;
  color: #333;
}
.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 1px;
}
.footer__links a {
  color: var(--white);
  opacity: 0.85;
  transition: 0.3s;
}
.footer__links a:hover {
  color: var(--accent-color);
  opacity: 1;
}

/* Gallery Grid (from gallery.css) */
.gallery__grid {
  display: grid;
  gap: 10px; /* Adjust gap between images as needed */
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Responsive columns */
  margin: 0 auto; /* Center the grid */
  max-width: 1200px; /* Limit max width for larger screens */
  padding: 0 10px; /* Add some padding */
}
.gallery__item {
  overflow: hidden; /* Hide overflow for contained images */
  position: relative; /* Position relative for image adjustment */
}
.gallery__item img {
  width: 100%; /* Full width images */
  height: 100%; /* Full height images */
  object-fit: cover; /* Ensure images cover the container */
  transition: transform 0.3s ease; /* Smooth transition for hover effect */
}
.gallery__item:hover img {
  transform: scale(1.1); /* Slight zoom on hover */
}
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #e82574;
  --primary-color-dark: #bc1c5c;
  --text-dark: #0c0a09;
  --text-light: #78716c;
  --white: #ffffff;
  --max-width: 1200px;
}

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

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

/* Top welcome strip */
.welcome-strip {
  width: 100%;
  background: linear-gradient(90deg, #0f172a 0%, #312e81 50%, #581c87 100%);
  color: #ffffff;
  text-align: center;
  padding: 10px 16px;
  font-weight: 600;
  letter-spacing: 0.6px;
  line-height: 1.6;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  z-index: 20;
  position: relative;
  overflow: hidden;
}

.service__list li span i {
  color: #fff;
  font-size: 1.5em;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
}

/* Optional: smoother look in dark mode environments */
@media (prefers-color-scheme: dark) {
  .welcome-strip {
    box-shadow: 0 4px 22px rgba(0,0,0,0.45);
  }
}

/* Typing effect (letter-by-letter) */
#welcome-typing { 
  display:inline-block; 
  font-size:clamp(1rem, 0.9rem + 0.5vw, 1.25rem); 
  font-weight:600; 
  color:#ffe8a3; /* typing color */
  font-family: "Poppins", sans-serif;
  text-shadow:0 1px 3px rgba(0,0,0,0.55);
  white-space:nowrap;
  overflow:hidden;
  letter-spacing: .4px;
}
#welcome-typing.typing::after { 
  content:""; 
  display:inline-block; 
  width:2px; 
  height:1em; 
  background:#ffd34d; 
  margin-left:6px; 
  animation: caretBlink .9s steps(2,start) infinite; 
  vertical-align:bottom;
  box-shadow:0 0 6px #ffd34d;
}
#welcome-typing.done::after { animation:none; opacity:0; }
/* After typing completes, animate gradient through the text */
#welcome-typing.done {
  background: linear-gradient(90deg,#f9d923,#ff4e8e,#5f72ff,#f9d923);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: welcomeGradient 6s linear infinite;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}
@keyframes welcomeGradient { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }
@keyframes caretBlink { 0%,49%{opacity:1;} 50%,100%{opacity:0;} }

.section__subheader {
  margin-bottom: 0.5rem;
  position: relative;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-dark);
}

.section__subheader::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(1rem, -50%);
  height: 2px;
  width: 4rem;
  background-color: var(--primary-color);
}

.section__header {
  max-width: 600px;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 3rem;
  color: var(--text-dark);
}

.section__description {
  max-width: 600px;
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* === Enhanced About Section Typography === */
.about__content .section__description {
  font-family: 'Lora', 'Georgia', serif;
  font-size: clamp(1rem, 0.95rem + 0.35vw, 1.15rem);
  line-height: 1.75;
  letter-spacing: 0.25px;
  color: #2f2a27;
  background: linear-gradient(145deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.74) 80%);
  padding: 1.3rem 1.55rem 1.6rem 1.55rem;
  border-radius: 18px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.about__content .section__description::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(255,78,142,0.18), transparent 55%),
              radial-gradient(circle at 15% 85%, rgba(95,114,255,0.18), transparent 55%);
  pointer-events: none;
}

.about__content .section__description::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background: linear-gradient(180deg,#ff4e8e,#5f72ff);
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.35) inset;
}

.about__content .section__description::first-letter {
  font-family: 'Playfair Display','Lora',serif;
  font-size: 2.9rem;
  font-weight: 600;
  line-height: 1;
  float: left;
  margin: 0.12rem 0.55rem 0.2rem 0;
  color: #ff4e8e;
  text-shadow: 0 4px 14px rgba(255,78,142,0.25);
}

.about__content .section__description a {
  color: #5f72ff;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .3s;
}
.about__content .section__description a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: linear-gradient(90deg,#ff4e8e,#5f72ff);
  transition: width .4s ease;
  border-radius: 2px;
}
.about__content .section__description a:hover { color:#ff4e8e; }
.about__content .section__description a:hover::after { width: 100%; }

@media (max-width: 640px){
  .about__content .section__description {
    padding: 1.1rem 1.15rem 1.3rem 1.15rem;
    border-radius: 14px;
    font-size: 0.98rem;
  }
  .about__content .section__description::first-letter { font-size: 2.35rem; }
}

/* === About Info Cards (Address + Contact) === */
.about__info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 1rem;
  margin: 1.4rem 0 1.6rem;
}
.about__info-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: .95rem 1.1rem 1rem 1.1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.80) 100%);
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.6);
  text-decoration: none;
  color: #222;
  overflow: hidden;
  backdrop-filter: blur(4px);
  transition: box-shadow .35s ease, transform .25s ease, border-color .35s ease;
}
.about__info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(95,114,255,0.18), transparent 60%),
              radial-gradient(circle at 15% 80%, rgba(255,78,142,0.18), transparent 60%);
  pointer-events: none;
}
.about__info-card:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,0.14);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.85);
}
.about__info-icon {
  flex: 0 0 46px;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg,#ff4e8e,#5f72ff);
  color: #fff;
  font-size: 1.55rem;
  box-shadow: 0 4px 14px rgba(95,114,255,0.35);
  position: relative;
}
.about__info-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg,#f9d92322,#ffffff10);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.about__info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: 'Lora','Georgia',serif;
  line-height: 1.35;
  font-size: .92rem;
}
.about__info-text strong {
  font-family: 'Playfair Display','Lora',serif;
  font-size: 1.02rem;
  letter-spacing: .5px;
  color: #272222;
  font-weight: 600;
}
.about__info-text em {
  font-style: normal;
  font-weight: 500;
  color: #444;
  letter-spacing: .3px;
}
@media (max-width:600px){
  .about__info-card { padding: .85rem .95rem .9rem .95rem; border-radius: 14px; }
  .about__info-icon { width: 40px; height: 40px; font-size: 1.3rem; border-radius: 12px; }
  .about__info-text strong { font-size: .95rem; }
  .about__info-text { font-size: .86rem; }
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

img {
  width: 100%;
  display: flex;
}

a {
  text-decoration: none;
}

.logo {
  max-width: 120px;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora','Poppins','Segoe UI',sans-serif;
}

.header {
  background-image: url("../assets/ayodhya.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
/* Hero video overlay handling */
.hero { position: relative; }
.hero-video { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero-video__media { width:100%; height:100%; object-fit:cover; filter:brightness(.72) saturate(1.15); }
.hero nav, .header__container { position: relative; z-index: 2; }
.hero::after { content:""; position:absolute; inset:0; background:linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.55) 100%); z-index:1; }

nav {
  position: fixed;
  isolation: isolate;
  top: 0;
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  z-index: 9;
}

.nav__bar {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background-color: var(--primary-color);
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  list-style: none;
  position: absolute;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  background-color: rgba(188, 28, 92, 0.9);
  transform: translateY(-100%);
  transition: 0.5s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links a {
  position: relative;
  isolation: isolate;
  padding-bottom: 8px;
  color: var(--white);
  transition: 0.3s;
}

.nav__btn {
  display: none;
}

.header__container {
  padding-block: 10rem 15rem;
}

.header__container p {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--white);
  text-align: center;
  opacity: 0.6;
}

.header__container h1 {
  font-size: 4rem;
  font-weight: 500;
  line-height: 4.5rem;
  color: var(--white);
  text-align: center;
}

.header__container h1 span { color: var(--primary-color); }

/* === Global Typography Overrides (Applied Site-wide) === */
h1, h2, h3, h4, h5, h6,
.section__header,
.section__subheader,
.logo-text {
  font-family: 'Playfair Display','Lora','Georgia',serif;
  font-weight: 600;
  letter-spacing: .5px;
}

p, li, .footer__links a, .service__list li, .room__card p, .section__description, .footer__bar, .about__info-text em, .about__info-text strong {
  font-family: 'Lora','Poppins','Segoe UI',sans-serif;
}

/* Buttons keep existing weight but inherit new font stack */
button, .btn { font-family: 'Lora','Poppins','Segoe UI',sans-serif; }

/* Reduce redundancy: previously specific font-family declarations are now governed globally. */

.booking__container {
  padding-block: 0;
}

.booking__form {
  padding: 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: var(--white);
  border-radius: 10px;
  transform: translateY(-50%);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.input__group {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.input__group span {
  font-size: 1.75rem;
  color: var(--primary-color);
}

.input__group label {
  font-weight: 500;
  color: var(--text-dark);
}

.input__group input {
  display: block;
  width: 100%;
  max-width: 150px;
  padding-block: 5px;
  color: var(--text-dark);
  font-size: 0.9rem;
  outline: none;
  border: none;
}

.input__group input::placeholder {
  color: var(--text-light);
}

.about__container {
  overflow: hidden;
  display: grid;
  gap: 2rem;
}

.about__image img {
  max-width: 450px;
  margin: auto;
  border-radius: 5px;
}

/* Equal height layout for About section on larger screens */
@media (min-width: 768px) {
  .about__container { align-items: stretch; grid-template-columns: 1fr 1fr; }
  .about__image { position: relative; height: 100%; display: flex; }
  .about__image img {
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    animation: aboutImgReveal .6s ease .05s both;
  }
  .about__content { display: flex; flex-direction: column; justify-content: flex-start; }
}

@keyframes aboutImgReveal {
  from { opacity: 0; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

.room__grid {
  margin-top: 4rem;
  display: grid;
  gap: 1rem;
}

.room__card {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}

.room__card__image {
  position: relative;
  isolation: isolate;
}

.room__card__icons {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  z-index: 1;
}

.room__card__icons span {
  display: inline-block;
  padding: 2px 8px;
  font-size: 1.5rem;
  background-color: var(--white);
  border-radius: 100%;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.room__card__icons span:nth-child(1) {
  color: #f472b6;
}

.room__card__icons span:nth-child(2) {
  color: #c084fc;
}

.room__card__icons span:nth-child(3) {
  color: #60a5fa;
}

.room__card__details {
  padding: 1rem;
}

.room__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.room__card p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.room__card h5 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 5500;
  color: var(--text-light);
}

.room__card h5 span {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.service {
  background-image: url("../assets/palash.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.service__container {
  padding-block: 0;
  display: grid;

  grid-template-columns: repeat(2, 1fr);
}

.service__content {
  text-align: left;
}

.service__list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
}

.service__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.service__list span {
  padding: 3px 8px;
  font-size: 1.25rem;
  color: #fff;
  background: linear-gradient(135deg, #f9d923 0%, #ff4e8e 50%, #5f72ff 100%);
  border-radius: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background 0.3s, color 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
}

.service__list li:nth-child(1) span {
  color: #60a5fa;
  background-color: #dbeafe;
}

.service__list li:nth-child(2) span {
  color: #f472b6;
  background-color: #fce7f3;
}

.service__list li:nth-child(3) span {
  color: #c084fc;
  background-color: #f3e8ff;
}

.service__list li:nth-child(4) span {
  color: #fb7185;
  background-color: #ffe4e6;
}

:root {
    --text-dark: #333;
    --text-light: #666;
    --hover-color: #0056b3;
  }

.banner__content {
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  border-radius: 10px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.banner__card {
  text-align: center;
  flex: 1 1 180px;
  transition: transform 0.3s ease;
}

.banner__card:hover {
    transform: scale(1.05);
  }

.banner__card h4 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.banner__card:hover h4 {
  color: var(--hover-color);
}

.banner__card p {
  color: var(--text-light);
}

.explore :is(.section__subheader, .section__header) {
  text-align: center;
  margin-inline: auto;
}

.explore__bg {
  margin-top: 4rem;
  padding-block: 3rem;
  display: grid;
  grid-template-columns:
    minmax(1rem, 1fr)
    minmax(0, var(--max-width))
    minmax(1rem, 1fr);
  background-image: url("images/explore.jpeg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.explore__content {
  grid-column: 2/3;
  max-width: 400px;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.explore__content p {
  margin-bottom: 0.5rem;
}

.explore__content h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5rem;
  color: var(--text-dark);
}

.explore__content .btn {
  color: var(--primary-color);
  background-color: var(--white);
  border: 1px solid var(--primary-color);
}

.explore__content .btn:hover {
  color: var(--white);
  background-color: var(--primary-color);
}

.footer {
  background-color: var(--text-dark);
  color: #fff;
}

.footer__container {
  display: grid;
  gap: 4rem 2rem;
  color: #fff;
}

.footer__col .section__description {
  margin-block: 2rem;
  color: #fff;
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
}

.footer__links {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.footer__links a {
  color: #fff;
  transition: 0.3s;
}

.footer__links a:hover {
  color: var(--accent-color);
}

.footer__socials {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__socials img {
  max-width: 25px;
  opacity: 0.8;
  transition: 0.3s;
}

.footer__socials img:hover {
  opacity: 1;
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: #fff;
  text-align: center;
}

@media (width > 576px) {
  .room__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width > 768px) {
  nav {
    padding: 2rem 1rem;
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav__bar {
    padding: 0;
    background-color: transparent;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    padding: 0;
    width: unset;
    position: static;
    transform: none;
    flex-direction: row;
    background-color: transparent;
  }

  .nav__btn {
    display: block;
  }

  .nav__links a::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: var(--primary-color);
    transition: 0.3s;
    transform-origin: left;
  }

  .nav__links a:hover::after {
    width: 100%;
  }

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .room__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service__content {
    grid-column: 2/3;
  }

  .footer__container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (width > 1024px) {
  .room__grid {
    gap: 2rem;
  }
}


/* === Services layout: side-by-side cards & new Parking item === */
.service__list{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  align-items: start;
}
.service__list li{
  background-color: #ffffff;
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
@media (max-width: 576px){
  .service__list{ grid-template-columns: 1fr; }
}
/* Override the 4th item (Parking) icon color to green */
.service__list li:nth-child(4) span{
  color: #22c55e;           /* emerald-500 */
  background-color: #dcfce7;/* emerald-100 */
}

/* === Alignment helpers for About / Services / Gallery === */
.section--left {
  text-align: left;
}

.section--left .section__subheader,
.section--left .section__header {
  text-align: left;
  margin-inline: 0;
}

/* Simple, responsive gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Duplicate old logo-text styles removed; single definition kept above */
