:root {
  --ivory: #F8F4EA;
  --sage: #EFE8DB;
  --forest: #3F372C;
  --gold: #BBA05D;
  --gold-secondary: #C3AA68;
  --gold-dark: #8F783F;
  --charcoal: #3F372C;
  --terracotta: #C17F59;
}

* {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── TOP BAR ── */
.top-bar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 60;
  background: #3f372c;
  color: #ffffff;
  border-bottom: 1px solid #ddd4c073;
  padding: 6px 0;
  font-size: 13px;
  letter-spacing: 0.4px;
  line-height: 1.4;
}

.top-bar-fixed span {
  font-size: 14px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.top-bar-fixed a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s;
  font-size: 13px;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.top-bar-fixed a:hover {
  opacity: 0.75;
}

/* ── MAIN HEADER ── */
header {
  background: linear-gradient(181deg, #3F372C 60%, #342D24 118%);
  position: fixed;
  top: 34px;
  /* sits below the ~34px top bar */
  left: 0;
  width: 100%;
  z-index: 50;
  overflow: visible;
  border-bottom: none !important;
}

/* Header inner container */
header .header-inner {
  max-width: 88rem;
  margin: 0 auto;
  padding: 15px 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Hamburger button */
.mobile-menu {
  display: none;
  background: none;
  border: 1px solid rgba(187, 160, 93, 0.5);
  border-radius: 6px;
  color: #ffffff;
  font-size: 1.4rem;
  padding: 4px 10px;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.mobile-menu:hover {
  background: rgba(187, 160, 93, 0.15);
  border-color: #BBA05D;
}

/* ── LOGO & BRAND BASE ── */
.logo-img {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: #ffffff;
      line-height: 50px;
          margin-top: -12px;
}

.tamil {
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 0.04em;
  opacity: 1;
    display: contents;
}

/* email hidden on narrow tablet (hidden via media query) */
.top-bar-email {
  display: inline;
}


/* Wave divider at bottom of header */
header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 25px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 20' preserveAspectRatio='none'%3E%3Cpath fill='%23BBA05D' fill-opacity='0.85' d='M0,12 C240,0 480,20 720,10 C960,0 1200,18 1440,8 L1440,20 L0,20 Z'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 51;
}

@keyframes movingBorder {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 300% 50%;
  }
}

.font-display {
  font-family: 'Playfair Display', serif;
}

.font-script {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

/* ── NAV HOVER UNDERLINE ── */
.underline-grow {
  position: relative;
  padding-bottom: 2px;
}

.underline-grow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: #BBA05D;
  transition: width 0.3s ease;
}

.underline-grow:hover::after {
  width: 100%;
}


.tracking-wide2 {
  letter-spacing: 0.25em;
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal-left.in {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal-right.in {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal-scale.in {
  opacity: 1;
  transform: scale(1);
}

/* wave / arch dividers */
.wave-bottom {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;

}

.arch-top {
  border-radius: 50% 50% 0 0 / 18% 18% 0 0;
}

.arch-frame {
  border-radius: 6% 6% 0 0 / 16% 16% 0 0;
}

/* navbar blur on scroll handled via alpine + class */
.glass {
  background: rgba(248, 244, 234, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.glass-dark {
  background: rgba(63, 55, 44, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(187, 160, 93, 0.4);
}

/* idle float */
@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.float-badge {
  animation: floatY 5s ease-in-out infinite;
}

@keyframes kenburns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.09);
  }
}

.kenburns {
  animation: kenburns 14s ease-in-out infinite alternate;
}

.underline-grow {
  position: relative;
}

.underline-grow::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all .4s ease;
}

.underline-grow:hover::after {
  left: 0;
  width: 100%;
}

.link-underline {
  position: relative;
}

.link-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .4s ease;
}

.link-underline:hover::after {
  width: 100%;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background: var(--ivory);
}

@media (max-width: 767px) {
    .wave-bottom {
    position: absolute;
    bottom: -26px !important;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
  .logo-text {
    font-size: 12px !important;
    margin-bottom: 4px !important;
  }

  .tamil {
    font-size: 12px !important;
  }

  .top-bar-fixed {
    display: none !important;
  }

  .top-\[30px\] {
    top: 0px !important;
  }

  .logo-img {
    display: block !important;
    height: 20px;
  }

  .logo-txt {
    font-size: 13px !important;
    text-align: left;
    display: ruby;
  }

  .logo-txt .tamil {
    display: block;
    text-align: left;
  }

  .mobile-menu {
    position: relative;
    right: 0px
  }
}

@media (min-width: 1024px) {
  .lg\:py-44 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  #top {
    top: 85px;
  }

  .py-40 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .text-md {
    letter-spacing: 0.5px;
  }

  .text-\[\#C6A15B\] {
    --tw-text-opacity: 1;
    color: #BBA05D !important;
  }

  .text-gold {
    color: #8F783F !important;
    letter-spacing: 0.5px;
    font-weight: 600;
  }

  .text-\[\#2B2B2B\]\/80 {
    color: #3F372C !important;
    letter-spacing: 0.5px;
    font-size: 17px !important;
  }

  .text-\[\#2B2B2B\]\/60 {
    color: #564B3C !important;
  }

  .gap-15 {
    gap: 15px;
  }

  .lg\:text-3xl {
    font-size: 24px !important;
    line-height: 2.25rem;
  }

  .logo-txt {
    text-align: left;
    display: flex !important;
    align-items: center;
  }

  .logo-txt .tamil {
    display: block;
    text-align: left;
  }

  .logo-img {
    height: 80px;

    margin-right: 7px;
  }

  .green {
    background: linear-gradient(86deg, #3F372C 68%, #4A3F31 100%);
  }
}

.lg\:h-\[620px\] {
  height: 430px !important;
}



.boscosoft:hover {
  color: #fff !important;
}

.width-300 {
  width: 300px;
}

.width-150 {
  width: 150px;
}

.text-\[\#000370\] {
  color: #3F372C !important;
}

.bg-\[\#000370\] {
  --tw-bg-opacity: 1;
  background-color: #3F372C !important;
}

#contact .wave-bottom {
  position: absolute;
  bottom: -8px !important;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

#contact {
  padding-top: 10px;
  padding-bottom: 100px
}

/* ========================================
   FACILITIES SECTION
======================================== */

.facilities-section {
      margin-top: 150px;
  position: relative;
    padding: 70px 0;
  background: #F8F4EA;
  overflow: hidden;
}
.facilities-section-home{
  margin-top:0px !important;
}
/* Decorative background circle */

.facilities-section::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(187, 160, 93, 0.10);
  top: -180px;
  right: -120px;
}

.facilities-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(187, 160, 93, 0.20);
  bottom: -120px;
  left: -80px;
}

.facilities-container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}


/* ========================================
   HEADING
======================================== */

.facilities-heading {
  max-width: 650px;
  margin: 0 auto 55px;
  text-align: center;
}

.facilities-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 14px;

  color: #8F783F;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.facilities-eyebrow::before,
.facilities-eyebrow::after {
  content: "";
  width: 28px;
  height: 2px;
  background: #BBA05D;
}

.facilities-heading h2 {
  margin: 0;
  color: #3F372C;
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 500;
}

.facilities-heading h2 em {
  color: #BBA05D;
  font-style: italic;
}

.facilities-heading p {
  max-width: 520px;
  margin: 18px auto 0;
  color: #564B3C;
  font-size: 17px;
  letter-spacing: 0.5px;
  line-height: 1.8;
}


/* ========================================
   FACILITY GRID
======================================== */

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}


/* ========================================
   FACILITY CARD
======================================== */

.facility-card {
  position: relative;

  display: flex;
  align-items: center;
  gap: 20px;

  min-height: 125px;
  padding: 25px;

  background: #ffffff;

  border: 1px solid rgba(187, 160, 93, 0.25);
  border-radius: 18px;

  box-shadow: 0 10px 35px rgba(63, 55, 44, 0.06);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.facility-card::after {
  content: "";
  position: absolute;
  left: 25px;
  bottom: 0;

  width: 0;
  height: 3px;

  background: #BBA05D;

  transition: width 0.35s ease;
}

.facility-card:hover {
  transform: translateY(-7px);
  border-color: rgba(187, 160, 93, 0.6);
  box-shadow: 0 18px 45px rgba(63, 55, 44, 0.12);
}

.facility-card:hover::after {
  width: 55px;
}


/* ========================================
   ICON
======================================== */

.facility-icon {
  flex: 0 0 58px;

  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  border-radius: 16px;

  background: #BBA05D;
  color: #ffffff;

  font-size: 22px;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.facility-card:hover .facility-icon {
  background: #3F372C;
  color: #BBA05D;
  transform: rotate(-5deg);
}


/* ========================================
   CONTENT
======================================== */

.facility-card h3 {
  margin: 0 0 6px;

  color: #3F372C;

  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
}

.facility-card p {
  margin: 0;
  color: #564B3C;
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 1.6;
}


/* ========================================
   BUTTON
======================================== */

.facilities-action {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.facilities-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  padding: 13px 26px;

  background: #BBA05D;
  color: #3F372C;

  border-radius: 50px;

  font-size: 16px;
  font-weight: 700;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(187, 160, 93, 0.28);

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.facilities-btn span {
  width: 27px;
  height: 27px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #3F372C;
  color: #BBA05D;

  transition: transform 0.3s ease;
}

.facilities-btn:hover {
  background: #3F372C;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(63, 55, 44, 0.2);
}

.facilities-btn:hover span {
  background: #BBA05D;
  color: #3F372C;
  transform: translateX(4px);
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 900px) {
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {

  .facilities-section {
    padding: 75px 0;
  }

  .facilities-container {
    width: min(100% - 28px, 500px);
  }

  .facilities-heading {
    margin-bottom: 35px;
  }

  .facilities-heading h2 {
    font-size: 34px;
  }

  .facilities-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .facility-card {
    min-height: 105px;
    padding: 20px;
  }

  .facility-icon {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
  }
}

/* =========================
   ROOM SLIDER
========================= */

.rooms-slider {
  position: relative;
  min-height: 520px;
}

.room-card {
  display: none;
  grid-template-columns: 1.05fr 1fr;
  background: #fff;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(198, 161, 91, 0.15);
  animation: roomFade 0.7s ease;
}

.room-card.active {
  display: grid;
}

@keyframes roomFade {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* IMAGE */

.room-card-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s ease;
}

.room-card:hover .room-card-image img {
  transform: scale(1.05);
}

.room-number {
  position: absolute;
  top: 25px;
  left: 25px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #C6A15B;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  z-index: 3;
}

.room-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 20, 15, 0.7),
      transparent 55%);

  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.room-image-overlay span {
  color: #fff;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;
}


/* CONTENT */

.room-card-content {
  padding: 55px 55px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.room-category {
  color: #C6A15B;
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 16px;
}

.room-card-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  line-height: 1.05;
  color: #2A201B;
  margin: 0 0 20px;
}

.room-card-content h3 em {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  color: #C6A15B;
  font-weight: 400;
  margin-top: 7px;
}

.room-description {
  color: #52463E;
  font-size: 15px;
  line-height: 1.9;
  max-width: 570px;
  margin-bottom: 28px;
}


/* FEATURES */

.room-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 35px;
}


.room-features i {
  color: #C6A15B;
  width: 18px;
  text-align: center;
}


/* BOTTOM */

.room-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid #e8e8e3;
}

.room-price small {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 5px;
}

.room-price strong {
  display: block;
  color: #2A201B;
  font-size: 13px;
  font-weight: 600;
}

.room-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.room-read-btn,
.room-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.35s ease;
}

.room-read-btn {
  color: #2A201B;
  border: 1px solid #2A201B;
}

.room-read-btn:hover {
  background: #2A201B;
  color: #fff;
}

.room-book-btn {
  background: #C6A15B;
  color: #fff;
  border: 1px solid #C6A15B;
}

.room-book-btn:hover {
  background: #2A201B;
  border-color: #2A201B;
}


/* =========================
   SLIDER CONTROLS
========================= */

.room-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 35px;
}

.room-slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #d9d9d2;
  background: #fff;
  color: #2A201B;
  cursor: pointer;
  transition: all 0.35s ease;
}

.room-slider-btn:hover {
  background: #2A201B;
  border-color: #2A201B;
  color: #fff;
  transform: translateY(-2px);
}

.room-slider-counter {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2A201B;
  font-size: 11px;
  letter-spacing: 2px;
}

.room-counter-line {
  width: 55px;
  height: 1px;
  background: #C6A15B;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

  .room-card {
    grid-template-columns: 1fr;
  }

  .room-card-image {
    min-height: 350px;
  }

  .room-card-content {
    padding: 35px 25px;
  }

  .room-card-content h3 {
    font-size: 34px;
  }

  .room-card-content h3 em {
    font-size: 26px;
  }

  .room-features {
    grid-template-columns: 1fr;
  }

  .room-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .room-actions {
    width: 100%;
  }

  .room-read-btn,
  .room-book-btn {
    flex: 1;
  }

}


/* =====================================================
   BREADCRUMB HERO
===================================================== */

.room-page-hero {
    position: relative;
    height: 170px;
    top: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px 0px 40px 0px;
    padding-bottom: 15px;
}

.room-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1.03);
}

.room-hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg,
      rgba(28, 20, 16, 0.92) 0%,
      rgba(42, 32, 27, 0.72) 45%,
      rgba(42, 32, 27, 0.35) 100%);
}

.room-hero-content {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}


/* Breadcrumb */

.room-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 15px;

  color: rgba(255, 255, 255, .75);

  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;

  letter-spacing: 2.5px;
}

.room-breadcrumb a {
  color: #C6A15B;
  text-decoration: none;

  transition: color .3s ease;
}

.room-breadcrumb a:hover {
  color: white;
}

.room-breadcrumb span {
  color: rgba(255, 255, 255, .4);
}

.room-breadcrumb strong {
  color: white;
  font-weight: 500;
}


/* Hero Heading */

.room-hero-content h1 {
  margin: 0;
  max-width: 750px;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 43px;
  letter-spacing: 0.5px;
  padding-bottom: 10px;
}

.room-hero-content h1 em {
  color: #C6A15B;
  font-style: italic;
}

.room-hero-content p {
  max-width: 520px;

  margin-top: 22px;

  color: rgba(255, 255, 255, .85);

  font-family: 'Cormorant Garamond', serif;

  font-size: 22px;

  line-height: 1.5;
}


/* Curved bottom */

.room-hero-curve {
  position: absolute;
  z-index: 4;
  left: -5%;
  bottom: -103px;
  width: 110%;
  height: 109px;
  background: #F7F4ED;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}


/* =====================================================
   INTRO
===================================================== */

.rooms-intro {
  padding: 150px 0 65px;
  background: #ffffff;
  text-align: center;
}

.rooms-intro-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  margin-bottom: 20px;

  color: #C6A15B;

  font-family: 'Jost', sans-serif;

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 3px;
}

.rooms-intro-label span {
  width: 32px;
  height: 1px;

  background: #C6A15B;
}

.rooms-intro h2 {
  margin: 0;

  color: #2A201B;

  font-family: 'Playfair Display', serif;

  font-size: clamp(38px, 5vw, 60px);

  line-height: 1.05;

  font-weight: 400;
}

.rooms-intro h2 em {
  color: #C6A15B;

  font-style: italic;
}

.rooms-intro p {
  max-width: 680px;
  margin: 22px auto 0;
  color: #4A403A;
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  letter-spacing: 0.5px;
  line-height: 1.9;
}



/* =====================================================
   ROOM LIST
===================================================== */

.rooms-list {
  padding: 45px 0 120px;

  background: #FAF8F5;
}


/* Room Card */

.room-card {
  display: grid;

  grid-template-columns: 1.08fr .92fr;

  min-height: 480px;

  margin-bottom: 55px;

  background: #221A16;

  overflow: hidden;

  border-radius: 3px;

  box-shadow:
    0 25px 65px rgba(42, 32, 27, .12);

  transition:
    transform .5s ease,
    box-shadow .5s ease;
}

.room-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 35px 80px rgba(42, 32, 27, .20);
}


/* Reverse card */

.room-card-reverse {
  grid-template-columns: .92fr 1.08fr;
}

.room-card-reverse .room-card-image {
  order: 2;
}

.room-card-reverse .room-card-content {
  order: 1;
}


/* =====================================================
   ROOM IMAGE
===================================================== */

.room-card-image {
  position: relative;

  min-height: 480px;

  overflow: hidden;
}

.room-card-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 1.2s cubic-bezier(.2, .7, .2, 1);
}

.room-card:hover .room-card-image img {
  transform: scale(1.08);
}


/* Image overlay */

.room-image-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(34, 26, 22, .35);

  opacity: 0;

  transition: opacity .5s ease;
}

.room-card:hover .room-image-overlay {
  opacity: 1;
}

.room-image-overlay span {
  padding: 11px 20px;

  border: 1px solid rgba(255, 255, 255, .7);

  color: white;

  font-family: 'Jost', sans-serif;

  font-size: 10px;

  letter-spacing: 3px;
}


/* Room number */

.room-number {
  position: absolute;

  top: 25px;
  left: 25px;

  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #C6A15B;

  color: #221A16;

  font-family: 'Playfair Display', serif;

  font-size: 20px;

  border-radius: 50%;
}


/* =====================================================
   ROOM CONTENT
===================================================== */

.room-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 60px 55px;

  color: white;
}

.room-category {
  display: inline-block;

  margin-bottom: 14px;

  color: #C6A15B;

  font-family: 'Jost', sans-serif;

  font-size: 10px;

  letter-spacing: 3px;

  font-weight: 500;
}

.room-card-content h3 {
  margin: 0 0 17px;

  color: white;

  font-family: 'Playfair Display', serif;

  font-size: clamp(36px, 4vw, 50px);

  font-weight: 400;

  line-height: 1.05;
}

.room-description {
  max-width: 500px;
  margin: 0 0 28px;
  color: rgb(255 255 255);
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  line-height: 1.9;
  letter-spacing: 0.5px;
}


/* =====================================================
   FEATURES
===================================================== */

.room-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    padding: 0px 0;


  /* border-top: 1px solid rgba(255, 255, 255, .13);
  border-bottom: 1px solid rgba(255, 255, 255, .13); */
}

.room-features span {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.5px;
  color: #C6A15B;

  font-family: 'Jost', sans-serif;

  font-size: 14px;
}

.room-features i {
  width: 27px;
  height: 27px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #C6A15B;

  border: 1px solid rgba(198, 161, 91, .35);

  border-radius: 50%;

  font-size: 10px;
}


/* =====================================================
   ROOM BOTTOM
===================================================== */

.room-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;

  margin-top: 28px;
}

.room-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.room-price small {
  color: #C6A15B;

  font-size: 8px;

  letter-spacing: 2px;
}

.room-price strong {
  color: white;

  font-family: 'Playfair Display', serif;

  font-size: 15px;

  font-weight: 400;
}


/* =====================================================
   BUTTONS
===================================================== */

.room-actions {
  display: flex;

  align-items: center;

  gap: 9px;

  flex-shrink: 0;
}

.room-read-btn,
.room-book-btn {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 11px 17px;

  border-radius: 50px;

  font-family: 'Jost', sans-serif;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 1.2px;

  text-transform: uppercase;

  text-decoration: none;

  transition: all .35s ease;
}

.room-read-btn {
  color: #C6A15B;

  border: 1px solid rgba(198, 161, 91, .6);
}

.room-read-btn:hover {
  color: #221A16;

  background: #C6A15B;
}

.room-read-btn i {
  transition: transform .3s ease;
}

.room-read-btn:hover i {
  transform: translateX(4px);
}

.room-book-btn {
  background: #C6A15B;

  color: #221A16;
}

.room-book-btn:hover {
  background: white;

  color: #221A16;

  transform: translateY(-2px);
}


/* =====================================================
   BOTTOM CTA
===================================================== */

.rooms-cta {
  position: relative;

  min-height: 450px;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;

  background:
    url("images/rooms/deluxe-room.png") center / cover no-repeat;
}

.rooms-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 26, 22, 0.85), rgba(28, 20, 16, 0.65));
}

.rooms-cta-content {
  position: relative;

  z-index: 2;

  text-align: center;

  padding: 60px 20px;
}

.rooms-cta-content>span {
  color: #C6A15B;

  font-family: 'Jost', sans-serif;

  font-size: 10px;

  letter-spacing: 4px;
}

.rooms-cta-content h2 {
  margin: 18px 0 15px;

  color: white;

  font-family: 'Playfair Display', serif;

  font-size: clamp(40px, 5vw, 62px);

  font-weight: 400;

  line-height: 1.05;
}

.rooms-cta-content h2 em {
  color: #C6A15B;

  font-style: italic;
}

.rooms-cta-content p {
  margin-bottom: 30px;

  color: rgba(255, 255, 255, .75);

  font-family: 'Jost', sans-serif;

  font-size: 14px;
}

.cta-book-btn {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 14px 25px;

  background: #C6A15B;

  color: #221A16;

  border-radius: 50px;

  font-family: 'Jost', sans-serif;

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  text-decoration: none;

  transition: all .35s ease;
}

.cta-book-btn:hover {
  background: white;

  transform: translateY(-3px);
}

.cta-book-btn i {
  transition: transform .3s ease;
}

.cta-book-btn:hover i {
  transform: translateX(4px);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

  .room-page-hero {
    height: 500px;
  }

  .room-breadcrumb {
    margin-bottom: 70px;
  }

  .room-card,
  .room-card-reverse {
    grid-template-columns: 1fr;
  }

  .room-card-reverse .room-card-image {
    order: 1;
  }

  .room-card-reverse .room-card-content {
    order: 2;
  }

  .room-card-image {
    min-height: 380px;
  }

  .room-card-content {
    padding: 45px 35px;
  }

  .room-bottom {
    align-items: flex-start;

    flex-direction: column;
  }
}


@media (max-width: 600px) {

  .rooms-container {
    width: min(100% - 28px, 500px);
  }

  .room-page-hero {
    height: 90px;
            padding-top: 50px;
  }
  .room-page-hero {
    position: relative;
    height: 120px !important;
    top: 60px !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px 0px 40px 0px;
    padding-bottom: 15px;
}

  .room-hero-content {
    width: calc(100% - 28px);
  }

  .room-breadcrumb {
    margin-bottom: 55px;

    font-size: 9px;

    letter-spacing: 1.5px;
  }

  .room-hero-content h1 {
        font-size: 20px;
        letter-spacing: 0.5px;
                padding-top: 20px;
  }

  .room-hero-content p {
    font-size: 19px;
  }

  .room-hero-curve {
    height: 45px;
  }

  .rooms-intro {
    padding: 75px 0 40px;
  }

  .rooms-list {
    padding: 30px 0 70px;
  }

  .room-card {
    margin-bottom: 30px;
  }

  .room-card-image {
    min-height: 300px;
  }

  .room-card-content {
    padding: 35px 25px;
  }

  .room-card-content h3 {
    font-size: 38px;
  }

  .room-features {
    grid-template-columns: 1fr;
  }

  .room-bottom {
    gap: 20px;
  }

  .room-actions {
    width: 100%;
  }

  .room-read-btn,
  .room-book-btn {
    flex: 1;

    justify-content: center;
  }

  .rooms-cta {
    min-height: 390px;
  }
}

.bg-\[\#1F3D2E\] {
  --tw-bg-opacity: 1;
  background-color: rgb(4 5 68) !important;
}

/* =========================================
   HERO SLIDER
========================================= */

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transform: scale(1);

  transition:
    opacity 1s ease-in-out,
    visibility 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;

  animation: heroKenBurns 6s ease-in-out forwards;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}


/* =========================================
   PREV / NEXT ARROWS
========================================= */

.hero-arrow {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;

  background: rgba(30, 24, 20, 0.45);
  backdrop-filter: blur(8px);

  color: #ffffff;

  font-size: 14px;

  cursor: pointer;

  transition:
    all 0.35s ease;
}

.hero-arrow:hover {
  background: #C6A15B;
  border-color: #C6A15B;
  color: #221A16;

  transform: scale(1.1);
}


/* Mobile */

@media (max-width: 768px) {

  .hero-slide {
    background-position: center center !important;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;

    font-size: 12px;
  }

}




/* =========================================================
   ROOMS ONLY - DOES NOT CHANGE WEBSITE ROOT THEME
========================================================= */

.rooms-hero,
.rooms-intro-section,
.room-showcase,
.rooms-bottom-cta {
  font-family: "Jost", sans-serif;
}


/* =========================================================
   HERO
========================================================= */

.rooms-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  background:
    linear-gradient(rgba(28, 20, 16, 0.65),
      rgba(20, 14, 11, 0.75)),
    url("asset/images/rooms/hill-view.png") center/cover no-repeat;
}

.rooms-hero-content {
  position: relative;
  z-index: 2;
  width: min(850px, 90%);
  text-align: center;
  color: #ffffff;
}

.rooms-eyebrow {
  display: inline-block;
  margin-bottom: 18px;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #C6A15B;
}

.rooms-hero h1 {
  margin: 0;

  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.05;
  font-weight: 600;
}

.rooms-hero h1 em {
  display: block;
  color: #C6A15B;
  font-weight: 500;
}

.rooms-hero p {
  max-width: 650px;
  margin: 25px auto 0;

  font-size: 17px;
  line-height: 1.8;
  color: #ffffff;
}


/* =========================================================
   COMMON GOLD/BROWN BACKGROUND
========================================================= */

.room-showcase-inner,
.rooms-bottom-cta {
  background: #221A16;
  border-radius: 20px;
}


/* =========================================================
   INTRO
========================================================= */

.rooms-intro-section {
  padding: 95px 20px 70px;
  background-color: #FAF8F5;
     margin-top: 100px;
}

.rooms-inner {
  width: min(1120px, 92%);
  margin: auto;
}

.rooms-intro-heading {
  max-width: 780px;
}

.rooms-section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 15px;

  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #C6A15B;
}

.rooms-section-label::before {
  content: "";
  width: 42px;
  height: 2px;
  background: #C6A15B;
}

.rooms-intro-heading h2 {
  margin: 0 0 22px;

  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.1;

  color: #2A201B;
}

.rooms-intro-heading h2 em {
  color: #C6A15B;
  font-weight: 500;
}

.rooms-intro-heading p {
  max-width: 700px;
  margin: 0;

  font-size: 18px;
  color: #4A403A;
  letter-spacing: 0.5px;
}


/* =========================================================
   ROOM SHOWCASE
========================================================= */

.room-showcase {
  padding: 25px 20px;
  background-color: #FAF8F5;
}

.room-showcase-inner {
  width: min(1180px, 92%);
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 65px;
}


/* Reverse sections */

.room-reverse .room-showcase-inner {
  grid-template-columns: 1fr 1fr;
}


/* =========================================================
   IMAGE CAROUSEL
========================================================= */

.room-gallery {
  position: relative;
  min-width: 0;
}

.room-slider {
  position: relative;
  width: 100%;
  height: 570px;

  overflow: hidden;

  border-radius: 16px;

  background: #1C1613;

  box-shadow:
    0 25px 55px rgba(28, 20, 16, .22);
}

.room-slide {
  position: absolute;
  inset: 0;

  opacity: 0;
  visibility: hidden;

  transform: scale(1.04);

  transition:
    opacity .55s ease,
    visibility .55s ease,
    transform .8s ease;
}

.room-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.room-slide img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
}


/* =========================================================
   CAROUSEL ARROWS
========================================================= */

.room-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;

  width: 48px;
  height: 48px;

  transform: translateY(-50%);

  border-radius: 50%;

  background: rgba(28, 20, 16, 0.65);
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  backdrop-filter: blur(5px);

  transition: background .3s ease,
    transform .3s ease,
    border-color .3s ease;
}

.room-prev {
  left: 20px;
}

.room-next {
  right: 20px;
}

.room-arrow:hover {
  background: #C6A15B;
  border-color: #ffffff;
  color: #221A16;

  transform:
    translateY(-50%) scale(1.08);
}


/* =========================================================
   COUNTER
========================================================= */

.room-counter {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 5;

  padding: 8px 13px;

  border-radius: 30px;

  background: rgba(28, 20, 16, .85);

  color: #ffffff;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.room-counter .current-slide {
  color: #C6A15B;
}


/* =========================================================
   ROOM CONTENT
========================================================= */

.room-content {
  position: relative;
  padding: 30px 25px;
}

.room-number-bg {
  position: absolute;
  top: -25px;
  right: 15px;

  font-family: "Playfair Display", serif;
  font-size: 100px;
  line-height: 1;

  font-weight: 600;

  color: rgba(198, 161, 91, 0.15);

  pointer-events: none;
}

.room-type {
  position: relative;
  z-index: 2;

  display: inline-block;

  margin-bottom: 12px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;

  color: #C6A15B;
}

.room-content h2 {
  position: relative;
  z-index: 2;

  margin: 0 0 20px;

  font-family: "Playfair Display", serif;

  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.05;

  font-weight: 600;

  color: #ffffff;
}

.room-description {
  position: relative;
  z-index: 2;

  max-width: 560px;

  margin: 0 0 20px;

  font-size: 17px;
  line-height: 1.85;

  color: #EAE4DC;
}


/* =========================================================
   CAPACITY
========================================================= */

.room-capacity {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 25px;

  font-size: 15px;

  color: #FAF8F5;
}

.room-capacity i {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #C6A15B;
  color: #221A16;
}


/* =========================================================
   FEATURES
========================================================= */


.room-features div {
  min-height: 50px;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px 15px;

  /* border-right: 1px solid rgba(198, 161, 91, .25);
  border-bottom: 1px solid rgba(198, 161, 91, .25); */

  color: #FAF8F5;

  font-size: 14px;
  font-weight: 700;
}

.room-features i {
  width: 28px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 50%;

  background: #C6A15B;
  color: #221A16;

  font-size: 12px;
}


/* =========================================================
   BOOK BUTTON
========================================================= */

.room-book-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 26px;

  border: 1px solid #C6A15B;
  border-radius: 40px;

  background: #C6A15B;
  color: #221A16;

  text-decoration: none;

  font-size: 14px;
  font-weight: 700;

  transition:
    background .3s ease,
    color .3s ease,
    transform .3s ease;
}

.room-book-button:hover {
  background: #ffffff;
  color: #221A16;
  border-color: #ffffff;

  transform: translateY(-3px);
}

.room-book-button i {
  transition: transform .3s ease;
}

.room-book-button:hover i {
  transform: translateX(5px);
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.rooms-bottom-cta {
  padding: 110px 20px;

  text-align: center;
}

.rooms-bottom-content {
  width: min(800px, 92%);
  margin: auto;
}

.rooms-bottom-content>span {
  display: inline-block;

  margin-bottom: 15px;

  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;

  color: #C6A15B;
}

.rooms-bottom-content h2 {
  margin: 0 0 20px;

  font-family: "Playfair Display", serif;

  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.08;

  color: #ffffff;
}

.rooms-bottom-content h2 em {
  color: #C6A15B;
  font-weight: 500;
}

.rooms-bottom-content p {
  max-width: 650px;
  margin: 0 auto 30px;

  font-size: 17px;
  line-height: 1.8;

  color: #EAE4DC;
}

.rooms-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 15px 27px;

  border-radius: 40px;

  background: #C6A15B;
  color: #221A16;

  text-decoration: none;

  font-size: 14px;
  font-weight: 700;

  transition: .3s ease;
}

.rooms-cta-button:hover {
  background: #ffffff;
  color: #221A16;

  transform: translateY(-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .room-showcase-inner,
  .room-reverse .room-showcase-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .room-reverse .room-showcase-inner {
    display: flex;
    flex-direction: column;
  }

  .room-reverse .room-content {
    order: 1;
  }

  .room-reverse .room-gallery {
    order: 2;
  }

  .room-slider {
    height: 420px;
  }

  .room-content h2 {
    font-size: 46px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .rooms-hero {
    min-height: 380px;
  }

  .rooms-hero h1 {
    font-size: 42px;
  }

  .rooms-hero p {
    font-size: 15px;
    line-height: 1.7;
  }

  .rooms-intro-section {
    padding: 65px 20px 45px;
  }

  .rooms-intro-heading h2 {
    font-size: 40px;
  }

  .rooms-intro-heading p {
    font-size: 16px;
  }

  .room-showcase {
    padding: 55px 20px;
  }

  .room-showcase-inner {
    width: 100%;
  }

  .room-slider {
    height: 330px;
  }

  .room-arrow {
    width: 42px;
    height: 42px;
  }

  .room-prev {
    left: 12px;
  }

  .room-next {
    right: 12px;
  }

  .room-content {
    padding: 5px 5px 15px;
  }

  .room-number-bg {
    font-size: 75px;
    top: -10px;
  }

  .room-type {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .room-content h2 {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .room-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .room-features {
    grid-template-columns: 1fr;
  }

  .room-features div {
    min-height: 56px;
  }

  .rooms-bottom-cta {
    padding: 75px 20px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

  .room-slider {
    height: 285px;
  }

  .rooms-hero h1 {
    font-size: 36px;
  }

  .room-content h2 {
    font-size: 34px;
  }

}

.bg-red-600 {

  background-color: rgb(233 30 30);
}

#about {
  background: #ffffffff;
}

#rooms {
     background-color: rgb(63 55 44);
         padding: 70px 0px
}

/* =========================================================
   ALPINE CLOAK (used across new inner pages)
========================================================= */

[x-cloak] {
  display: none !important;
}

/* =========================================================
   ABOUT PAGE
========================================================= */

.about-quote-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(rgba(28, 20, 16, 0.72), rgba(28, 20, 16, 0.72)),
    url("images/gallery/gallery4.png") center/cover no-repeat;
  background-attachment: fixed;
}

.about-quote-content {
  position: relative;
  z-index: 2;
  width: min(820px, 90%);
  text-align: center;
  padding: 70px 20px;
}

.about-quote-mark {
  font-family: "Playfair Display", serif;
  font-size: 90px;
  line-height: 0.5;
  color: #BBA05D;
  opacity: 0.7;
  display: block;
  margin-bottom: 25px;
}

.about-quote-content p {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.4;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.about-quote-rule {
  width: 70px;
  height: 2px;
  background: #BBA05D;
  margin: 28px auto 0;
}

.about-collage {
  position: relative;
  height: 540px;
}

@media (max-width: 900px) {
  .about-collage {
    height: 440px;
  }

  .about-quote-content p {
    font-size: 24px;
  }

  .about-quote-banner {
    background-attachment: scroll;
    min-height: 300px;
  }
}

.about-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #ffffff;
  border: 1px solid rgba(187, 160, 93, 0.35);
  border-radius: 50px;
  color: #3F372C;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  box-shadow: 0 8px 20px rgba(63, 55, 44, 0.06);
}

.about-badge i {
  color: #BBA05D;
}

/* =========================================================
   GALLERY — ALBUM OVERVIEW
========================================================= */
#gallery{
      padding: 70px 0px
}
.gallery-hero-eyebrow {
  color: #BBA05D;
}

.gallery-albums-section {
  padding: 70px 20px 90px;
  background: #FAF8F5;
}

/* Keep gallery heroes in the document flow below the fixed header. */
.gallery-page-hero {
  top: 0;
  margin-top: 150px;
}

.gallery-page-hero .room-breadcrumb {
  margin: 8px 0 0;
}

.gallery-albums-inner {
  width: min(1180px, 92%);
  margin: auto;
}

.gallery-albums-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  margin-top: 60px;
}

.gallery-album-card {
  position: relative;
  display: block;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 20px 50px rgba(63, 55, 44, 0.14);
}

.gallery-album-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2, .7, .2, 1);
}

.gallery-album-card:hover .gallery-album-cover {
  transform: scale(1.1);
}

.gallery-album-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(28, 20, 16, 0.88) 0%, rgba(28, 20, 16, 0.15) 55%, rgba(28, 20, 16, 0.05) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.gallery-album-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(187, 160, 93, 0.92);
  color: #3F372C;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.gallery-album-title {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 8px;
}

.gallery-album-desc {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.gallery-album-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #BBA05D;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gallery-album-link i {
  transition: transform 0.3s ease;
}

.gallery-album-card:hover .gallery-album-link i {
  transform: translateX(6px);
}

@media (max-width: 900px) {
  .gallery-albums-grid {
    grid-template-columns: 1fr;
  }

  .gallery-album-card {
    height: 320px;
  }
}

/* =========================================================
   GALLERY — ALBUM DETAIL + MASONRY + LIGHTBOX
========================================================= */

.gallery-detail-section {
  padding: 90px 20px 90px;
  background: #FAF8F5;
}

.gallery-detail-inner {
  width: min(1180px, 92%);
  margin: auto;
}

.gallery-masonry {
  columns: 3 260px;
  column-gap: 22px;
  margin-top: 55px;
}

.gallery-thumb {
  display: block;
  width: 100%;
  margin: 0 0 22px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  break-inside: avoid;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 32px rgba(63, 55, 44, 0.1);
}

.gallery-thumb img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.7s ease, filter 0.5s ease;
}

.gallery-thumb::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  background: rgba(28, 20, 16, 0);
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-thumb:hover img {
  transform: scale(1.08);
}

.gallery-thumb:hover::after {
  opacity: 1;
  background: rgba(28, 20, 16, 0.35);
}

@media (max-width: 700px) {
  .gallery-masonry {
    columns: 2 180px;
  }
}

@media (max-width: 600px) {
  .room-page-hero.gallery-page-hero {
    top: 0 !important;
    margin-top: 60px;
  }

  .gallery-page-hero .room-breadcrumb {
    margin: 6px 0 0;
  }
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 11, 8, 0.94);
  padding: 30px;
}

.lightbox-image {
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: #BBA05D;
  color: #221A16;
  border-color: #BBA05D;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.lightbox-arrow:hover {
  background: #BBA05D;
  color: #221A16;
  border-color: #BBA05D;
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.lightbox-counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 1.5px;
}

@media (max-width: 600px) {
  .lightbox-arrow {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }
}

/* =========================================================
   ENQUIRY / BOOKING FORM
========================================================= */

.enquiry-section {
  padding: 90px 20px 120px;
  background: #FAF8F5;
      margin-top: 150px;
}

.enquiry-inner {
  width: min(1180px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(63, 55, 44, 0.14);
}

.enquiry-side {
  position: relative;
  min-height: 100%;
  padding: 60px 45px;
  background: linear-gradient(160deg, rgba(28, 20, 16, 0.86), rgba(63, 55, 44, 0.9)),
    url("images/rooms/hill-view.png") center/cover no-repeat;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.enquiry-side span.enquiry-eyebrow {
  color: #BBA05D;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.enquiry-side h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.enquiry-side p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 30px;
}

.enquiry-side-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.enquiry-side-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: #ffffff;
}

.enquiry-side-list i {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(187, 160, 93, 0.18);
  color: #BBA05D;
  border: 1px solid rgba(187, 160, 93, 0.35);
}

.enquiry-form-card {
  background: #ffffff;
  padding: 60px 50px;
}

.enquiry-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 24px;
}

.form-field {
  position: relative;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #8F783F;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(63, 55, 44, 0.18);
  border-radius: 10px;
  background: #FAF8F5;
  color: #3F372C;
  font-family: 'Jost', sans-serif;
  font-size: 14.5px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #BBA05D;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(187, 160, 93, 0.16);
}

.enquiry-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 28px;
  margin-top: 8px;
  border: none;
  border-radius: 50px;
  background: #BBA05D;
  color: #221A16;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
}

.enquiry-submit-btn:hover {
  background: #3F372C;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(63, 55, 44, 0.25);
}

.enquiry-submit-btn i {
  transition: transform 0.3s ease;
}

.enquiry-submit-btn:hover i {
  transform: translateX(5px);
}

.enquiry-success {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 14px;
  background: rgba(76, 148, 102, 0.1);
  border: 1px solid rgba(76, 148, 102, 0.35);
  color: #2f6b45;
  font-size: 14.5px;
  margin-bottom: 26px;
}

.enquiry-success i {
  font-size: 22px;
  color: #4c9466;
}

@media (max-width: 900px) {
  .enquiry-inner {
    grid-template-columns: 1fr;
  }

  .enquiry-form-grid {
    grid-template-columns: 1fr;
  }

  .enquiry-form-card,
  .enquiry-side {
    padding: 45px 28px;
  }
}

/* =========================================================
   ADMIN ENQUIRIES
========================================================= */

.admin-page {
  min-height: 100vh;
  background: #f5f1e8;
}

.admin-dashboard {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 48px 0 70px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.admin-eyebrow {
  display: inline-block;
  color: #8F783F;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.admin-topbar h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  color: #3F372C;
}

.admin-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  background: #3F372C;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.admin-stat {
  background: #ffffff;
  border: 1px solid rgba(63, 55, 44, 0.12);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(63, 55, 44, 0.08);
}

.admin-stat span {
  display: block;
  color: #8F783F;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.admin-stat strong {
  display: block;
  color: #3F372C;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
}

.admin-alert {
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.admin-alert-error {
  background: #fff1f1;
  border: 1px solid #efb5b5;
  color: #8a2929;
}

.admin-table-wrap {
  background: #ffffff;
  border: 1px solid rgba(63, 55, 44, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(63, 55, 44, 0.1);
  overflow: hidden;
}

.admin-table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(63, 55, 44, 0.1);
}

.admin-table-head h2 {
  color: #3F372C;
  font-size: 18px;
  font-weight: 700;
}

.admin-table-head span {
  color: #8F783F;
  font-size: 13px;
  font-weight: 600;
}

.admin-table-scroll {
  overflow-x: auto;
}

.admin-enquiry-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.admin-enquiry-table th,
.admin-enquiry-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(63, 55, 44, 0.08);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.admin-enquiry-table th {
  background: #FAF8F5;
  color: #8F783F;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.admin-enquiry-table a {
  color: #3F372C;
  font-weight: 600;
  text-decoration: none;
}

.admin-message-cell {
  max-width: 300px;
  color: rgba(63, 55, 44, 0.78);
  line-height: 1.55;
}

.admin-empty {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 220px;
  color: rgba(63, 55, 44, 0.7);
  text-align: center;
}

.admin-empty i {
  color: #BBA05D;
  font-size: 36px;
}

.admin-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-top: 1px solid rgba(63, 55, 44, 0.1);
}

.admin-pagination a,
.admin-page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(63, 55, 44, 0.16);
  border-radius: 6px;
  color: #3F372C;
  background: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.admin-pagination a:hover,
.admin-pagination a.is-active {
  background: #3F372C;
  border-color: #3F372C;
  color: #ffffff;
}

.admin-pagination a.is-disabled {
  pointer-events: none;
  opacity: 0.45;
}

.admin-page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-page-numbers span {
  border-color: transparent;
  background: transparent;
  color: rgba(63, 55, 44, 0.6);
}

@media (max-width: 720px) {
  .admin-topbar,
  .admin-table-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-stats {
    grid-template-columns: 1fr;
  }

  .admin-link-btn {
    width: 100%;
  }

  .admin-pagination {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-pagination > a {
    width: 100%;
  }
}

/* =========================================================
   POLICY PAGES (PRIVACY / TERMS)
========================================================= */

.policy-section {
  padding: 90px 20px 120px;
  background: #ffffff;
}

.policy-inner {
  width: min(880px, 92%);
  margin: auto;
}

.policy-updated {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  padding: 9px 18px;
  border-radius: 50px;
  background: rgba(187, 160, 93, 0.12);
  border: 1px solid rgba(187, 160, 93, 0.3);
  color: #8F783F;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.policy-block {
  margin-bottom: 48px;
}

.policy-block:last-child {
  margin-bottom: 0;
}

.policy-block h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 2.6vw, 28px);
  color: #3F372C;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(187, 160, 93, 0.3);
}

.policy-block h3 {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  color: #8F783F;
  margin: 22px 0 10px;
}

.policy-block p {
  color: #564B3C;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 14px;
}

.policy-block ul {
  margin: 0 0 14px;
  padding-left: 0;
  list-style: none;
}

.policy-block ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: #564B3C;
  font-size: 16px;
  line-height: 1.8;
}

.policy-block ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #BBA05D;
  font-size: 12px;
}

.policy-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
  padding: 24px;
  border-radius: 16px;
  background: #FAF8F5;
  border: 1px solid rgba(187, 160, 93, 0.25);
}

.policy-toc a {
  padding: 7px 14px;
  border-radius: 50px;
  background: #ffffff;
  border: 1px solid rgba(187, 160, 93, 0.3);
  color: #3F372C;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.policy-toc a:hover {
  background: #BBA05D;
  color: #221A16;
  border-color: #BBA05D;
}

@media (max-width: 600px) {
  .policy-section {
    padding: 60px 16px 80px;
  }

  .policy-block h2 {
    font-size: 22px;
  }
}

/* =========================================================
   PLACE TO VISIT — INTRO STRIP
========================================================= */

.place-outro {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(rgba(28, 20, 16, 0.78), rgba(28, 20, 16, 0.82)),
    url("images/gallery/gallery1.png") center/cover no-repeat;
}

.place-outro-content {
  position: relative;
  z-index: 2;
  width: min(760px, 90%);
  padding: 70px 20px;
  color: #ffffff;
}

.place-outro-content span {
  color: #BBA05D;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.place-outro-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 18px;
}

.place-outro-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.9;
}
@media (min-width: 1024px) and (max-width: 1316px) {
    .logo-text {
            font-size: 17px !important;
    }
    .tamil {
    font-size: 16px !important;
    color: #ffffff;
    letter-spacing: 0.04em;
    opacity: 1;
    display: contents;
}
}
/* ═══════════════════════════════════════════════
   RESPONSIVE HEADER — TABLET & MOBILE
═══════════════════════════════════════════════ */

/* ── TABLET  (768px – 1023px) ── */
@media (max-width: 1023px) {

  /* Top bar: single row, smaller text */
  .top-bar-fixed>div {
    padding: 0 1rem !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    overflow: hidden;
  }

  .top-bar-fixed>div>div:first-child {
    gap: 0.5rem !important;
    overflow: hidden;
  }

  .top-bar-fixed span,
  .top-bar-fixed a {
    font-size: 11px !important;
    letter-spacing: 0.2px;
  }

  /* Header sits just below the ~30px top bar */
  header {
    top: 30px;
  }

  /* Logo font sizes on tablet */
  .logo-text {
        font-size: 20px !important;
        white-space: nowrap;
        line-height: 35px !important;
         
  }
  .logo-section{
         padding: 10px 0px;
  }

  .tamil {
    font-size: 12px !important;
  }

  .logo-img {
    height: 42px !important;
  }

  /* Show hamburger */
  .mobile-menu {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  /* Header inner padding */
  header .max-w-7xl,
  header .header-inner {
    padding: 10px 1rem !important;
  }

  /* Hide email on tablet — keeps top bar single line */
  .top-bar-email {
    display: none !important;
  }
}

/* ── MOBILE  (≤ 767px) ── */
@media (max-width: 767px) {

  /* Hide top-bar entirely on mobile — too cramped */
  .top-bar-fixed {
    display: none;
  }

  /* Header starts at very top when top-bar is hidden */
  header {
    top: 0;
  }

  /* Logo sizing */
  .logo-img {
    height: 36px !important;
    width: auto !important;
  }

  .logo-text {
    font-size: 10px !important;
    letter-spacing: 0.06em !important;
    white-space: nowrap;
    margin-bottom: 4px !important;
        line-height: 20px !important;
  }

  .tamil {
    font-size: 9px !important;
  }
  .logo-section{
    padding: 10px 0px !important;
        line-height: 10px !important;
  }

  /* Header inner padding for mobile */
  header .max-w-7xl,
  header .header-inner {
    padding: 10px 1rem !important;
  }

  /* Show hamburger button */
  .mobile-menu {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  /* Mobile dropdown menu */
  header [x-show="menuOpen"],
  header .lg\:hidden[x-show] {
    padding: 1rem 1.25rem !important;
    gap: 0.75rem !important;
    font-size: 0.85rem !important;
  }

  header [x-show="menuOpen"] a,
  header .lg\:hidden[x-show] a {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(63, 55, 44, 0.12);
    display: block;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  header [x-show="menuOpen"] a:last-child,
  header .lg\:hidden[x-show] a:last-child {
    border-bottom: none;
  }
}


@media (max-width: 767px) {

    .logo-section {
        width: 185px !important;
        min-width: 185px !important;
        display: block !important;
        line-height: 1.2 !important;
    }

    .logo-text-font-display,
    .logo-text {
        display: block !important;
        width: 214px !important;
        max-width: 214px !important;
        white-space: normal !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
        font-size: 18px !important;
        line-height: 25px !important;
        letter-spacing: 0.02em !important;
        margin-top: 0px !important;
    }

    .tamil {
        display: none !important;
        white-space: nowrap !important;
        font-size: 8px !important;
        line-height: 13px !important;
    }
}
/* ── SMALL MOBILE  (≤ 380px) ── */
@media (max-width: 380px) {
  .logo-text {
    font-size: 11px !important;
            white-space: nowrap !important;     
            display: unset !important;
  }

  .tamil {
    font-size: 10px !important;
  }

  .logo-img {
    height: 20px !important;
  }
  .logo-section{
    line-height: 7px  !important;
  }

  header .max-w-7xl,
  header .header-inner {
    padding: 12px 0.75rem !important;
  }
}

.read-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000478;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.read-more::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #000478;
    transition: width 0.35s ease;
}

.read-more-arrow {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.35s ease;
}

.read-more:hover {
    color: #000478;
}

.read-more:hover::after {
    width: 100%;
}

.read-more:hover .read-more-arrow {
    transform: translateX(7px);
}


#rooms {
     background-color: rgb(63 55 44);
         padding: 70px 0px
}

.contact-sub-page,
.about-sub{
  padding-top:200px !important;
}
