

/* ✅ Scroll offset */
:root {
  --nav-height: 56px;

  --border: #dee2e6;
  --muted: #6c757d;
  --text: #212529;
  --tab-bg: #f8f9fa;
  --accent-600: #0d6efd;

}

html {
  /* scroll-padding-top: var(--nav-height); */
  scroll-behavior: smooth;
}

/* ✅ REMOVE fixed padding */
body {
  margin: 0;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;

    padding-bottom: 70px;
  
}


/* removes underline on hover */
a:hover {
  text-decoration: underline;
}


.navbar a:hover {
  text-decoration: none;
}


section[id] {
  scroll-margin-top: 65px;
}

@media (max-width: 768px) {
  section[id] {
    scroll-margin-top: 65px;
  }
}

/* ✅ Navbar improvements */
.navbar-nav {
  flex-wrap: wrap;
}

/* Prevent huge menu overflow */
@media (max-width: 991px) {
  .navbar-collapse {
    max-height: 75vh;
    overflow-y: auto;
  }
}

.section-divider {
  height: 10px;
  background: linear-gradient(to right, transparent, #1c1d1e, transparent);
}

/* ===============================
   ✅ BASE UNIFIED CAROUSEL
   =============================== */

.carousel-unified {
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
}

/* Inner slide layout */
.carousel-unified .carousel-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
}

/* Images */
.carousel-unified .carousel-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
}






/* ===============================
   ✅ LANDSCAPE MODE (photos)
   =============================== */

.carousel-landscape .carousel-item {
  height: clamp(220px, 45vh, 450px);
}

.carousel-landscape .carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This ensures the images are similar height with a bit of cropping */
}

@media (max-width: 768px) {
  .carousel-landscape .carousel-item {
    height: 300px;
  }
}


/* ===============================
   ✅ PORTRAIT MODE (menus)
   =============================== */

.carousel-portrait .carousel-item {
  height: clamp(300px, 70vh, 750px);
}

.carousel-portrait .carousel-image {
  width: auto;
  height: 100%;
  object-fit: contain;
}

/* ===============================
   ✅ CAPTIONS (shared)
   =============================== */

.carousel-unified .carousel-caption {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  width: clamp(260px, 60%, 600px);

  background: rgba(0,0,0,0.65);
  padding: 0.75rem;
  /* border-radius: 0.6rem; */

  text-align: center;
}

.carousel-unified .carousel-caption h5,
.carousel-unified .carousel-caption p {
  margin: 0;
}


/* ✅ Caption below image */
.carousel-caption-text {
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

/* fade out */
.fade-out {
  opacity: 0;
  transform: none;
}


/* fade in */
.fade-in {
  opacity: 1;
  transform: translateY(0);
}



/* ✅ Caption container */
.caption-container {
  width: 100%;
  /* margin: 1rem auto 0;   ✅ THIS centers perfectly */
  margin: 0.25rem auto 0;    /* ✅ THIS centers perfectly */
  
  background: rgba(0,0,0,0.80); /* slightly darker */
  border-radius: 1rem;
  border-top: 1px solid #e0e0e0;

  padding: 1rem 1.25rem;
  text-align: center;
}


/* ✅ Main text */
.carousel-caption-text {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #fff; /* white */

  max-width: 650px;
  margin: 0 auto;

  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* ✅ Optional: subtle hierarchy (looks better) */
.carousel-caption-text strong {
  color: #212529;
}



/* ***********************************/
/* ✅ Gradient full height controls  */
/* ***********************************/
.carousel-unified .carousel-control-prev,
.carousel-unified .carousel-control-next {
  top: 0;
  bottom: 0;
  width: 10%;
  opacity: 1;
}

.carousel-unified .carousel-control-prev::before,
.carousel-unified .carousel-control-next::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.carousel-unified .carousel-control-prev::before {
  background: linear-gradient(to right, rgba(0,0,0,0.7), transparent);
}

.carousel-unified .carousel-control-next::before {
  background: linear-gradient(to left, rgba(0,0,0,0.7), transparent);
}

.carousel-unified .carousel-control-prev-icon,
.carousel-unified .carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  filter: invert(1);
  z-index: 1;
}

/* ===============================
   ✅ LINK STYLES
   =============================== */

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/*******************************/
/* opening hours table styling */
/*******************************/

/* Table container enables horizontal scroll on mid widths */
.table-wrap {
  width: 100%;
  overflow: auto;               /* scrolling container for sticky header/column */
  /* -webkit-overflow-scrolling: touch; now obsolete */
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: #fff;
  max-height: 420px;               /* set a height to enable vertical scrolling */
}

/* Base table styles */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  /* min-width: 420px; triggers horizontal scroll if viewport is narrower */
}
.hours-table thead th {
  text-align: center;
  padding: 0.6rem 0.75rem;
  /* border-bottom: 2px solid var(--border); */
  border: 1px solid var(--border);
  color: var(--muted);
  background: #00000025;
  position: sticky; top: 0; z-index: 1;
  font-size: 0.9rem;
}
.hours-table tbody td {
  padding: 0.6rem 0.75rem;
  /* border-bottom: 1px solid var(--border); */
  border: 1px solid var(--border);
  font-size: 1rem;
}
.note {
    color: var(--muted);
    margin: 0.5rem 0 0;
    font-size: 1rem;
}

.hours-table tbody tr {
    margin-bottom: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: background-color 0.2s ease;
}

.hours-table tbody tr:nth-child(odd) {
    background-color: #f0f0f0;
}

.hours-table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.hours-table tbody tr:hover {
    background-color: #e2e6ea;
}

/* Small screens: stack table rows into cards using header labels */
@media (max-width: 560px) {
  .table-wrap { border: none;}
  .hours-table thead { display: none; }
  .hours-table,
  .hours-table tbody,
  .hours-table tr,
  .hours-table td {
    display: block;
    width: 100%;
    /* padding: 10px; */
  }

/* Keep your existing row style */
.hours-table tbody tr {
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: #fff;
  overflow: hidden;
}

  
.hours-table tbody td {
  padding: 0.6rem 0.75rem;
  border: 0; /* reset */
  border-bottom: 1px dashed var(--border);
  position: relative;
  border-left: 1px solid var(--border);
}

  .hours-table tbody td:last-child {
    border-bottom: 0;
  }
  
  .hours-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
}

/* Tabs [buttons at the top of the table */
.tabs
{
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--tab-bg);
  padding: 0.5rem;
}

.tabs [role="tab"]
{
  appearance: none;
  border: 1px solid transparent;
  background: #fff;
  color: var(--text);
  font-weight: 600;
  padding: 0.5rem 0.8rem;
  border-radius: 0.5rem;
  cursor: pointer;
}

.tabs [role="tab"][aria-selected="true"]
{
  background: #eef2ff;
  color: var(--accent-600);
  border-color: #dbeafe;
}



/* ****************/
/* navbar styling */
/******************/

/* ✅ Navbar base */
.custom-navbar {
  background: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}

/* ✅ Brand */
.custom-navbar .navbar-brand {
  color: #212529;
  font-weight: 600;
}

/* ✅ Links */
.custom-navbar .nav-link {
  color: #495057;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.custom-navbar .nav-link:hover {
  color: #000;
}

/* ✅ Align items cleanly */
.navbar-nav .nav-item {
  display: flex;
  align-items: center;
}

.navbar .btn {
  display: flex;
  align-items: center;
}

/* ✅ Mobile icons */
/* .mobile-icon {
  color: #212529;
  font-size: 1.2rem;
  padding: 0.25rem 0.4rem;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.mobile-icon:hover {
  color: #000;
} */

/* ✅ BUTTON SYSTEM (shared with floating bar) */

/* Call */
.call-btn {
  background-color: #198754;
  color: #fff;
  border: none;
}

.call-btn:hover {
  background-color: #157347;
}


/* Book */
.book-btn {
  background-color: #ffc107;
  color: #000;
  border: none;
}

.book-btn:hover {
  background-color: #e0a800;
  color: #fff;
}


/* Rooms */
.room-btn {
  background-color: #0d6efd;
  color: #fff;
  border: none;
}

.room-btn:hover {
  background-color: #0b5ed7;
}


/* ✅ Floating bar container */
.mobile-action-bar {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: calc(100% - 20px);

  border-radius: 12px;
  overflow: hidden;

  display: flex;
  z-index: 9999;

  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  
}

/* ✅ Individual buttons */
.mobile-action-bar .action-btn {
  flex: 1;
  text-align: center;
  padding: 0.6rem 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ✅ Icons */
.mobile-action-bar i {
  font-size: 1.2rem;
  margin-bottom: 2px;
}

/* ✅ Hover effect */
.mobile-action-bar .action-btn:active {
  opacity: 0.9;
}


/* Mobile top icons */
.mobile-icon {
  color: #212529;
  font-size: 1.2rem;
  padding: 0.25rem 0.4rem;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
}

/* Optional hover */
.mobile-icon:hover {
  color: #000;
}



/* ✅ Rooms */
.room-icon {
  color: #0d6efd;
}

/* ✅ Table */
.table-icon {
  color: #ffc107;
}

/* ✅ Phone */
.phone-icon {
  color: #198754;
}

/* ✅ Hover states (optional) */
.room-icon:hover {
  color: #0b5ed7;
}

.table-icon:hover {
  color: #e0a800;
}

.phone-icon:hover {
  color: #157347;
}


.map-container {
  width: 100%;
  height: clamp(300px, 50vh, 600px);
  border-radius: 0.6rem;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;   /* ✅ important */
}

/* ======**==========================
   SPECIAL OFFER BANNER - all versions
   ==============**================== */

.hero-carousel-section {
    position: relative;
}

.hero-event-overlay {
    position: absolute;

    top: 20px;
    left: 50%;
    transform: translatex(-50%);

    width: 100%;
    padding: 1rem;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 999;
    pointer-events: none;
}

.hero-event-card {

  /* size the card banner */
    width: min(700px, 90vw);

    background: rgba(0,0,0,0.80);
    backdrop-filter: blur(8px);

    /* color: white; */

    padding: 1.5rem;
    border-radius: 1rem;

    text-align: center;

    box-shadow: 0 10px 30px rgba(0,0,0,0.35);

    pointer-events: auto;
}

.hero-event-card .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    min-width: 180px;
    margin: 0 auto;
}

.hero-event-card h2 {
    padding-top: 0.5rem;
    /* font-size: 1.25rem; */
    color: #fff;
    font-weight: 400; 
    /* margin-bottom: 0.5rem; */
  }

.hero-event-card p {
  color: #fff;
  font-weight: 400;
    font-size: 1.1rem;
    padding-top: 0.5rem;
}

.hero-event-badge {
    display: inline-block;

    background: #b6b4b5;
    color: #000;

    padding: 0.3rem 0.7rem;
    border-radius: 999px;

    font-size: 0.75rem;
    font-weight: 500;

    margin-bottom: 0.75rem;
}

.event-close {
    position: absolute;
    top: 10px;
    right: 15px;

    background: transparent;
    border: none;

    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Scoped styles for the hero section only */
      .hero-carousel-section .carousel-item
      {
        /* height: calc(var(--vh) * 100); */
        height: calc(100dvh - var(--nav-height));
        position: relative;
      }

      .hero-carousel-section .carousel-item img
      {
        height: 100%;
        width: 100%;
        object-fit: cover;
      }

      /* Overlay container for the text */
      .hero-carousel-section .hero-overlay {
        position: absolute;
        left: 50%;
        bottom: 15%;        /* the amount it pushes up from the bottom */
        transform: translateX(-50%);
        width: 55%;              /* % of image width */
        max-width: 36rem;
        text-align: center;
        color: #fff;

        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;

        z-index: 2;

        /* Background appearance for visibility */    
        background: rgba(0, 0, 0, 0.25);
        border-radius: 25px; /* optional: softer look */

        padding: 1.5rem;   /* actually NOT present in your code */
}

      /* Headline styling */
      .hero-carousel-section .hero-headline {
        font-size: clamp(2rem, 4vw, 3.25rem);
        line-height: 1.1;
        font-weight: 600;
        margin: 0;
        text-shadow: 0 2px 12px rgba(0,0,0,.45);
      }

      /* CTA row */
      .hero-carousel-section .hero-cta {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
      }

      .hero-carousel-section .hero-cta .btn {
        padding: 0.85rem 2.2rem;
        font-size: clamp(1rem, 1.4vw, 1.15rem);
        border-radius: 2rem;
      }

      /* Refinements for larger screens */
      @media (min-width: 992px)
      {
        .hero-carousel-section .hero-overlay
        {
          width: 52%;
        }
        .hero-carousel-section .carousel-item img
        {
          height: 100vh;  /* the % height of the hero section */
          object-fit: cover;
        }
      }

      @media (min-width: 1200px) {
        .hero-carousel-section .hero-overlay {
          width: 54%;
        }
      }
      
    /* ✅ Top branding overlay */
    .hero-carousel-section .hero-top-overlay {
      /* positioning */
      position: absolute;
      top: 15%; /* pushes it down from the top */
      left: 50%;
      transform: translateX(-50%);
      
      /* display */
      display: flex;
      justify-content: center;
      align-items: center;

      /* sizing */
      width: 60%; /* this sizes it to the width of the overlay */
      height: 100px; /* ✅ REQUIRED for vertical centering */
      /* height: auto; /* ✅ REQUIRED for vertical centering */
      
      /* Background appearance for visibility */    
      background: rgba(0, 0, 0, 0.45);
      border-radius: 25px; /* optional: softer look */

      /* layering */
      z-index: 2;

    }

    .hero-carousel-section .hero-top-overlay h1
    {
      font-size: clamp(1.5rem, 4vw, 3.25rem);
      line-height: 1.5;
      font-weight: 600;

      /* text colour */
      color: #fff;

    }

  /* centred review widgets styling */
  .widget-container
  {
    min-height: 200px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;

    display: flex;
    justify-content: center;
    align-items: center;
  }

  .widget-container iframe
  {
    width: 190px;
    height: 160px;
    border: none;
  }

