.image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
}

/* Image styling */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating badge on top-right */
.hero-floating {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 2;
}

.hero-floating strong {
  font-size: 18px;
  display: block;
}

.hero-floating small {
  font-size: 12px;
  color: #555;
}

/* Optional overlay */
.hero-img-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.events-image-box {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 20px;
  overflow: hidden;
}

.events-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FULL WIDTH MAP */
.location-map-full iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* ATTRACTIONS */
.attractions-section {
  padding: 60px 0;
}

.attractions-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 50px;
  font-family: "Playfair Display", serif;
}

/* SLIDER */
.attractions-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

.attractions-slider::-webkit-scrollbar {
  display: none;
}

.attraction-card {
  min-width: 260px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  flex-shrink: 0;
}

.attraction-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.attraction-card:hover img {
  transform: scale(1.08);
}

/* INFO OVERLAY */
.attraction-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.attraction-info h4 {
  margin: 0;
  font-size: 16px;
}

.attraction-info span {
  font-size: 13px;
  opacity: 0.9;
}

.location-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.location-heading .section-title {
  margin-bottom: 10px;
}

.location-heading .section-sub {
  margin: 0 auto;
  opacity: 0.85;
}

/* ============================================================
   SNEHA RESIDENCY — FIXES
   Save as: assets/css/fixes.css
   Add AFTER all other CSS links in <head>:
   <link rel="stylesheet" href="./assets/css/fixes.css">
   ============================================================ */

/* ── FIX 1: MARQUEE SPEED ────────────────────────────────────
   Original was 28s — very slow on all screen sizes.
   Faster base speed + pause on hover for usability.
   ──────────────────────────────────────────────────────────── */
.marquee-inner {
  animation: marquee 12s linear infinite;
}

.marquee-wrap:hover .marquee-inner {
  animation-play-state: paused;
}

/* ── FIX 2: EVENTS IMAGE FIT ─────────────────────────────────
   The events-visual container uses padding/flex centering
   which clips the image. Override to make it fill properly.
   ──────────────────────────────────────────────────────────── */
.events-visual {
  padding: 0 !important;
  overflow: hidden;
}

.events-image-box {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 0;
}

.events-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── FIX 3: ATTRACTIONS SLIDER ───────────────────────────────
   Make cards overflow-scroll on all devices with snap.
   Cards are wider on mobile for better touch experience.
   ──────────────────────────────────────────────────────────── */
.attractions-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  cursor: grab;
}

.attractions-slider:active {
  cursor: grabbing;
}

.attractions-slider::-webkit-scrollbar {
  height: 3px;
}

.attractions-slider::-webkit-scrollbar-track {
  background: rgba(201, 147, 58, 0.1);
  border-radius: 2px;
}

.attractions-slider::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

.attraction-card {
  min-width: 260px;
  flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.cinfo-val a {
  color: inherit;
  /* takes same color as parent text */
  text-decoration: none;
  /* optional: removes underline */
}

/* Mobile: show 1.2 cards so user knows it's scrollable */
@media (max-width: 600px) {
  .attraction-card {
    min-width: calc(80vw);
  }
}

/* Tablet: show ~2 cards */
@media (min-width: 601px) and (max-width: 1024px) {
  .attraction-card {
    min-width: calc(45vw);
  }
}

#location {
  padding-bottom: 0 !important;
}

/* Remove extra space from attractions block */
.attractions-section {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Remove top spacing of CTA */
#cta {
  margin-top: 0 !important;
  padding-top: 40px;
  /* keep slight breathing space */
}

.contact-replace-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 45px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-replace-box h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.intro-text {
  opacity: 0.7;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.feature span {
  font-size: 20px;
  margin-top: 3px;
}

.feature h4 {
  font-size: 16px;
  margin-bottom: 3px;
}

.feature p {
  font-size: 13px;
  opacity: 0.7;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 25px 0;
}

.cta-box {
  text-align: center;
}

.cta-box p {
  margin-bottom: 12px;
  opacity: 0.8;
}

.stay-btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  transition: 0.3s;
}

.stay-btn:hover {
  background: var(--gold);
  color: #000;
}

/* ================================
   GLOBAL MOBILE SPACING FIX
================================ */
@media (max-width: 768px) {
  /* Reduce section padding */
  section {
    padding: 50px 0 !important;
  }

  .section-wrap {
    padding: 0 18px !important;
  }

  /* Reduce large titles spacing */
  .section-title {
    font-size: 32px !important;
    line-height: 1.2;
    margin-bottom: 10px !important;
  }

  .section-sub {
    font-size: 14px;
    margin-top: 10px !important;
  }

  /* HERO FIX */
  #hero {
    padding-top: 120px !important;
    padding-bottom: 60px !important;
    min-height: auto !important;
  }

  .hero-inner {
    gap: 30px !important;
  }

  /* REMOVE BIG EMPTY VISUAL HEIGHTS */
  .hero-visual,
  .about-visual-box,
  .events-image-box {
    height: auto !important;
    min-height: unset !important;
  }

  /* GRID STACKING */
  .about-grid,
  .dining-grid,
  .events-grid,
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  /* REMOVE EXTRA MARGINS */
  .features-header,
  .gallery-header,
  .rates-header,
  .offerings-header,
  .testi-header {
    margin-bottom: 25px !important;
  }

  /* NUMBER STRIP FIX */
  .num-strip {
    padding: 30px 0 !important;
  }

  .ns-num {
    font-size: 28px !important;
  }

  /* CTA FIX */
  #cta {
    padding: 60px 20px !important;
  }

  .cta-title {
    font-size: 30px !important;
  }

  /* CONTACT RIGHT BOX FIX */
  .contact-replace-box {
    padding: 30px !important;
  }

  /* REMOVE EXTRA GAP BELOW MAP */
  .location-map-full iframe {
    height: 300px !important;
  }

  /* ATTRACTIONS FIX */
  .attractions-section {
    padding: 30px 0 !important;
  }

  .attractions-title {
    font-size: 28px !important;
    margin-bottom: 20px !important;
  }

  /* TESTIMONIAL FIX */
  .testi-card {
    padding: 25px !important;
  }

  /* FOOTER FIX */
  .footer-top {
    gap: 30px !important;
  }

  /* REMOVE RANDOM EXTRA SPACE */
  * {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  /* FIX 1: REMOVE EXTRA TOP SPACE */
  #hero {
    padding-top: 90px !important;
    /* reduce from large value */
    padding-bottom: 40px !important;
  }

  /* If header is fixed */
  header {
    height: 70px;
    /* adjust to your header height */
  }

  /* FIX 2: ADD LEFT/RIGHT SPACE */
  .hero-inner {
    padding: 0 18px !important;
  }

  .hero-left {
    padding: 0 5px !important;
  }

  /* FIX 3: TEXT NOT TOUCH EDGE */
  .hero-title {
    font-size: 34px !important;
    line-height: 1.2;
  }

  .hero-desc {
    font-size: 14px;
    margin-top: 15px;
  }

  /* FIX 4: BUTTON SPACING */
  .hero-btns {
    margin-top: 20px;
  }

  /* FIX 5: REMOVE EXTRA GAP FROM BADGE */
  .hero-badge {
    margin-bottom: 12px !important;
  }
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo img {
  height: 65px;
  /* adjust based on your logo */
  width: auto;
  object-fit: contain;
  margin-bottom: 5px;
}

.footer-logo span {
  font-size: 0.58rem;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-copy {
  color: var(--gold-lt);
  font-size: 14px;
  margin: 5px 0;
}

/* FORCE gold color for both links */
.footer-copy a {
  color: var(--gold) !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover effect (premium feel) */
.footer-copy a:hover {
  color: var(--gold-lt);
  text-shadow: 0 0 8px var(--gold-glow);
}

/* Section Titles (Quick Links / Contact) */
.footer-links-title {
  font-size: 20px;
  /* increased */
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gold);
  letter-spacing: 0.08em;
}

/* Links List */
.footer-links li {
  margin-bottom: 10px;
}

/* Links Text */
.footer-links a {
  font-size: 16px;
  /* increased */
  color: var(--muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover effect */
.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
  /* subtle premium movement */
}
.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.nav-logo img {
  height: 50px;
  /* adjust as needed */
  width: auto;
  object-fit: contain;
}

.nav-logo span {
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
