/* FONTS IMPORT */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hurricane&family=Island+Moments&family=Quicksand:wght@300..700&display=swap");

@font-face {
  font-family: "Amsterdam One";
  src: url("../fonts/amsterdam-one.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* ROOT VARIABLES */
:root {
  --font-primary: "Island Moments", cursive;
  --font-secondary: "Cormorant Garamond", serif;

  --colour-primary: #436043;
  --colour-secondary: #759075;
  --colour-tertiary: #ffffff;
  --colour-accent: #c1bd88;
  --colour-blue: #28293e;

  --transition-fast: 0.25s ease;
  --transition-medium: 0.45s ease;

  --colour-accent-rgb: 49, 72, 49; /* match your accent colour */
}

/* ===========================
   GLOBAL RESET & TYPOGRAPHY
   =========================== */
body {
  font-family: var(--font-secondary);
  background: url("../images/page-bg.svg") center/cover no-repeat fixed;
  color: var(--colour-primary);
  overflow-x: hidden;
}
h1 {
  font-family: var(--font-primary);
  letter-spacing: 2px;
  color: var(--colour-accent);
  text-align: center;
}

h2 {
  font-family: var(--font-primary);
  font-weight: 550;
  font-size: 3.2rem;
  letter-spacing: 2px;
  color: var(--colour-tertiary);
  text-align: center;
}

h3,
h4 {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 3.2rem;
  letter-spacing: 1px;
  color: var(--colour-tertiary);
  text-align: center;
}

p,
li {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  text-align: center;
  color: var(--colour-tertiary);
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  background: rgba(49, 72, 49, 0.75);
  backdrop-filter: blur(6px);
  padding: 0.1rem 0;
}

.navbar-brand img {
  height: 100px;
}

.navbar .nav-link {
  color: var(--colour-accent);
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 400;
  margin-left: 20px;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--colour-tertiary);
  opacity: 0.85;
}

/* ================================
   BOOK ONLINE DROPDOWN
   ================================ */

.navbar .dropdown-menu {
  margin-top: 12px;
  padding: 8px 0;
  min-width: 190px;

  background: rgba(40, 41, 62, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Dropdown links */
.navbar .dropdown-item {
  padding: 10px 18px;

  color: var(--colour-tertiary);
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: 500;

  background: transparent;
  transition: all 0.25s ease;
}

/* Hover */
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  color: var(--colour-accent);
  background: rgba(255, 255, 255, 0.06);
}

/* Dropdown arrow */
.navbar .dropdown-toggle::after {
  margin-left: 7px;
  vertical-align: 0.15em;
}

/* Keep Book Online accentuated */
.navbar .dropdown.show > .nav-link {
  color: var(--colour-accent);
}

/* ===========================
   HERO SECTION (FIXED BG)
   =========================== */
.hero {
  height: auto;
}

.header-spacer {
  height: 100px;
}

.hero-banner {
  background: url("../images/stay-wyld-entrance.png") center/cover no-repeat;
  width: 100%;
  position: relative;
  height: 90vh;
  border-bottom: 6px solid var(--colour-accent);
  scroll-margin-top: 100px;
}

/* Homepage glass welcome card */
.welcome-card {
  position: relative;
  z-index: 2;
  width: 30%;
  margin-right: 10vw;
  padding: 25px 25px !important;
  background: rgba(40, 41, 62, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.welcome-card .welcome-eyebrow {
  margin-bottom: 5px;
  color: var(--colour-accent);
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.welcome-card h2 {
  margin-bottom: 20px;
  color: var(--colour-accent);
  font-family: var(--font-primary);
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1;
}

.welcome-card p:not(.welcome-eyebrow) {
  margin-bottom: 0;
  color: var(--colour-tertiary);
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* =========================================
   OPENING OFFER BANNER
   ========================================= */

.opening-offer {
  width: 100%;
  margin: 0;
  padding: 22px 20px;

  background: var(--colour-accent);
  color: #ffffff;

  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle luxury texture / depth */
.opening-offer::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.10),
      transparent 60%
    );

  pointer-events: none;
}

.opening-offer-inner {
  position: relative;
  z-index: 1;

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

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.opening-offer-content {
  flex: 0 1 auto;
}

/* Small heading */
.opening-offer-eyebrow {
  display: block;

  margin-bottom: 5px;

  font-family: var(--font-secondary);
  font-size: 0.95rem;
  font-weight: 600;

  letter-spacing: 3px;
  text-transform: uppercase;

  color: #ffffff;
}

/* Property names */
.opening-offer h2 {
  margin: 0;

  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.1;

  letter-spacing: 1.5px;

  color: var(--colour-blue);
}

/* Offer information */
.opening-offer p {
  margin: 8px 0 0;

  font-family: var(--font-secondary);
  font-size: 0.95rem;
  font-weight: 500;

  letter-spacing: 0.7px;

  color: #ffffff;
}

/* Make the offer itself stand out */
.opening-offer .offer-highlight {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Elegant little separators */
.opening-offer .offer-divider {
  margin: 0 8px;
  opacity: 0.65;
}

/* Decorative lines either side */
.opening-offer-line {
  width: 70px;
  height: 1px;

  flex-shrink: 0;

  background: rgba(255, 255, 255, 0.65);
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {

  .opening-offer {
    padding: 20px 15px;
  }

  .opening-offer-inner {
    gap: 12px;
  }

  .opening-offer-line {
    display: none;
  }

  .opening-offer h2 {
    font-size: 1.55rem;
    letter-spacing: 1px;
  }

  .opening-offer-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 2.5px;
  }

  .opening-offer p {
    font-size: 0.78rem;
    line-height: 1.6;
  }

  .opening-offer .offer-divider {
    margin: 0 4px;
  }
}


/* =========================================
   VERY SMALL SCREENS
   ========================================= */

@media (max-width: 480px) {

  .opening-offer h2 {
    font-size: 1.35rem;
  }

  .opening-offer p {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===========================
   HOMEPAGE SHARED GLASS PANELS
   =========================== */
.glass-panel {
  position: relative;
  background: rgba(40, 41, 62, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.home-section {
  padding: 80px 0;
}

.units-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-section {
  padding-top: 70px;
  padding-bottom: 90px;
}

.section-heading-home {
  text-align: center;
  margin-bottom: 40px;
}

.home-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--colour-accent);
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* HOMEPAGE ABOUT SECTION */

#about {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 40px;
  scroll-margin-top: 100px;
}

section.bg-light {
  background-color: #f7f7f7;
}

.about-container {
  width: 100%;
  margin: 0 auto;
  padding: 60px clamp(25px, 6vw, 75px);
  background: rgba(40, 41, 62, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.about-container .section-heading-home {
  margin-bottom: 35px;
}

.about-container h2 {
  margin-bottom: 0;
  color: var(--colour-accent);
  font-size: clamp(2.8rem, 5vw, 3.8rem);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content p {
  margin-bottom: 22px;
  color: var(--colour-tertiary);
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  line-height: 1.85;
  text-align: center;
}

.about-content p.lead {
  color: var(--colour-tertiary);
  font-size: 1.15rem;
  line-height: 1.8;
}

.about-content p:last-child {
  margin-top: 35px;
  margin-bottom: 0;
  color: var(--colour-accent);
  font-size: 1.2rem;
  font-weight: 500;
}

/* GALLERY BANNER */
#gallery-banner {
  position: relative;
  padding: 0;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 20px;
  scroll-margin-top: 130px;
}

.gallery-banner-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.gallery-banner-wrapper::before,
.gallery-banner-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 2;
  background: var(--colour-accent);
}

.gallery-banner-wrapper::before {
  top: 0;
}

.gallery-banner-wrapper::after {
  bottom: 0;
}

.gallery-banner-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* HOMEPAGE STAY WITH US */
#units {
  scroll-margin-top: 90px;
  padding: 40px 0;
  margin: 0;
  width: 100%;
  border-radius: 0;
  text-align: center;
}

.units-panel {
  padding: 15px 15px 15px;
}

.units-panel .section-heading-home {
  margin-bottom: 5px;
}

.units-panel .units-heading {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 2px;
  color: var(--colour-accent);
  font-family: var(--font-primary);
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 0.8;
}

.units-panel .units-heading::after {
  content: "";
  position: absolute;
  left: 10%;
  bottom: 0;
  width: 80%;
  height: 3px;
  background: var(--colour-accent);
  border-radius: 50%;
  opacity: 0.85;
}

.units-panel .units-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 10px 0 0;
}

.units-panel .unit-card {
  flex: 1;
  width: auto;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid var(--colour-accent);
}

.units-panel .unit-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.30);
}

.units-panel .unit-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 25%;
  padding: 15px 20px;
  background: rgba(40, 41, 62, 0.90);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.units-panel .unit-overlay h3 {
  margin: 0 0 5px;
  padding: 0;
  color: var(--colour-tertiary);
  font-family: var(--font-primary);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
}

.units-panel .unit-link {
  padding: 0;
  color: var(--colour-accent);
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.units-panel .unit-link:hover {
  color: var(--colour-tertiary);
  text-decoration: none;
  transform: translateY(-1px);
}

/* UNIT CARD BACKGROUND IMAGES */

.units-panel .unit-tinkers {
  background-image: url("../images/tinkers-lodge-int1.png");
}

.units-panel .unit-keepers {
  background-image: url("../images/keepers-cottage-int.png");
}

.units-panel .unit-shepherds {
  background-image: url("../images/the-shepherds-keep-int2.png");
}

/* HOMEPAGE BANNER_1 SECTION */

.banner-1 {
    width: 100%;
    height: 50vh;
    margin: 30px 0;
    overflow: hidden;

    background-image: url("../images/tinker-lodge-banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-top: 3px solid var(--colour-accent);
    border-bottom: 3px solid var(--colour-accent);

    scroll-margin-top: 120px;
}


/* HOMEPAGE CONTACT SECTION */
.contact-section {
  width: 100%;
  margin: 0;
  padding: 80px 0 100px;
  background: transparent;
  border-radius: 0;
  scroll-margin-top: 120px;
}

.contact-panel {
  max-width: 850px;
  margin: 0 auto;
  padding: 55px clamp(25px, 6vw, 65px);
}

.contact-panel .contact-heading {
  margin: 0;
  color: var(--colour-accent);
  font-family: var(--font-primary);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
}

.contact-panel .form-label {
  color: var(--colour-accent);
  font-family: var(--font-secondary);
  font-weight: 600;
}

.contact-panel .form-control,
.contact-panel .form-select {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--colour-blue);
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-panel .form-control:focus,
.contact-panel .form-select:focus {
  background: #ffffff;
  border-color: var(--colour-accent);
  box-shadow: 0 0 0 0.2rem rgba(193, 189, 136, 0.25);
  outline: none;
}

.contact-panel .btn-primary {
  display: block;
  margin: 25px auto 0;
  padding: 12px 32px;
  background: var(--colour-accent);
  border: 1px solid var(--colour-accent);
  border-radius: 50px;
  color: var(--colour-blue);
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.contact-panel .btn-primary:hover {
  background: var(--colour-tertiary);
  border-color: var(--colour-tertiary);
  color: var(--colour-blue);
  transform: translateY(-2px);
}

#formMessage {
  text-align: center;
}

#formMessage p {
  color: var(--colour-accent);
}

/* ===========================
   HOMEPAGE MOBILE
   =========================== */
@media (max-width: 1000px) {
  .welcome-card {
    width: 55%;
    margin-right: 5vw;
  }

  .units-panel .units-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .units-panel .unit-card {
    width: 80%;
    flex: none;
  }
}

@media (max-width: 800px) {
  .welcome-card {
    width: 80vw;
    max-width: 90%;
    margin: 150px auto auto auto;
  }
}

@media (max-width: 768px) {
  .home-section {
    padding: 55px 0;
  }

  .welcome-card {
    width: 92%;
    margin: 0 auto;
    padding: 35px 25px !important;
    border-radius: 16px;
  }

  .welcome-card h2 {
    font-size: 3rem;
  }

  .welcome-card p:not(.welcome-eyebrow) {
    font-size: 1rem;
    line-height: 1.7;
  }

  #units {
    padding: 55px 0;
  }

  .units-panel {
    padding: 40px 20px 25px;
  }

  .units-panel .units-heading {
    font-size: 2.8rem;
  }

  .units-panel .unit-card {
    width: 100%;
    height: 300px;
  }

  .about-container {
    padding: 45px 25px;
  }

  .about-container h2 {
    font-size: 2.8rem;
  }

  .about-content p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .contact-section {
    padding: 55px 0 70px;
  }

  .contact-panel {
    padding: 45px 22px;
    border-radius: 16px;
  }

  .contact-panel .contact-heading {
    font-size: 2.8rem;
  }
}

@media (max-width: 500px) {
  .welcome-card h2 {
    font-size: 2.6rem;
  }

  .units-panel .units-heading {
    font-size: 2.5rem;
  }

  .units-panel .unit-card {
    height: 280px;
  }

  .about-container h2 {
    font-size: 2.5rem;
  }
}

/* ===========================
   LUXURY CARDS (JS READY)
   =========================== */
.lux-card {
  background: var(--colour-tertiary);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: var(--transition-medium);
  border: 1px solid rgba(49, 72, 49, 0.15);
}

.lux-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  border-color: var(--colour-accent);
}

/* ===========================
   BUTTONS
   =========================== */
.btn-wyld {
  background: var(--colour-primary);
  color: var(--colour-tertiary);
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.btn-wyld:hover {
  background: var(--colour-secondary);
  color: var(--colour-tertiary);
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.text-accent {
  color: var(--colour-accent);
}

.bg-primary {
  background: var(--colour-primary);
}

.bg-secondary {
  background: var(--colour-secondary);
}

.bg-accent {
  background: var(--colour-accent);
}
 /* FOOTER STYLES */
/* =========================================
   STAY WYLD FOOTER
========================================= */

.site-footer {
  background: var(--colour-accent);
  color: var(--colour-blue);
  padding: 15px 0 10px;
}

/* =========================================
   TWO COLUMN LAYOUT
========================================= */

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;

  padding-bottom: 15px;
}


/* =========================================
   LEFT COLUMN
========================================= */

.footer-left {
  text-align: left;
}

.footer-left h3 {
  margin: 0 0 12px;

  color: var(--colour-blue);

  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer-left p {
  margin: 0;

  color: var(--colour-blue);

  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-left .footer-location {
  margin-top: 10px;

  font-size: 0.8rem;
  opacity: 0.7;
}


/* =========================================
   RIGHT COLUMN
========================================= */

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;

  text-align: right;
}


/* =========================================
   FOOTER LINKS
========================================= */

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--colour-blue);

  text-decoration: none;

  font-size: 0.9rem;

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

.footer-links a:hover {
  opacity: 0.6;
  transform: translateX(-3px);
}


/* =========================================
   SOCIAL LINKS
========================================= */

.footer-social {
  display: flex;
  gap: 22px;

  margin-top: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--colour-accent);

  text-decoration: none;

  font-size: 0.9rem;

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

.footer-social a:hover {
  opacity: 0.6;
  transform: translateY(-2px);
}

.footer-social i {
  font-size: 1rem;
}


/* =========================================
   COPYRIGHT
========================================= */

.footer-bottom {
  padding-top: 10px;

  border-top: 1px solid rgba(40, 41, 62, 0.15);

  text-align: center;
}

.footer-bottom p {
  margin: 0;

  color: var(--colour-blue);

  font-size: 0.75rem;
  letter-spacing: 0.03em;

  opacity: 0.7;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .site-footer {
    padding: 50px 0 25px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;

    padding-bottom: 40px;
  }


  .footer-left {
    text-align: center;
  }


  .footer-right {
    align-items: center;
    text-align: center;
  }


  .footer-social {
    justify-content: center;
  }

}

/* =========================================================
   THE WYLD COLLECTIVE
   TERMS & CONDITIONS
   ========================================================= */


/* =========================================================
   LEGAL HERO
   ========================================================= */

.legal-hero {
  width: 100%;
  min-height: 330px;

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

  padding: 120px 20px 60px;
  margin-top: 50px;

  background:
    linear-gradient(
      rgba(40, 41, 62, 0.70),
      rgba(40, 41, 62, 0.82)
    ),
    url("../images/woodland-banner.jpg") center / cover no-repeat;

  text-align: center;
}

.legal-hero-inner {
  max-width: 900px;
  width: 100%;
}

.legal-eyebrow {
  display: block;

  margin-bottom: 10px;

  color: var(--colour-accent);

  font-family: var(--font-secondary);
  font-size: 0.75rem;
  font-weight: 600;

  letter-spacing: 3px;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0;

  color: #ffffff;

  font-family: var(--font-primary);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 500;

  letter-spacing: 2px;
  line-height: 1.05;
}

.legal-hero p {
  margin: 15px 0 8px;

  color: rgba(255, 255, 255, 0.90);

  font-family: var(--font-secondary);
  font-size: 1rem;
}

.legal-updated {
  color: rgba(255, 255, 255, 0.65);

  font-family: var(--font-secondary);
  font-size: 0.75rem;
}


/* =========================================================
   MAIN PAGE
   ========================================================= */

.legal-page {
  position: relative;

  padding: 70px 20px 90px;

  background:
    linear-gradient(
      135deg,
      rgba(40, 41, 62, 0.96),
      rgba(31, 32, 48, 0.98)
    );
}

.legal-container {
  width: 100%;
  max-width: 1050px;

  margin: 0 auto;
}


/* =========================================================
   GLASS PANELS
   ========================================================= */

.legal-introduction,
.legal-section,
.legal-acceptance {

  position: relative;

  margin-bottom: 22px;
  padding: 32px 38px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.035)
    );

  border: 1px solid rgba(255, 255, 255, 0.10);

  border-radius: 16px;

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.18);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}


/* =========================================================
   INTRODUCTION
   ========================================================= */

.legal-introduction {
  padding: 38px 42px;

  border-left:
    3px solid var(--colour-accent);
}

.legal-introduction p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   HEADINGS
   ========================================================= */

.legal-section h2 {
  position: relative;

  margin: 0 0 20px;

  padding-bottom: 12px;

  color: var(--colour-accent);

  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 500;

  letter-spacing: 1px;
}

.legal-section h2::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 55px;
  height: 2px;

  background: var(--colour-accent);

  opacity: 0.8;
}

.legal-section h3 {
  margin: 30px 0 12px;

  color: var(--colour-tertiary);

  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 500;
}


/* =========================================================
   BODY TEXT
   ========================================================= */

.legal-section p,
.legal-introduction p,
.legal-acceptance p {

  margin: 0 0 15px;

  color: rgba(255, 255, 255, 0.84);

  font-family: var(--font-secondary);
  font-size: 0.94rem;

  line-height: 1.75;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section strong,
.legal-introduction strong {
  color: #ffffff;
  font-weight: 600;
}


/* =========================================================
   LISTS
   ========================================================= */

.legal-section ul {
  margin: 10px 0 18px;
  padding-left: 22px;
}

.legal-section li {
  margin-bottom: 7px;

  color: rgba(255, 255, 255, 0.82);

  font-family: var(--font-secondary);
  font-size: 0.92rem;

  line-height: 1.6;
}

.legal-section li::marker {
  color: var(--colour-accent);
}


/* =========================================================
   LINKS
   ========================================================= */

.legal-section a,
.legal-introduction a {
  color: var(--colour-accent);

  text-decoration: none;

  transition: color 0.25s ease;
}

.legal-section a:hover,
.legal-introduction a:hover {
  color: var(--colour-tertiary);
}


/* =========================================================
   CONTACT / BUSINESS DETAILS
   ========================================================= */

.legal-details {
  margin: 20px 0;

  padding: 18px 22px;

  color: rgba(255, 255, 255, 0.82);

  background: rgba(0, 0, 0, 0.14);

  border-left:
    2px solid rgba(255, 255, 255, 0.25);

  border-radius: 5px;

  font-family: var(--font-secondary);
  font-size: 0.9rem;

  line-height: 1.7;
}


/* =========================================================
   HOT TUB / SAUNA FEATURE SECTION
   ========================================================= */

.legal-feature-section {
  border:
    1px solid rgba(255, 255, 255, 0.13);
}


/* =========================================================
   SAFETY NOTICE
   ========================================================= */

.safety-notice {

  margin: 0 0 28px;
  padding: 24px 26px;

  background:
    linear-gradient(
      135deg,
      rgba(184, 150, 78, 0.16),
      rgba(184, 150, 78, 0.06)
    );

  border:
    1px solid rgba(184, 150, 78, 0.35);

  border-radius: 12px;
}

.safety-label {
  display: block;

  margin-bottom: 10px;

  color: var(--colour-accent);

  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 2px;
  text-transform: uppercase;
}

.safety-notice p {
  color: rgba(255, 255, 255, 0.90);
}

.safety-notice p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   PLACEHOLDER BOXES
   ========================================================= */

.placeholder-box {

  margin: 20px 0;
  padding: 20px 22px;

  color: rgba(255, 255, 255, 0.72);

  background: rgba(0, 0, 0, 0.16);

  border:
    1px dashed rgba(255, 255, 255, 0.25);

  border-radius: 8px;

  font-family: var(--font-secondary);
  font-size: 0.85rem;

  line-height: 1.6;
}

.placeholder-box strong {
  color: var(--colour-accent);
  font-size: 0.75rem;
  letter-spacing: 1px;
}


/* =========================================================
   FINAL ACCEPTANCE PANEL
   ========================================================= */

.legal-acceptance {

  margin-top: 35px;

  padding: 45px 40px;

  text-align: center;

  border:
    1px solid rgba(255, 255, 255, 0.14);
}

.legal-acceptance h2 {
  margin: 0 0 15px;

  color: #ffffff;

  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 500;

  letter-spacing: 1px;
}

.legal-acceptance p {
  max-width: 700px;

  margin: 0 auto;

  color: rgba(255, 255, 255, 0.75);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding: 30px 20px;

  background: #27283c;

  text-align: center;
}

.site-footer p {
  margin: 0 0 12px;

  color: rgba(255, 255, 255, 0.55);

  font-family: var(--font-secondary);
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.footer-links a {
  color: var(--colour-accent);

  font-family: var(--font-secondary);
  font-size: 0.78rem;

  text-decoration: none;

  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--colour-tertiary);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

  .legal-hero {
    min-height: 280px;

    padding: 110px 20px 50px;
  }

  .legal-page {
    padding: 45px 15px 60px;
  }

  .legal-introduction,
  .legal-section,
  .legal-acceptance {
    padding: 25px 22px;

    border-radius: 13px;
  }

  .legal-introduction {
    border-left-width: 3px;
  }

  .legal-section h2 {
    font-size: 1.5rem;
  }

  .legal-section h3 {
    font-size: 1.15rem;
  }

  .legal-section p,
  .legal-introduction p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .legal-section li {
    font-size: 0.88rem;
  }

  .safety-notice {
    padding: 20px;
  }

  .legal-acceptance {
    padding: 35px 22px;
  }

  .legal-acceptance h2 {
    font-size: 1.65rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .legal-hero h1 {
    font-size: 2.4rem;
  }

  .legal-hero p {
    font-size: 0.9rem;
  }

  .legal-section,
  .legal-introduction {
    padding: 22px 18px;
  }

}

/* =========================================================
   FAQ PAGE
   ========================================================= */


/* =========================================================
   FAQ HERO
   ========================================================= */

.faq-hero {
  background:
    linear-gradient(
      rgba(40, 41, 62, 0.70),
      rgba(40, 41, 62, 0.84)
    ),
    url("../images/woodland-banner.jpg") center / cover no-repeat;
    margin-top: 50px;
}


/* =========================================================
   FAQ SECTIONS
   ========================================================= */

.faq-section {
  padding: 38px 42px;
}

.faq-section > .legal-eyebrow {
  margin-bottom: 8px;
}

.faq-section h2 {
  margin-bottom: 30px;
}


/* =========================================================
   FAQ INTRO
   ========================================================= */

.faq-intro {
  margin-top: -12px !important;
  margin-bottom: 28px !important;

  color: rgba(255, 255, 255, 0.65) !important;

  font-size: 1.6rem !important;
  font-style: italic;
}


/* =========================================================
   INDIVIDUAL FAQ
   ========================================================= */

.faq-item {

  padding: 0 0 25px;
  margin: 0 0 25px;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:last-child {

  padding-bottom: 0;
  margin-bottom: 0;

  border-bottom: none;
}


/* =========================================================
   QUESTION
   ========================================================= */

.faq-item h3 {

  position: relative;

  margin: 0 0 10px;
  padding-left: 28px;

  color: var(--colour-accent);

  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 500;

  line-height: 1.4;
}

.faq-item h3::before {

  content: "?";

  position: absolute;

  left: 0;
  top: 0;

  color: var(--colour-accent);

  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
}


/* =========================================================
   FAQ ANSWER
   ========================================================= */

.faq-item p {

  margin-bottom: 12px;

  color: rgba(255, 255, 255, 0.76);

  font-size: 0.92rem;
  line-height: 1.75;
}

.faq-item p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   FAQ LISTS
   ========================================================= */

.faq-item ul {

  margin: 12px 0 15px;
  padding-left: 22px;
}

.faq-item li {

  margin-bottom: 6px;

  color: rgba(255, 255, 255, 0.76);

  font-family: var(--font-secondary);
  font-size: 0.9rem;

  line-height: 1.6;
}

.faq-item li::marker {
  color: var(--colour-accent);
}


/* =========================================================
   FAQ EMPHASIS
   ========================================================= */

.faq-item strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}


/* =========================================================
   ACCOMMODATION PANELS
   ========================================================= */

.accommodation-faq {

  border-top:
    2px solid rgba(255, 255, 255, 0.06);
}


/* Gold accent on accommodation sections */

.accommodation-faq .legal-eyebrow {
  color: var(--colour-accent);
}


/* =========================================================
   BOOKING BUTTON
   ========================================================= */

.faq-button-wrap {
  margin-top: 25px;
}

.faq-book-button {

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

  padding: 12px 28px;

  color: #ffffff;

  background: var(--colour-accent);

  border: 1px solid var(--colour-accent);
  border-radius: 5px;

  font-family: var(--font-secondary);
  font-size: 0.82rem;
  font-weight: 600;

  letter-spacing: 1px;
  text-transform: uppercase;

  text-decoration: none;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.faq-book-button:hover {

  color: var(--colour-accent);

  background: transparent;

  transform: translateY(-2px);

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

  .faq-section {
    padding: 28px 22px;
  }

  .faq-item h3 {
    font-size: 1.08rem;
  }

  .faq-item p {
    font-size: 0.9rem;
  }

  .faq-item li {
    font-size: 0.87rem;
  }

  .faq-book-button {
    width: 100%;
  }

}

/* Media Queries for Responsive Design */

/* Welcome Card Hero Image */

/* TINKERS LODGE PAGE */

.hero-tl {
  height: auto;
}

/* Full-width banner container */
.hero-banner-tl {
  background: url("../images/tinkers-lodge-ext1.png") center/cover no-repeat;
  width: 100%;
  position: relative;
  height: 90vh;
  border-bottom: 6px solid var(--colour-accent);
  scroll-margin-top: 100px; /* match your navbar height */
}

:root {
  --tl-primary: var(--primary-color, #28293e);
  --tl-secondary: var(--secondary-color, #5a608e);
  --tl-light: var(--white, #ffffff);
  --tl-glass: rgba(40, 41, 62, 0.82);
  --tl-glass-dark: rgba(40, 41, 62, 0.9);
  --tl-border: rgba(255, 255, 255, 0.25);
} 
/* GENERAL SECTIONS */

.lodge-section {
  position: relative;
  padding: 20px 0 40px;
}
.lodge-section:nth-of-type(even) {
  background: rgba(40, 41, 62, 0.15);
} /* ========================================================= HEADINGS ========================================================= */
.section-heading {
  margin-bottom: 50px;
}
.eyebrow {
  margin-bottom: 8px;
  color: var(--tl-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.section-heading h2,
.content-panel h2,
.dog-panel h2,
.coffee-panel h2,
.booking-panel h2 {
  margin-bottom: 20px;
  color: var(--tl-light);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.1;
}
.section-intro {
  max-width: 700px;
  margin: 0 auto;
  color: var(--tl-light);
  font-size: 1.05rem;
  line-height: 1.7;
} 

/*  CONTENT PANELS  */

.content-panel {
  padding: clamp(30px, 5vw, 65px);
  background: var(--tl-glass);
  border: 1px solid var(--tl-border);
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.intro-text {
  max-width: 850px;
  margin: 0 auto;
}
.intro-text p {
  margin-bottom: 22px;
  color: var(--tl-light);
  font-size: 1.05rem;
  line-height: 1.85;
}
.intro-text strong {
  font-weight: 600;
}
.closing-text {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--tl-border);
} 

/* AMENITY CARDS */

.amenity-group {
  margin-bottom: 70px;
}
.amenity-group:last-child {
  margin-bottom: 0;
}
.amenity-heading {
  margin-bottom: 30px;
  text-align: center;
}
.amenity-heading h3 {
  color: var(--tl-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem;
}
.amenity-card {
  padding: 30px;
  color: var(--tl-light);
  background: rgba(40, 41, 62, 0.8);
  border: 1px solid var(--tl-border);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.amenity-card:hover {
  background: var(--tl-glass-dark);
  transform: translateY(-5px);
}
.amenity-icon {
  margin-bottom: 15px;
  color: var(--tl-light);
  font-size: 2rem;
}
.amenity-card h4 {
  margin-bottom: 15px;
  color: var(--tl-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}
.amenity-card p {
  color: var(--tl-light);
  line-height: 1.7;
}
.amenity-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.amenity-card li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 20px;
  color: var(--tl-light);
  line-height: 1.5;
}
.amenity-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--tl-light);
}

/* =========================================================
   TINKERS LODGE - INSIDE FEATURE CARDS
   ========================================================= */

.lodge-feature-card {
    display: flex;
    overflow: hidden;

    padding: 0;

    height: 100%;

    color: var(--tl-light);
    background: rgba(40, 41, 62, 0.82);

    border: 1px solid var(--tl-border);
    border-radius: 15px;

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

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


/* Hover effect */

.lodge-feature-card:hover {
    background: rgba(40, 41, 62, 0.92);
    transform: translateY(-5px);
}


/* =========================================================
   IMAGE
   ========================================================= */

/* =========================================================
   LODGE FEATURE IMAGE
   ========================================================= */

.lodge-feature-image {
    flex: 0 0 42%;
    overflow: hidden;
}

.lodge-feature-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}


/* Subtle image zoom */

.lodge-feature-card:hover .lodge-feature-image img {
    transform: scale(1.05);
}


/* =========================================================
   CONTENT
   ========================================================= */

.lodge-feature-content {
    flex: 1;

    padding: 30px 28px;
}


.lodge-feature-icon {
    margin-bottom: 12px;

    color: var(--tl-light);

    font-size: 1.8rem;
}


.lodge-feature-content h4 {
    margin-bottom: 15px;

    color: var(--tl-light);

    font-family: "Cormorant Garamond", serif;

    font-size: 1.8rem;
    line-height: 1.1;
}


.lodge-feature-content p {
    margin-bottom: 18px;

    color: var(--tl-light);

    font-size: 0.95rem;
    line-height: 1.6;
}


/* =========================================================
   FEATURE LIST
   ========================================================= */

.lodge-feature-content ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.lodge-feature-content li {
    position: relative;

    margin-bottom: 7px;
    padding-left: 18px;

    color: var(--tl-light);

    font-size: 0.9rem;
    line-height: 1.45;
}


.lodge-feature-content li::before {
    content: "•";

    position: absolute;
    left: 0;

    color: var(--tl-light);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199px) {

    .lodge-feature-image {
        flex: 0 0 40%;
    }

    .lodge-feature-content {
        padding: 25px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .lodge-feature-card {
        display: block;
    }

    .lodge-feature-image {
        width: 100%;
        height: 230px;

        min-height: 0;
    }

    .lodge-feature-content {
        padding: 28px 25px 30px;
    }

    .lodge-feature-content h4 {
        font-size: 1.7rem;
    }

    .lodge-feature-content p {
        font-size: 1rem;
    }

    .lodge-feature-content li {
        font-size: 0.95rem;
    }
  }

/* DOG FRIENDLY */
.dog-panel {
  padding: clamp(30px, 5vw, 55px);
}
.dog-panel p:not(.eyebrow) {
  max-width: 750px;
  color: var(--tl-light);
  font-size: 1.05rem;
  line-height: 1.8;
}
.dog-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  color: var(--tl-light);
  text-align: center;
}
.dog-highlight span {
  margin-bottom: 10px;
  font-size: 2.5rem;
}
.dog-highlight strong {
  font-size: 1.2rem;
}
.dog-highlight small {
  margin-top: 6px;
}

.dog-image {
  width: 100%;
  max-width: 200px;
  height: 280px;
  overflow: hidden;
  border-radius: 18px;
  margin-left: auto;
}

.dog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*  GOOD TO KNOW CARDS  */
.info-card {
  padding: 30px 25px;
  color: var(--tl-light);
  text-align: center;
  background: var(--tl-glass);
  border: 1px solid var(--tl-border);
  border-radius: 15px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.info-icon {
  margin-bottom: 12px;
  font-size: 1.8rem;
}
.info-card h3 {
  margin-bottom: 15px;
  color: var(--tl-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}
.info-card p {
  color: var(--tl-light);
  line-height: 1.6;
}
.info-large {
  font-size: 1.15rem;
  font-weight: 600;
}
.info-price {
  display: inline-block;
  margin-top: 5px;
  color: var(--tl-light);
  font-size: 0.9rem;
  font-weight: 600;
}

/*  BOOKALET BOOKING AREA  */


.booking-section {
  padding-top: 40px;
  padding-bottom: 90px;
  scroll-margin-top: 90px; /* match your navbar height */
}
.booking-widget-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.booking-widget {
  min-height: 300px;
  padding: clamp(15px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
#bookalet-widget {
  width: 100%;
} 
/* =========================================================
   COFFEE HUT
   ========================================================= */

.coffee-panel {
  position: relative;
  overflow: hidden;

  min-height: 360px;

  color: var(--tl-light);
  background: var(--tl-primary);

  border: 1px solid var(--tl-border);
  border-radius: 18px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}


/* ---------------------------------------------------------
   TEXT AREA — LEFT 75%
   --------------------------------------------------------- */

.coffee-content {
  position: relative;
  z-index: 2;

  width: 75%;

  padding: clamp(30px, 5vw, 55px);
  padding-right: 8%;
}


.coffee-panel p:not(.eyebrow) {
  max-width: 750px;

  margin-bottom: 0;

  color: var(--tl-light);

  line-height: 1.8;
}


.coffee-note {
  display: inline-block;

  color: var(--tl-light);

  font-size: 1rem;

  line-height: 1.7;
}


/* ---------------------------------------------------------
   COFFEE SHACK IMAGE — RIGHT 25%
   --------------------------------------------------------- */

.coffee-background {
  position: absolute;

  top: 0;
  right: 0;
  bottom: 0;

  width: 25%;

  background-image: url("../images/coffee-shck.png");
  background-size: cover;
  background-position: center;

  z-index: 1;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 991.98px) {

  .coffee-panel {
    min-height: auto;
  }

  .coffee-content {
    width: 100%;

    padding: 35px 30px 300px;
  }

  .coffee-background {
    top: auto;

    width: 100%;
    height: 260px;
  }

}
 /*  BUTTONS  */
.wyld-btn {
  display: inline-block;
  padding: 12px 30px;
  color: var(--tl-light);
  background: transparent;
  border: 1px solid var(--tl-light);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.wyld-btn:hover {
  color: var(--tl-primary);
  background: var(--tl-light);
  border-color: var(--tl-light);
} /* ========================================================= FINAL CTA ========================================================= */
#final-cta {
  padding-top: 60px;
  padding-bottom: 110px;
}
.booking-panel {
  max-width: 850px;
  margin: 0 auto;
  padding: clamp(45px, 7vw, 80px) 30px;
  background: var(--tl-glass);
  border: 1px solid var(--tl-border);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.booking-panel p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 auto 30px;
  color: var(--tl-light);
  font-size: 1.1rem;
  line-height: 1.7;
} /* ========================================================= MOBILE ========================================================= */
@media (max-width: 767px) {
  .lodge-section {
    padding: 60px 0;
  }
  .section-heading {
    margin-bottom: 35px;
  }
  .content-panel {
    padding: 30px 22px;
    border-radius: 12px;
  }
  .intro-text p {
    font-size: 1rem;
    line-height: 1.75;
  }
  .amenity-group {
    margin-bottom: 50px;
  }
  .amenity-card {
    padding: 25px;
  }
  .amenity-card h4 {
    font-size: 1.6rem;
  }
  .dog-panel {
    padding: 30px 22px;
  }
  .info-card {
    padding: 25px 20px;
  }
  .booking-widget {
    padding: 12px;
    border-radius: 12px;
  }
  .coffee-panel {
    padding: 30px 22px;
  }
  .booking-panel {
    padding: 50px 20px;
  }
}

/*
   Bookalet widget itself

   The widget will sit inside this container.
   Keeping the background light gives the booking
   interface a clean, trustworthy appearance.
*/

#bookalet-widget {
  width: 100%;
}

/* =========================================================
   FINAL CTA
   ========================================================= */

#final-cta {
  padding-top: 60px;
  padding-bottom: 110px;
}

.booking-panel {
  max-width: 850px;
  margin: 0 auto;
  padding: clamp(45px, 7vw, 80px) 30px;

  background: rgba(40, 41, 62, 0.82);

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;

  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.booking-panel h2 {
  margin-bottom: 20px;
}

.booking-panel p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 auto 30px;

  color: #ffffff;

  font-size: 1.1rem;
  line-height: 1.7;
}

/* =========================================================
   MOBILE BOOKING
   ========================================================= */

@media (max-width: 767px) {
  .booking-widget {
    padding: 15px;
    border-radius: 12px;
  }

  .booking-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* KEEPERS COTTAGE PAGE */

.hero-kc {
  height: auto;
}

/* Full-width banner container */
.hero-banner-kc {
  background: url("../images/keepers-cottage-ext.png") center/cover
    no-repeat;
  width: 100%;
  position: relative;
  height: 90vh;
  border-bottom: 6px solid var(--colour-accent);
  scroll-margin-top: 100px; /* match your navbar height */
}


/* THE SHEPHERDS KEEP PAGE */

.hero-tsk {
  height: auto;
}

/* Full-width banner container */
.hero-banner-tsk {
  background: url("../images/shepherds-hut-orchard-image.png") center/cover
    no-repeat;
  width: 100%;
  position: relative;
  height: 90vh;
  border-bottom: 6px solid var(--colour-accent);
  scroll-margin-top: 100px; /* match your navbar height */
}