/* =========================================================================
   DHARANI VILLAGE RESORT — Custom Theme Overrides
   Kutch Heritage + Premium Village Resort palette
   ========================================================================= */

:root {
  /* Village-resort light brown / earthy palette (replaces the original theme green) */
  --gt-theme: #C08552;          /* Light brown - primary accent / buttons */
  --gt-theme-dark: #96652E;     /* Deeper brown for hover states */
  --gt-header: #121212;         /* Original dark heading/text colour */
  --gt-gold: #C08552;           /* Accent (light brown, matches primary) */
  --gt-indigo: #2E3A4F;
  --gt-text: #666666;           /* Original body text colour */
  --gt-bg: #FBF3E7;             /* Light warm/cream section background */
  --gt-bg2: #FBF3E7;
  --gt-bg3: #FBF3E7;
  --gt-border: #EDE0CD;
  --gt-box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

body {
  color: var(--gt-text);
}

/* main.css hardcodes this section background instead of using the --gt-bg
   variable, so override it directly here to match the brown palette. */
.section-bg {
  background-color: var(--gt-bg) !important;
}

/* Headings use the elegant serif already loaded by the theme */
h1, h2, h3, h4, .gt-section-title h2, .homemenu-title {
  font-family: "Gilda Display", serif;
}

/* -------------------------------------------------------------------------
   Brand logo (real logo file: assets/img/dharani/logo.png)
   ------------------------------------------------------------------------- */
.dvr-logo-img { height: 52px; width: auto; display: block; }
.header-logo .dvr-logo-img,
.header-logo-2 .dvr-logo-img { height: 50px; }
/* transparent header (hero) needs a light chip behind the logo for contrast */
.header-logo {
  background: rgba(255,255,255,.92);
  padding: 6px 14px;
  border-radius: 8px;
  display: inline-flex !important;
  align-items: center;
}
.sticky .header-logo { display: none !important; }
.offcanvas__logo .dvr-logo-img,
.footer-logo .dvr-logo-img { height: 46px; background: rgba(255,255,255,.92); padding: 5px 12px; border-radius: 8px; }

/* Prominent Book Now button in main nav */
.header-right .book-now-pill {
  background-color: var(--gt-gold) !important;
  color: var(--gt-header) !important;
  font-weight: 600;
  border-radius: 50px;
  padding: 14px 32px !important;
}
.header-right .book-now-pill::before { background-color: #fff !important; }
.header-right .book-now-pill:hover { color: var(--gt-header) !important; }
.sticky .header-right .book-now-pill { color: var(--gt-header) !important; }

/* Anchor scroll offset so in-page dropdown links land below sticky header */
section[id] { scroll-margin-top: 130px; }

/* -------------------------------------------------------------------------
   Hero image-slider box (index-3 style small captioned carousel)
   Used inside hero-1's dark teal column — custom-scoped to avoid clashing
   with the theme's existing .hero-1 .hero-items / .hero-2 .hero-box rules.
   ------------------------------------------------------------------------- */
.dvr-hero-slider-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding: 22px;
  backdrop-filter: blur(6px);
  max-width: 380px;
}
.dvr-hero-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.dvr-hero-nav button {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease;
  border: none;
}
.dvr-hero-nav button:hover { background: var(--gt-theme); }
.dvr-hero-slider-box .hero-slider .swiper-slide { width: 100% !important; }
.dvr-hero-item-img {
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
}
.dvr-hero-item-img img { width: 100%; height: 100%; object-fit: cover; }
.dvr-hero-item h6 {
  color: #fff;
  margin-top: 16px;
  font-size: 15px;
  text-align: center;
  letter-spacing: .3px;
}
.dvr-hero-slider-caption {
  color: #C9E6CE;
  font-size: 14px;
  line-height: 1.7;
  margin: 18px 0 0;
  text-align: center;
}
@media (max-width: 767px) {
  .dvr-hero-slider-box { max-width: 100%; margin-top: 30px; }
  .dvr-hero-item-img { height: 230px; }
}

/* -------------------------------------------------------------------------
   Page hero (inner pages)
   ------------------------------------------------------------------------- */
.dvr-page-hero {
  position: relative;
  padding: 180px 0 90px;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.dvr-page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(36,26,18,.55), rgba(36,26,18,.75));
}
.dvr-page-hero .container { position: relative; z-index: 2; }
.dvr-page-hero h6 {
  color: var(--gt-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 14px;
}
.dvr-page-hero h1 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 14px;
}
.dvr-page-hero p { color: #EAF7EC; max-width: 620px; margin: 0 auto; }
.dvr-breadcrumb { color: #EAF7EC; margin-top: 18px; }
.dvr-breadcrumb a { color: #fff; }
.dvr-breadcrumb i { margin: 0 8px; font-size: 11px; }

/* -------------------------------------------------------------------------
   "More Than a Stay" feature cards (home)
   ------------------------------------------------------------------------- */
.dvr-feature-card {
  background: #fff;
  border: 1px solid var(--gt-border);
  border-radius: 12px;
  padding: 40px 28px;
  text-align: center;
  height: 100%;
  transition: all .35s ease;
}
.dvr-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gt-box-shadow);
  border-color: transparent;
}
.dvr-feature-card .dvr-icon {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gt-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--gt-theme);
}
.dvr-feature-card h4 { font-size: 20px; margin-bottom: 10px; color: var(--gt-header); }
.dvr-feature-card p { font-size: 14.5px; margin: 0; }

/* -------------------------------------------------------------------------
   Generic image card grid — used for Stay / Experience Kutch / Gallery /
   Dining / Tours listing cards
   ------------------------------------------------------------------------- */
.dvr-img-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  height: 340px;
  margin-bottom: 24px;
}
.dvr-img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.dvr-img-card:hover img { transform: scale(1.08); }
.dvr-img-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(36,26,18,0) 40%, rgba(36,26,18,.85) 100%);
}
.dvr-img-card .dvr-card-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px;
  z-index: 2;
}
.dvr-img-card .dvr-card-caption h4 { color: #fff; margin: 0 0 4px; font-size: 21px; }
.dvr-img-card .dvr-card-caption span { color: var(--gt-gold); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }
.dvr-img-card.dvr-card-sm { height: 260px; }

/* Destination / tour cards */
.dvr-dest-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gt-border);
  height: 100%;
  transition: all .3s ease;
}
.dvr-dest-card:hover { box-shadow: var(--gt-box-shadow); transform: translateY(-4px); }
.dvr-dest-card .dvr-dest-img { height: 200px; overflow: hidden; }
.dvr-dest-card .dvr-dest-img img { width: 100%; height: 100%; object-fit: cover; }
.dvr-dest-card .dvr-dest-body { padding: 20px 22px; }
.dvr-dest-card h5 { color: var(--gt-header); margin-bottom: 6px; font-size: 18px; }
.dvr-dest-card .dvr-dest-time { color: var(--gt-theme); font-size: 13px; font-weight: 600; }
.dvr-dest-card p { font-size: 14px; margin: 8px 0 0; }

/* -------------------------------------------------------------------------
   Reviews / rating section
   ------------------------------------------------------------------------- */
.dvr-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--gt-border);
  border-radius: 60px;
  padding: 14px 28px;
  margin-bottom: 40px;
  box-shadow: var(--gt-box-shadow);
}
.dvr-rating-badge .dvr-score { font-size: 30px; font-family: "Gilda Display", serif; color: var(--gt-header); }
.dvr-rating-badge .dvr-stars { color: var(--gt-gold); font-size: 15px; }
.dvr-rating-badge .dvr-meta { font-size: 12.5px; color: var(--gt-text); line-height: 1.4; }

.dvr-review-card {
  background: #fff;
  border: 1px solid var(--gt-border);
  border-radius: 12px;
  padding: 30px 26px;
  height: 100%;
}
.dvr-review-card .dvr-stars { color: var(--gt-gold); margin-bottom: 14px; font-size: 14px; }
.dvr-review-card p.dvr-quote { font-style: italic; color: var(--gt-header); margin-bottom: 18px; }
.dvr-review-card .dvr-reviewer { display: flex; align-items: center; gap: 12px; }
.dvr-review-card .dvr-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gt-bg); color: var(--gt-theme);
  display: flex; align-items: center; justify-content: center;
  font-family: "Gilda Display", serif; font-size: 17px;
}
.dvr-review-card .dvr-reviewer h6 { margin: 0; font-size: 14.5px; color: var(--gt-header); }
.dvr-review-card .dvr-reviewer span { font-size: 12px; color: var(--gt-text); }

/* -------------------------------------------------------------------------
   Room / Bhunga tariff cards (Stay page)
   ------------------------------------------------------------------------- */
.dvr-room-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gt-border);
  margin-bottom: 30px;
}
.dvr-room-card .dvr-room-img { height: 260px; overflow: hidden; }
.dvr-room-card .dvr-room-img img { width: 100%; height: 100%; object-fit: cover; }
.dvr-room-card .dvr-room-body { padding: 26px; }
.dvr-room-card h3 { font-size: 23px; color: var(--gt-header); margin-bottom: 8px; }
.dvr-room-card ul.dvr-room-facts { display: flex; gap: 20px; flex-wrap: wrap; margin: 14px 0; padding: 0; list-style: none; }
.dvr-room-card ul.dvr-room-facts li { font-size: 13.5px; color: var(--gt-text); }
.dvr-room-card ul.dvr-room-facts li i { color: var(--gt-theme); margin-right: 6px; }

.dvr-tariff-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; }
.dvr-tariff-table th, .dvr-tariff-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--gt-border); }
.dvr-tariff-table th { background: var(--gt-header); color: #fff; font-weight: 500; }
.dvr-tariff-table tr:last-child td { border-bottom: none; }
.dvr-tariff-table td.dvr-price { color: var(--gt-theme); font-weight: 600; }

.dvr-check-list { list-style: none; padding: 0; margin: 0; }
.dvr-check-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 15px; color: var(--gt-text); }
.dvr-check-list li i { color: var(--gt-theme); margin-top: 3px; }

/* -------------------------------------------------------------------------
   Direct booking strip
   ------------------------------------------------------------------------- */
.dvr-booking-note {
  text-align: center;
  color: #fff;
  margin-top: 18px;
  font-size: 14px;
}
.dvr-booking-note strong { color: var(--gt-gold); }

/* -------------------------------------------------------------------------
   Floating action buttons (desktop) — WhatsApp / Call / Book Now
   ------------------------------------------------------------------------- */
.dvr-float-stack {
  position: fixed;
  right: 26px;
  bottom: 100px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dvr-float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  transition: transform .25s ease;
}
.dvr-float-btn:hover { transform: scale(1.1); color: #fff; }
.dvr-float-btn.dvr-whatsapp { background: #25D366; }
.dvr-float-btn.dvr-call { background: var(--gt-indigo); }
.dvr-float-btn.dvr-book { background: var(--gt-theme); }

@media (max-width: 767px) {
  .dvr-float-stack { bottom: 86px; right: 16px; }
}

/* -------------------------------------------------------------------------
   Mobile sticky bottom bar — Call | WhatsApp | Book Now
   ------------------------------------------------------------------------- */
.dvr-mobile-bar {
  display: none;
}
@media (max-width: 767px) {
  .dvr-mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--gt-header);
    box-shadow: 0 -4px 16px rgba(0,0,0,.25);
  }
  .dvr-mobile-bar a {
    flex: 1;
    text-align: center;
    color: #fff;
    padding: 12px 4px 10px;
    font-size: 12px;
    border-right: 1px solid rgba(255,255,255,.12);
  }
  .dvr-mobile-bar a:last-child { border-right: none; background: var(--gt-theme); }
  .dvr-mobile-bar a i { display: block; font-size: 18px; margin-bottom: 4px; }
  .dvr-float-stack.dvr-desktop-only { display: none; }
}

/* Section tag / heritage strip */
.dvr-strip {
  background: var(--gt-header);
  color: #E1F5E4;
  text-align: center;
  padding: 12px 16px;
  font-size: 13.5px;
  letter-spacing: .5px;
}
.dvr-strip strong { color: var(--gt-gold); }

/* Anchor quick-nav chips (used at top of Stay/Experiences/Dining/Tours/Gallery pages) */
.dvr-chip-nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 60px; }
.dvr-chip-nav a {
  border: 1px solid var(--gt-border);
  border-radius: 40px;
  padding: 9px 20px;
  font-size: 13.5px;
  color: var(--gt-header);
  background: #fff;
  transition: all .25s ease;
}
.dvr-chip-nav a:hover { background: var(--gt-theme); color: #fff; border-color: var(--gt-theme); }

/* =========================================================================
   MOBILE-FRIENDLY FIXES — hero slider, header, booking form
   ========================================================================= */

/* Prevent the logo from being stretched out of proportion — the theme
   forces a fixed width on very small screens, this keeps height matched
   so the image never squishes/stretches. */
@media (max-width: 470px) {
  .header-1 .logo img.dvr-logo-img {
    width: auto !important;
    height: 40px !important;
  }
}
@media (max-width: 360px) {
  .header-1 .logo img.dvr-logo-img { height: 36px !important; }
}

/* Fix hero-content .hero-video-image collapsing on small phones — the base
   theme sets height:100% at <=575px with no defined parent height, which
   can render the image invisible. Give it an explicit height instead. */
@media (max-width: 575px) {
  .hero-1 .hero-content .hero-video-image {
    height: 200px !important;
    max-width: 100% !important;
    border-radius: 12px;
    overflow: hidden;
  }
  .hero-1 .hero-content .hero-video-image img {
    height: 100%;
  }
}

/* Hero heading: allow long/garbled strings to wrap cleanly instead of
   overflowing the viewport on narrow screens. */
@media (max-width: 575px) {
  .hero-1 .hero-content h1 {
    word-break: break-word;
    line-height: 1.2;
  }
  .hero-1 .hero-content h1 span {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* Hero image slider (hero-slider1) — keep a sensible height on small
   screens and make sure captions/overlay text never get clipped. */
@media (max-width: 575px) {
  .hero-1 .hero-items { margin-top: 24px; }
  .hero-1 .hero-items .hero-image { border-radius: 16px; }
}

/* Star rating row wraps instead of overflowing on very narrow phones */
@media (max-width: 360px) {
  .hero-1 .hero-content .star { flex-wrap: wrap; }
}

/* Direct-booking form: bigger, easier tap targets and full-width fields
   on phones so date pickers / selects are comfortable to use. */
@media (max-width: 575px) {
  .gt-booking-reserve-section .form-clt { margin-bottom: 14px; }
  .gt-booking-reserve-section input[type="date"],
  .gt-booking-reserve-section .nice-select {
    width: 100% !important;
    height: 52px;
    font-size: 15px;
  }
  .gt-booking-reserve-section .gt-theme-btn.w-100 {
    font-size: 14px;
    padding: 16px 10px;
    white-space: normal;
    line-height: 1.4;
  }
  .dvr-booking-note { font-size: 13px; padding: 0 10px; }
}

/* Keep the mobile sticky bar from ever overlapping the booking submit
   button or floating WhatsApp/Call/Book stack. */
@media (max-width: 767px) {
  .gt-booking-reserve-section { padding-bottom: 40px !important; }
}

/* Header hamburger + logo: make sure they never crowd on very small
   screens and the tap area stays comfortable. */
@media (max-width: 470px) {
  .header-1 .header-main { gap: 10px; }
  .header__hamburger .sidebar__toggle { font-size: 22px; padding: 6px; }
}

/* Section titles / headings: tighten up oversized type on small phones
   so nothing forces horizontal scroll. */
@media (max-width: 420px) {
  .gt-section-title h2 { font-size: 26px; line-height: 1.3; }
  .gt-about-content .gt-section-title h2,
  .gt-booking-reserve-wrapper .gt-section-title h2 { font-size: 24px; }
}

/* Counter section: stack cleanly in 2 columns instead of cramming 4
   across on narrow phones. */
@media (max-width: 480px) {
  .gt-counter-wrapper { flex-wrap: wrap; justify-content: center; gap: 24px 0; }
  .gt-counter { width: 50%; border: none !important; }
}

/* Testimonial / special-offer / instagram sliders already use the
   theme's own responsive breakpoints — just ensure nav arrows stay
   reachable (min tap target) on touch devices. */
@media (max-width: 575px) {
  .array-button-2 button,
  .array-prev1, .array-next1 { min-width: 40px; min-height: 40px; }
}

/* -------------------------------------------------------------------------
   Fix: Instagram/Photo Gallery slider images had no defined height, so
   they rendered at each photo's natural (non-square) aspect ratio. Force
   a clean square crop everywhere this component is used.
   ------------------------------------------------------------------------- */
.gt-instagram-image {
  aspect-ratio: 1 / 1;
  height: auto;
}
.gt-instagram-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------------------------------------------------------------------
   Quick Enquiry section (Photo Gallery -> Footer) — tighter padding so it
   sits snugly between the gallery and the footer instead of leaving a
   large empty gap.
   ------------------------------------------------------------------------- */
.dvr-quick-enquiry-section {
  padding: 60px 0 100px;
  background: var(--gt-bg);
}
@media (max-width: 767px) {
  .dvr-quick-enquiry-section { padding: 40px 0 70px; }
}

/* -------------------------------------------------------------------------
   Fix: theme's "about image" components set img height:100% without ever
   giving the parent container an explicit height, so images render at
   their own natural (inconsistent) aspect ratio instead of a controlled
   size. Give every variant of this component a real height + object-fit.
   ------------------------------------------------------------------------- */
.gt-about-wrapper .gt-about-image-items .gt-about-image {
  height: 420px;
}
.gt-about-wrapper .gt-about-image-items .gt-about-image img {
  height: 100%;
  object-fit: cover;
}
.gt-about-wrapper-2 .gt-about-right-image .gt-about-image {
  height: 460px;
}
.gt-about-wrapper-2 .gt-about-right-image .gt-about-image img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .gt-about-wrapper .gt-about-image-items .gt-about-image { height: 300px; }
  .gt-about-wrapper-2 .gt-about-right-image .gt-about-image { height: 320px; }
}

/* -------------------------------------------------------------------------
   Room detail image slider (Stay page) — 2-3 photos per room type
   ------------------------------------------------------------------------- */
.dvr-room-image-slider {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  height: 420px;
}
.dvr-room-image-slider .swiper-slide {
  height: 100%;
}
.dvr-room-image-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.dvr-room-image-slider .dvr-room-nav {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 5;
  display: flex;
  gap: 10px;
}
.dvr-room-image-slider .dvr-room-nav button {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: var(--gt-header);
  border: none;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease;
}
.dvr-room-image-slider .dvr-room-nav button:hover { background: var(--gt-theme); color: #fff; }
@media (max-width: 767px) {
  .dvr-room-image-slider { height: 300px; }
}

/* -------------------------------------------------------------------------
   Fix: same missing-parent-height bug on more theme card components used
   across the site (news/destination cards, enjoy-hotel spotlight images).
   ------------------------------------------------------------------------- */
.gt-news-box-items .gt-thumb {
  height: 260px;
}
.gt-enjoy-hotel-wrapper-3 .gt-hotel-images-items .gt-hotel-image {
  height: 420px;
}
@media (max-width: 767px) {
  .gt-news-box-items .gt-thumb { height: 220px; }
  .gt-enjoy-hotel-wrapper-3 .gt-hotel-images-items .gt-hotel-image { height: 300px; }
}

/* Price badge on room detail */
.dvr-room-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: var(--gt-bg);
  border: 1px solid var(--gt-border);
  border-radius: 10px;
  padding: 10px 20px;
  margin: 16px 0;
}
.dvr-room-price .amount { font-family: "Gilda Display", serif; font-size: 28px; color: var(--gt-theme); }
.dvr-room-price .per { font-size: 13px; color: var(--gt-text); }

/* Terms & Conditions list */
.dvr-terms-list { list-style: none; padding: 0; margin: 0; }
.dvr-terms-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gt-border);
  font-size: 15px;
  color: var(--gt-text);
  line-height: 1.6;
}
.dvr-terms-list li:last-child { border-bottom: none; }
.dvr-terms-list li strong { color: var(--gt-header); }
.dvr-cancellation-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.dvr-cancellation-table th, .dvr-cancellation-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gt-border);
  font-size: 14.5px;
}
.dvr-cancellation-table th { background: var(--gt-header); color: #fff; font-weight: 500; }
.dvr-cancellation-table td.dvr-deduct { color: var(--gt-theme); font-weight: 600; }

/* -------------------------------------------------------------------------
   Fix: same missing-parent-height bug on remaining theme components —
   hotel-left-images spotlight (about/kutch-tours) and dining gallery grid.
   ------------------------------------------------------------------------- */
.gt-hotel-facilities-wrapper-2 .gt-hotel-left-images {
  height: 460px;
}
.gt-hotel-facilities-wrapper-2 .gt-hotel-left-images img {
  height: 100%;
  object-fit: cover;
}
.gt-restaurant-gallery-image {
  height: 230px;
  overflow: hidden;
  border-radius: 8px;
}
.gt-restaurant-gallery-image img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .gt-hotel-facilities-wrapper-2 .gt-hotel-left-images { height: 300px; }
  .gt-restaurant-gallery-image { height: 200px; }
}

/* -------------------------------------------------------------------------
   "All Photos" grid (Photo Gallery page) — 9 columns x 3 rows = 27 images
   ------------------------------------------------------------------------- */
.dvr-photo-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.dvr-photo-grid-item {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
}
.dvr-photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.dvr-photo-grid-item:hover img {
  transform: scale(1.08);
}
@media (max-width: 1199px) {
  .dvr-photo-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 767px) {
  .dvr-photo-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
}
@media (max-width: 480px) {
  .dvr-photo-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
}
