/*
Theme Name: Watermill Holidays
Theme URI: https://example.com
Author: Watermill
Description: Custom theme for Watermill Holidays
Version: 1.0.0
*/

/* ======================================================
   CSS CUSTOM PROPERTIES
====================================================== */

:root {
  /* Colors */
  --color-primary: #6b7c59;
  --color-primary-dark: #5a6a4a;
  --color-primary-darker: #4a5a3a;
  --color-text: #222;
  --color-text-light: #555;
  --color-text-lighter: #666;
  --color-heading: #3e4a36;
  --color-white: #ffffff;
  --color-bg-light: #fdfaf5;
  --color-bg-cream: #f4f1ec;
  --color-border: #c6bca5;
  --color-line: #d1c7b7;

  /* Typography */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", serif;
  --font-display: 'Fondamento', serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 5rem;
  --spacing-3xl: 8rem;

  /* Breakpoints */
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;

  /* Shadows */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 10px 30px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-base: all 0.3s ease-in-out;
  --transition-slow: all 0.5s ease-in-out;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
}

/* ======================================================
   RESET
====================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 12px;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg-light);
    margin: 0;
    padding: 0;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/papertexture.png);
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

/* ======================================================
   TYPOGRAPHY
====================================================== */

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  margin: 0;
}

p {
  margin: 0;
}

/* ======================================================
   GLOBAL UTILITIES
====================================================== */

.container {
  margin: 0 auto;
}

.container-narrow {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition-base);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-white);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-serif);
    font-size: 19px;
    letter-spacing: 0.12em;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--color-white);
}

.btn-primary:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 2px;
}

.btn-primary:active {
    transform: translateY(0);
}



.btn-secondary {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: var(--color-primary);
    color: var(--color-white);
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--color-primary-dark);
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.btn-secondary:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 2px;
}

/* ======================================================
   HEADER
====================================================== */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
}

.site-header-inner {
      padding: 49px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ======================================================
   SITE BRANDING (TOP LEFT)
====================================================== */

.site-branding {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 1px;
  color: var(--color-white);
  white-space: nowrap;
}

/* ======================================================
   PRIMARY NAVIGATION
====================================================== */

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
    font-family: var(--font-serif);
    font-size: 19px;
    letter-spacing: 0.12em;
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition-base);
}

.site-nav a:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

/* Book Now button - using class instead of ID */
.site-nav .book-now a,
.nav-btn {
    background: var(--color-primary);
    border: 2px solid var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.site-nav .book-now a:hover,
.site-nav .book-now a:focus,
.nav-btn:hover,
.nav-btn:focus {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.site-nav .book-now a:active,
.nav-btn:active {
    transform: translateY(0);
}

/* ======================================================
   MOBILE MENU TOGGLE (HAMBURGER)
====================================================== */

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 101;
}

.menu-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.home-hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background-color: #000;
    text-align: center;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.home-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.home-intro .container {
  position: relative;
  z-index: 2;
}

.hero-content {
    position: relative;
    color: var(--color-white);
    padding: var(--spacing-lg);
    z-index: 3;
}

.hero-title {
    font-size: 56px;
    line-height: 1.2;
}

.hero-subheading {
    margin-top: var(--spacing-xs);
    font-size: 2.6rem;
}

.hero-tagline {
    margin-top: var(--spacing-sm);
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 19px;
    font-family: var(--font-serif);
}

/* ======================================================
   FEATURE STRIP
====================================================== */


.feature-strip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    background: var(--color-bg-cream);
    padding: 21px 36px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-xl);
    z-index: 20;
    background-image: url(images/papertexture.png);
    background-repeat: repeat;
    background-size: auto;
    background-position: center;
}

.feature-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  max-width: 750px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  white-space: nowrap;
}

 .feature img {
    width: 30px;
}

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

.home-intro {
    padding: 8rem 2rem 5rem;
    text-align: center;
    min-height: 50vh;
    background: url(images/IMG-20250518-WA0005.jpg) center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 15px;
}

.home-intro p {
  max-width: 525px;
  margin: 1.5rem auto 2rem;
}

/* ======================================================
   STEP BACK
====================================================== */



/* 1. The Wrapper */
.step-back-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    width: 100%;
    max-width: 100%;
    position: relative;
    margin: 0;
    filter: drop-shadow(10px 0 10px rgba(0, 0, 0, 0.1)) drop-shadow(0 15px 20px rgba(0, 0, 0, 0.15));
}

/* 2. The Text Box (Parchment) */

.step-back-text {
    grid-column: 1 / 7;
    grid-row: 1;
    z-index: 2;
    position: relative;
    background-image: url(images/papertexture.png);
    background-size: cover;
    background-position: left center;
    -webkit-mask-image: linear-gradient(to right, black 90%, transparent 100%), url(images/parchment.png);
    -webkit-mask-size: 100% 100%, auto 112%;
    -webkit-mask-position: left, right;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-composite: source-over;
    mask-composite: add;
    padding: 82px 10% 60px 10%;
    margin-right: -75px;
    filter: drop-shadow(15px 5px 15px rgba(0, 0, 0, 0.2));
    text-align: center;
}


/* 3. The Image Box */
.step-back-image {
   grid-column: 6 / 13;
    grid-row: 1;
    z-index: 1;
    min-height: 413px;
    height: 100%;
    background: url(images/astepbackintime2.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 0 8px 8px 0; /* Only round the outside corners */
}

/* 4. The Icons (Inside the text box) */
.step-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 1.5rem;
}

.step-icons div {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-heading);
    text-align: center;
}

.step-icons img {
    width: 41px;
    height: 41px;
    margin-bottom: 1.25rem;
    /* This makes your black icons match the theme green */
    filter: invert(48%) sepia(13%) saturate(654%) hue-rotate(46deg) brightness(93%) contrast(89%);
}

.step-icons p {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-top: 0.75rem;
}

.step-back-text h2 {
    font-family: var(--font-serif);
    color: var(--color-heading);
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
}

.step-back-text > p {
    line-height: 1.9;
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 450px;
    margin: 0 auto;
}

/* ======================================================
   HISTORY
====================================================== */
/* ACCOMMODATION PREVIEW SECTION */
.accommodation-preview .container {
    position: relative;
    padding-bottom: 45px;
    width: 95%;
}

.accommodation-preview {
    padding: 75px 0px 0px 0px;
    text-align: center;
}

.accommodation-preview-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 38px;
}

.accommodation-preview-header .line {
    flex: 1;
    max-width: 150px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-primary), transparent);
}

.accommodation-preview-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: var(--color-primary);
    margin: 0;
    white-space: nowrap;
}

.accommodation-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
    margin-bottom: 0;
}

.accommodation-preview-card {
    background-size: 200%;
    background-color: var(--color-bg-cream);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.accommodation-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12), 0 6px 15px rgba(0, 0, 0, 0.08);
}

.accommodation-preview-card h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    color: #4a4a4a;
    margin-bottom: 11px;
}

.accommodation-preview-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-lighter);
    margin-bottom: 30px;
    padding: 0 15px;
}

.accommodation-preview-image {
    width: 100%;
    height: 263px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.accommodation-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}




/* ======================================================
   ATTRACTIONS
====================================================== */

.attractions-header {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 15px;
    margin: 45px 0;
    width: 95%;
    justify-self: center;
}

.attractions-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    white-space: nowrap;
    color: #333;
    font-weight: 400;
    margin: 0;
}

.line {
    flex: 1;
    height: 3px;
    background-color: var(--color-line);
    border-radius: 50%;
    border: 0;
}


.attractions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 95%;
    justify-self: center;
}

.attraction-card {
    width: 100%;
    overflow: hidden;
}

.attraction-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.attraction-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.attraction {
  height: 220px;
  background: #e0e0e0;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  font-weight: 500;
}


h1.hero-title span {
    font-size: 22px;
}

section.home-intro h2 {
    color: var(--color-white);
    font-size: clamp(1.75rem, 4vw, 40px);
    font-family: var(--font-display);
}

section.home-intro p {
    color: var(--color-white);
}

.featuretwo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    white-space: nowrap;
    border-left: 3px solid var(--color-border);
    border-right: 3px solid var(--color-border);
    padding: 0px 23px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
    filter: invert(38%) sepia(22%) saturate(490%) hue-rotate(55deg) brightness(95%) contrast(90%);
}

/* Navigation link hover effects - class-based for better maintainability */
.site-nav li:not(.book-now) {
    position: relative;
}

.site-nav li:not(.book-now)::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #bebfbd, var(--color-white));
    border-radius: 0;
    transition: var(--transition-slow);
}

.site-nav li:not(.book-now):hover::before {
    width: 100%;
    border-radius: 50%;
}

  .logo-container {
    display: flex;
    align-items: center; /* Vertically centers logo with text */
    gap: 11px;           /* Space between logo and text */
    text-decoration: none;
}

.site-logo {
    height: 113px;
    width: auto;
    display: block;
}

.site-logo-animation {
    height: 113px;
    width: auto;
    max-width: 225px;
    display: block;
    overflow: visible;
}

.site-branding {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.card-title-wrapper {
    display: flex;
    align-items: center;
    justify-self: center;
}

.card-title-wrapper img {
    height: 38px;
    filter: invert(70%) sepia(15%) saturate(400%) hue-rotate(10deg) brightness(95%) contrast(85%);
}

.card-title-wrapper h4 {
    font-size: 25px;
    margin-left: 15px;
    padding: 8px;
}

/* ======================================================
   REVIEWS CAROUSEL
====================================================== */

.reviews {
    padding: 60px 0;
}

.reviews .container {
    width: 95%;
    max-width: 900px;
    margin: 0 auto;
}

.reviews-header {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 15px;
    margin-bottom: 38px;
    justify-content: center;
}

.reviews-header .line {
    flex: 0 1 113px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.reviews-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--color-heading);
    white-space: nowrap;
}

.reviews-carousel {
    position: relative;
}

.reviews-track-wrapper {
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.reviews-track:active {
    cursor: grabbing;
}

.review-card {
    flex: 0 0 100%;
    padding: 0 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-card > * {
    max-width: 600px;
    width: 100%;
}

.review-card blockquote {
    background: var(--color-white);
    padding: 30px 38px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #e8e1d5;
    position: relative;
    margin: 0;
}

.review-card blockquote::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--color-primary);
    position: absolute;
    top: 10px;
    left: 25px;
    opacity: 0.2;
    line-height: 1;
}

.review-quote {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text);
    font-style: italic;
    text-align: center;
}

.review-author {
    text-align: center;
    margin-top: 23px;
    padding-top: 15px;
    border-top: 1px solid #e8e1d5;
}

.review-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.reviews-dots {
    display: flex;
    gap: 10px;
}

.reviews-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    border: 2px solid var(--color-primary);
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow:
        0 2px 3px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
}

.reviews-dots .dot:hover {
    background: rgba(76, 109, 81, 0.4);
    border-color: var(--color-primary-dark);
    transform: rotate(45deg) scale(1.2);
}

.reviews-dots .dot.active {
    background: var(--color-primary);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(0, 0, 0, 0.2);
    transform: rotate(45deg) scale(1.15);
}

/* Real Testimonials Plugin Pagination Override */
.testimonials-wrapper,
.testimonials-wrapper .sp-testimonial-wrapper {
    overflow: visible !important;
}

.testimonials-wrapper .sp-testimonial-pagination,
.testimonials-wrapper .slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    margin-top: 30px;
    list-style: none;
    overflow: visible !important;
}

.testimonials-wrapper .sp-testimonial-pagination li,
.testimonials-wrapper .slick-dots li {
    margin: 0;
    padding: 5px;
    overflow: visible !important;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-wrapper .sp-testimonial-pagination li button,
.testimonials-wrapper .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    border: 2px solid var(--color-primary);
    background: transparent;
    cursor: pointer;
    padding: 0;
    font-size: 0;
    line-height: 0;
    transform: rotate(45deg);
    transition: all 0.3s ease;
    overflow: visible !important;
}

.testimonials-wrapper .sp-testimonial-pagination li button:hover,
.testimonials-wrapper .slick-dots li button:hover {
    background: rgba(76, 109, 81, 0.4);
    border-color: var(--color-primary-dark);
    transform: rotate(45deg) scale(1.2);
}

.testimonials-wrapper .sp-testimonial-pagination li.slick-active button,
.testimonials-wrapper .slick-dots li.slick-active button {
    background: var(--color-primary);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(0, 0, 0, 0.2);
    transform: rotate(45deg) scale(1.15);
}

/* Reviews Responsive */
@media (max-width: 767px) {
    .reviews {
        padding: 60px 0;
    }

    .reviews-header .line {
        flex: 0 1 80px;
    }

    .review-card blockquote {
        padding: 30px 25px;
    }

    .review-card blockquote::before {
        font-size: 4rem;
        left: 15px;
    }

    .review-quote {
        font-size: 1.1rem;
    }
}

/* ======================================================
   LOCATION MAP
====================================================== */

.location-map-section {
    padding: 45px 0;
}

.location-map-section .container {
    width: 95%;
    margin: 0 auto;
}

.location-map {
    width: 100%;
    height: 375px;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

#map {
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Custom marker styling */
.custom-marker {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border: 2px solid var(--color-bg-cream);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
}

.custom-marker::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--color-primary-dark);
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}

.custom-marker:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.custom-marker-icon {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
    display: block;
}

/* Popup styling */
.leaflet-popup-content-wrapper {
    background: var(--color-bg-cream);
    background-image: url(images/papertexture.png);
    background-size: cover;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    font-family: var(--font-sans);
}

.leaflet-popup-content {
    margin: 15px;
    font-size: 0.95rem;
    color: var(--color-text);
}

.leaflet-popup-content h3 {
    font-family: var(--font-serif);
    color: var(--color-heading);
    margin: 0 0 8px 0;
    font-size: 1.2rem;
}

.leaflet-popup-tip {
    background: var(--color-bg-cream);
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 14px;
    background: var(--color-primary);
    color: var(--color-white) !important;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    transition: var(--transition-base);
}

.map-link:hover {
    background: var(--color-primary-dark);
    color: var(--color-white) !important;
}

/* ======================================================
   CONTACT PAGE
====================================================== */

.contact-hero {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),                url(images/IMG-20250511-WA0002.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Contact Information Card */
.contact-info-card {
    position: relative;
    background: var(--color-bg-cream);
    padding: 60px 50px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* Ornamental border corners */
.contact-info-card::before,
.contact-info-card::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid var(--color-primary);
    opacity: 0.6;
    pointer-events: none;
}

.contact-info-card::before {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.contact-info-card::after {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.contact-info-card h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--color-heading);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    filter: invert(48%) sepia(13%) saturate(654%) hue-rotate(46deg) brightness(93%) contrast(89%);
}

.contact-info-item h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--color-heading);
    margin-bottom: 8px;
}

.contact-info-item p {
    color: var(--color-text-light);
    line-height: 1.8;
}

.contact-info-item a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

.contact-info-item a:hover {
    color: var(--color-primary-dark);
}

/* Contact Form Card */
.contact-form-card {
    position: relative;
    background: var(--color-bg-cream);
    padding: 60px 50px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* Ornamental border corners */
.contact-form-card::before,
.contact-form-card::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid var(--color-primary);
    opacity: 0.6;
    pointer-events: none;
}

.contact-form-card::before {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.contact-form-card::after {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.contact-form-card h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--color-heading);
    margin-bottom: 15px;
}

.contact-form-card > p {
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-heading);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 1rem;
    background: var(--color-white);
    transition: var(--transition-base);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn {
    margin-top: 10px;
}

/* Contact Map */
.contact-map-wrapper {
    margin-top: 60px;
}

.map-heading {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-heading);
    text-align: center;
    margin-bottom: 40px;
}

.contact-map {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

#contact-map-element {
    width: 100%;
    height: 100%;
}

/* Responsive - Contact Page */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-hero {
        height: 40vh;
    }

    .contact-content {
        padding: 60px 0;
    }

    .contact-map {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .contact-info-card,
    .contact-form-card {
        padding: 30px 20px;
    }

    .contact-info-card h2,
    .contact-form-card h2 {
        font-size: 1.8rem;
    }

    .map-heading {
        font-size: 2rem;
    }

    .contact-hero {
        height: 35vh;
    }

    .contact-map {
        height: 350px;
    }
}

/* ========================================
   ACCESS STATEMENT PAGE
   ======================================== */

/* Page Hero - Reusable hero section for informational pages */
.page-hero {
    position: relative;
    height: 45vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(images/IMG-20250929-WA0004.jpg); /* Default hero image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Page-specific hero images - change the image URLs as needed */
.page-template-page-accommodation .page-hero {
    background-image: url(images/IMG-20250518-WA0006.jpg);
}

.page-template-page-tariffs .page-hero {
    background-image: url(images/IMG-20240825-WA0003.jpg);
}

.page-template-page-access-statement .page-hero {
    background-image: url(images/IMG-20250929-WA0004.jpg);
}

.page-template-page-contact .contact-hero {
    background-image: url(images/IMG-20250929-WA0004.jpg);
}

.page-template-page-links .page-hero {
    background-image: url(images/IMG-20230602-WA0006.jpg);
    background-position: bottom;
}

.page-template-page-book-now .page-hero {
    background-image: url(images/IMG-20250929-WA0004.jpg);
}

.page-template-page-booking-form .page-hero {
    background-image: url(images/IMG-20250929-WA0004.jpg);
}

.page-template-page-payment .page-hero {
    background-image: url(images/IMG-20250929-WA0004.jpg);
}

.blog .page-hero,
.archive .page-hero,
.single-post .post-hero {
    background-image: url(images/IMG-20251002-WA0007.jpg);
    background-position: bottom;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.page-hero .hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Access Statement Content */
.access-statement-content {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.access-statement-wrapper {
    position: relative;
    background: var(--color-bg-cream);
    padding: 60px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* Ornamental border corners */
.access-statement-wrapper::before,
.access-statement-wrapper::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid var(--color-primary);
    opacity: 0.6;
    pointer-events: none;
}

.access-statement-wrapper::before {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.access-statement-wrapper::after {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.statement-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-primary);
}

.statement-header h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-primary);
    margin: 0;
}

/* Content styling for WordPress editor content */
.access-statement-wrapper h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--color-heading);
    margin-top: 40px;
    margin-bottom: 20px;
}

.access-statement-wrapper h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--color-heading);
    margin-top: 30px;
    margin-bottom: 15px;
}

.access-statement-wrapper p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.access-statement-wrapper ul,
.access-statement-wrapper ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.access-statement-wrapper li {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 10px;
}

.access-statement-wrapper strong {
    color: var(--color-heading);
    font-weight: 600;
}

.access-statement-wrapper a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

.access-statement-wrapper a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* Responsive - Access Statement Page */
@media (max-width: 991px) {
    .access-statement-wrapper {
        padding: 40px;
    }

    .page-hero .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 767px) {
    .access-statement-content {
        padding: 60px 0;
    }

    .access-statement-wrapper {
        padding: 30px 20px;
    }

    .statement-header h2 {
        font-size: 1.5rem;
    }

    .page-hero {
        height: 35vh;
    }

    .page-hero .hero-title {
        font-size: 2.2rem;
    }
}

/* ========================================
   TARIFFS PAGE
   ======================================== */

/* Tariffs Content */
.tariffs-content {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.tariffs-wrapper {
    position: relative;
    background: var(--color-bg-cream);
    padding: 60px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* Ornamental border corners */
.tariffs-wrapper::before,
.tariffs-wrapper::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid var(--color-primary);
    opacity: 0.6;
    pointer-events: none;
}

.tariffs-wrapper::before {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.tariffs-wrapper::after {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

/* Tariffs Header */
.tariffs-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--color-primary);
}

.tariffs-header h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-heading);
    margin: 0 0 10px 0;
}

.tariffs-header h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin: 0 0 25px 0;
}

.tariffs-header p {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.tariffs-header .loyalty-discount {
    color: #d32f2f;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 15px;
}

/* Tariffs Table */
.tariffs-table-wrapper {
    margin-bottom: 50px;
    overflow-x: auto;
}

.tariffs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

.tariffs-table thead th {
    background: var(--color-primary);
    color: white;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px;
    text-align: center;
    border: none;
}

.tariffs-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: var(--transition-base);
}

.tariffs-table tbody tr:hover {
    background: #f9f9f9;
}

.tariffs-table tbody tr:last-child {
    border-bottom: none;
}

.tariffs-table tbody td {
    padding: 18px 20px;
    text-align: center;
    color: var(--color-text);
    font-size: 1rem;
}

.tariffs-table tbody td:first-child {
    font-weight: 500;
    color: var(--color-heading);
}

.tariffs-table tbody td:last-child {
    color: var(--color-primary);
    font-weight: 600;
}

/* Extras Section */
.extras-section {
    margin-bottom: 50px;
}

.extras-section h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-heading);
    text-align: center;
    margin: 0 0 25px 0;
}

.extras-table {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-collapse: collapse;
}

.extras-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.extras-table tbody tr:last-child {
    border-bottom: none;
}

.extras-table tbody td {
    padding: 18px 20px;
    text-align: center;
    color: var(--color-text);
    font-size: 1rem;
}

.extras-table tbody td:first-child {
    font-weight: 500;
    color: var(--color-heading);
}

.extras-table tbody td:last-child {
    color: var(--color-primary);
    font-weight: 600;
}

/* Tariffs Actions */
.tariffs-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.tariffs-actions .btn-secondary {
    position: static;
    transform: none;
}

/* Responsive - Tariffs Page */
@media (max-width: 991px) {
    .tariffs-wrapper {
        padding: 40px;
    }

    .tariffs-header h2 {
        font-size: 2rem;
    }

    .tariffs-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .tariffs-content {
        padding: 60px 0;
    }

    .tariffs-wrapper {
        padding: 30px 20px;
    }

    .tariffs-header h2 {
        font-size: 1.8rem;
    }

    .tariffs-header h3 {
        font-size: 1.3rem;
    }

    .tariffs-header p {
        font-size: 0.95rem;
    }

    .tariffs-table thead th {
        font-size: 1rem;
        padding: 15px 10px;
    }

    .tariffs-table tbody td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }

    .extras-section h3 {
        font-size: 1.5rem;
    }

    .tariffs-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .tariffs-actions .btn {
        width: 100%;
    }
}

/* ======================================================
   ACCOMMODATION PAGE
====================================================== */

.accommodation-content {
    padding: 80px 0;
    background: var(--color-white);
}

.accommodation-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.accommodation-description {
    margin-top: 60px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.accommodation-description p {
    margin-bottom: 1.5rem;
}

/* Carousel Styles */
.accommodation-carousel {
    position: relative;
    background: #f8f5f0;
    padding: 30px;
    box-shadow:
        inset 0 0 60px rgba(76, 109, 81, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Ornamental border corners */
.accommodation-carousel::before,
.accommodation-carousel::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid var(--color-primary);
    opacity: 0.6;
}

.accommodation-carousel::before {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.accommodation-carousel::after {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f5f5f0;
    border: 8px solid #d4c5a9;
    box-shadow:
        inset 0 0 20px rgba(0, 0, 0, 0.1),
        0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.08) contrast(1.05) brightness(1.02);
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(248, 245, 240, 0.95);
    border: 2px solid var(--color-primary);
    width: 50px;
    height: 50px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    color: var(--color-primary);
}

.carousel-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.05);
    box-shadow:
        0 6px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 25px 20px;
    background: linear-gradient(to bottom, #f0ebe3 0%, #e8e1d5 100%);
    border-top: 2px solid #d4c5a9;
    flex-wrap: wrap;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    border: 2px solid var(--color-primary);
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow:
        0 2px 3px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
}

.indicator:hover {
    background: rgba(76, 109, 81, 0.4);
    border-color: var(--color-primary-dark);
    transform: rotate(45deg) scale(1.2);
}

.indicator.active {
    background: var(--color-primary);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(0, 0, 0, 0.2);
    transform: rotate(45deg) scale(1.15);
}

/* Responsive - Accommodation Page */
@media (max-width: 768px) {
    .accommodation-content {
        padding: 50px 0;
    }

    .accommodation-description {
        font-size: 1rem;
        margin-top: 40px;
    }

    .accommodation-carousel {
        padding: 20px;
    }

    .accommodation-carousel::before,
    .accommodation-carousel::after {
        width: 50px;
        height: 50px;
    }

    .accommodation-carousel::before {
        top: 10px;
        left: 10px;
    }

    .accommodation-carousel::after {
        bottom: 10px;
        right: 10px;
    }

    .carousel-container {
        aspect-ratio: 4 / 3;
        border-width: 5px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .carousel-indicators {
        gap: 8px;
        padding: 18px 15px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }
}

/* ======================================================
   BOOK NOW PAGE
====================================================== */

.book-now-content {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.book-now-wrapper {
    position: relative;
    background: white;
    padding: 60px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* Ornamental border corners */
.book-now-wrapper::before,
.book-now-wrapper::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid var(--color-primary);
    opacity: 0.6;
    pointer-events: none;
}

.book-now-wrapper::before {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.book-now-wrapper::after {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.booking-steps {
    list-style: none;
    counter-reset: booking-counter;
    padding: 0;
    margin: 0;
}

.booking-steps li {
    counter-increment: booking-counter;
    position: relative;
    padding-left: 50px;
    margin-bottom: 35px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.booking-steps li:last-child {
    margin-bottom: 0;
}

.booking-steps li::before {
    content: counter(booking-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
}

.booking-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

.booking-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.booking-address {
    font-style: italic;
    color: var(--color-text-light);
    margin: 20px 0;
    padding: 20px 25px;
    background: var(--color-bg-light);
    border-left: 3px solid var(--color-primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.booking-steps li p {
    margin-top: 15px;
    margin-bottom: 0;
}

.deposit-note {
    color: var(--color-heading);
    font-style: italic;
}

.booking-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 40px 0;
}

.booking-downloads {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.download-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-primary);
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    padding: 15px 25px;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.download-link:hover {
    background: var(--color-primary);
    color: white;
}

.download-link:hover .download-icon {
    filter: brightness(0) invert(1);
}

.download-icon {
    width: 24px;
    height: 24px;
    filter: invert(48%) sepia(13%) saturate(654%) hue-rotate(46deg) brightness(93%) contrast(89%);
    transition: var(--transition-base);
}

/* Responsive - Book Now Page */
@media (max-width: 767px) {
    .book-now-wrapper {
        padding: 40px 25px;
    }

    .booking-steps li {
        padding-left: 45px;
        font-size: 1rem;
    }

    .booking-downloads {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .download-link {
        width: 100%;
        justify-content: center;
    }
}

/* ======================================================
   BOOKING FORM PAGE
====================================================== */

.booking-form-content {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.booking-form-wrapper {
    position: relative;
    background: white;
    padding: 60px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* Ornamental border corners */
.booking-form-wrapper::before,
.booking-form-wrapper::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid var(--color-primary);
    opacity: 0.6;
    pointer-events: none;
}

.booking-form-wrapper::before {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.booking-form-wrapper::after {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.booking-form-intro {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-border);
}

.booking-form-intro p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.form-notice {
    text-align: center;
    padding: 40px;
    background: var(--color-bg-light);
    border-radius: var(--radius-sm);
    color: var(--color-text-light);
}

/* Forminator Form Styling */
.forminator-ui.forminator-custom-form {
    --forminator-primary: var(--color-primary);
}

.forminator-custom-form .forminator-label {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-heading);
    margin-bottom: 8px;
}

.forminator-custom-form .forminator-input,
.forminator-custom-form .forminator-textarea,
.forminator-custom-form .forminator-select2 .select2-selection {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: white;
    transition: var(--transition-base);
}

.forminator-custom-form .forminator-input:focus,
.forminator-custom-form .forminator-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(106, 127, 90, 0.1);
}

.forminator-custom-form .forminator-row {
    margin-bottom: 20px;
}

.forminator-custom-form .forminator-field {
    margin-bottom: 0;
}

/* Radio buttons */
.forminator-custom-form .forminator-radio {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
    cursor: pointer;
}

.forminator-custom-form .forminator-radio-bullet {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    transition: var(--transition-base);
}

.forminator-custom-form .forminator-radio input:checked + .forminator-radio-bullet {
    border-color: var(--color-primary);
    background: var(--color-primary);
}

.forminator-custom-form .forminator-radio input:checked + .forminator-radio-bullet::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* Checkboxes */
.forminator-custom-form .forminator-checkbox {
    display: inline-flex;
    align-items: flex-start;
    cursor: pointer;
}

.forminator-custom-form .forminator-checkbox-box {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border);
    border-radius: 3px;
    margin-right: 10px;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.forminator-custom-form .forminator-checkbox input:checked + .forminator-checkbox-box {
    border-color: var(--color-primary);
    background: var(--color-primary);
}

/* Submit button */
.forminator-custom-form .forminator-button-submit {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    padding: 15px 40px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.forminator-custom-form .forminator-button-submit:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Required asterisk */
.forminator-custom-form .forminator-required {
    color: #c0392b;
}

/* Section dividers / grouping */
.forminator-custom-form .forminator-row + .forminator-row {
    padding-top: 0;
}

/* Response messages */
.forminator-custom-form .forminator-response-message {
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.forminator-custom-form .forminator-response-message.forminator-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.forminator-custom-form .forminator-response-message.forminator-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Date picker styling */
.forminator-custom-form .forminator-datepicker {
    position: relative;
}

/* Number input */
.forminator-custom-form input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.forminator-custom-form input[type="number"]::-webkit-outer-spin-button,
.forminator-custom-form input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* Select dropdown */
.forminator-custom-form .select2-container--default .select2-selection--single {
    height: auto;
    padding: 10px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
}

.forminator-custom-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 10px;
}

/* Responsive - Booking Form */
@media (max-width: 767px) {
    .booking-form-wrapper {
        padding: 40px 25px;
    }

    .booking-form-intro {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .forminator-custom-form .forminator-col-6 {
        width: 100%;
    }

    .forminator-custom-form .forminator-button-submit {
        width: 100%;
    }
}

/* ======================================================
   PAYMENT PAGE
====================================================== */

.payment-content {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.payment-notice {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fef3cd;
    border: 1px solid #ffc107;
    border-left: 4px solid #ffc107;
    padding: 20px 25px;
    border-radius: var(--radius-sm);
    margin-bottom: 40px;
}

.payment-notice .notice-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    filter: invert(60%) sepia(98%) saturate(1000%) hue-rotate(10deg) brightness(95%);
}

.payment-notice p {
    margin: 0;
    color: #856404;
    font-weight: 500;
}

.payment-wrapper {
    position: relative;
    background: white;
    padding: 60px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* Ornamental border corners */
.payment-wrapper::before,
.payment-wrapper::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid var(--color-primary);
    opacity: 0.6;
    pointer-events: none;
}

.payment-wrapper::before {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.payment-wrapper::after {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.payment-form-section h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-heading);
    margin-bottom: 30px;
}

.payment-field {
    margin-bottom: 25px;
}

.payment-field label {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-heading);
    margin-bottom: 8px;
}

.payment-field input[type="text"],
.payment-field input[type="number"] {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.payment-field input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(106, 127, 90, 0.1);
}

.amount-input-wrapper {
    position: relative;
    max-width: 200px;
}

.amount-input-wrapper .currency-symbol {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-heading);
}

.amount-input-wrapper input {
    padding-left: 40px;
    font-size: 1.2rem;
    font-weight: 600;
}

.field-hint {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: 8px;
}

.payment-summary {
    background: var(--color-bg-light);
    padding: 20px 25px;
    border-radius: var(--radius-sm);
    margin-top: 30px;
    margin-bottom: 40px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.summary-amount {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.paypal-section {
    border-top: 1px solid var(--color-border);
    padding-top: 40px;
}

.paypal-section h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-heading);
    margin-bottom: 15px;
}

.paypal-section > p {
    color: var(--color-text-light);
    margin-bottom: 25px;
}

#paypal-button-container {
    max-width: 400px;
    margin-bottom: 20px;
}

.paypal-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.paypal-info .lock-icon {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

.payment-help {
    margin-top: 40px;
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.payment-help h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--color-heading);
    margin-bottom: 10px;
}

.payment-help p {
    color: var(--color-text-light);
    margin: 0;
}

.payment-help a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.payment-help a:hover {
    text-decoration: underline;
}

/* Responsive - Payment Page */
@media (max-width: 767px) {
    .payment-wrapper {
        padding: 40px 25px;
    }

    .payment-notice {
        flex-direction: column;
        text-align: center;
    }

    .amount-input-wrapper {
        max-width: 100%;
    }

    #paypal-button-container {
        max-width: 100%;
    }
}

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

.links-content {
    padding: 80px 0;
    background: linear-gradient(to bottom, #fafaf8 0%, #f5f5f0 100%);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Link Card */
.link-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(76, 109, 81, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 3px solid #e8e1d5;
    text-decoration: none;
    cursor: pointer;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(76, 109, 81, 0.2);
    border-color: var(--color-primary);
}

.link-card:hover .link-card-content h3 {
    color: var(--color-primary-dark);
}

.link-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f5f5f0;
    border-bottom: 2px solid #d4c5a9;
}

.link-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.link-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: sepia(0.05) brightness(1.02);
}

.link-card:hover .link-card-image img {
    transform: scale(1.08);
}

.link-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #ffffff 0%, #fafaf8 100%);
}

.link-card-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--color-primary);
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
    width: fit-content;
}

.link-card-content h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.link-card:hover .link-card-content h3::after {
    width: 100%;
}

.link-card-content p {
    font-family: var(--font-serif);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0;
}

/* Responsive - Links Page */
@media (max-width: 991px) {
    .links-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .links-content {
        padding: 50px 0;
    }

    .links-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .link-card-image {
        height: 200px;
    }

    .link-card-content {
        padding: 20px;
    }

    .link-card-content h3 {
        font-size: 1.3rem;
    }

    .link-card-content p {
        font-size: 0.95rem;
    }
}

/* ======================================================
   NEWS / BLOG PAGES
====================================================== */

/* News Archive Page */
.news-content {
    padding: 80px 0;
    background: linear-gradient(to bottom, #fafaf8 0%, #f5f5f0 100%);
}

.news-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* News Card */
.news-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(76, 109, 81, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    border: 3px solid #e8e1d5;
    min-height: 180px;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(76, 109, 81, 0.2);
    border-color: var(--color-primary);
}

.news-card-image {
    position: relative;
    width: 280px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f5f5f0;
    border-right: 2px solid #d4c5a9;
}

.news-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, transparent 60%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    filter: sepia(0.05) brightness(1.02);
}

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

.news-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #ffffff 0%, #fafaf8 100%);
}

.news-card-meta {
    margin-bottom: 12px;
}

.news-card-meta time {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.news-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-card-title a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.news-card-title a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.news-card:hover .news-card-title a::after {
    width: 100%;
}

.news-card-title a:hover {
    color: var(--color-primary-dark);
}

.news-card-excerpt {
    font-family: var(--font-serif);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 20px;
    flex: 1;
}

.news-card-link {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.news-card-link:hover {
    color: var(--color-primary-dark);
    transform: translateX(5px);
}

/* News Pagination */
.news-pagination {
    margin-top: 60px;
    text-align: center;
}

.news-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.news-pagination .page-numbers {
    font-family: var(--font-serif);
    padding: 12px 20px;
    background: var(--color-white);
    border: 2px solid #e8e1d5;
    color: var(--color-primary);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.news-pagination .page-numbers:hover,
.news-pagination .page-numbers.current {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* News Card - Mobile */
@media (max-width: 767px) {
    .news-card {
        flex-direction: column;
        min-height: 0;
    }

    .news-card-image {
        width: 100%;
        height: 220px;
        border-right: none;
        border-bottom: 2px solid #d4c5a9;
    }

    .news-card-image::after {
        background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.05) 100%);
    }

    .news-card-content {
        padding: 20px;
    }
}

.news-pagination .page-numbers.dots {
    border: none;
    background: transparent;
    cursor: default;
}

/* No Posts Message */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-text);
}

/* ======================================================
   SINGLE POST PAGE - HERITAGE STYLE
====================================================== */

/* Post Hero */
.post-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(images/mainbanner.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.post-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.post-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.post-hero .hero-label {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-primary);
}

.post-hero .hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.post-hero .hero-meta {
    margin-top: 20px;
}

.post-hero .hero-meta time {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

/* Post Article Container */
.post-article {
    padding: 80px 0 100px;
    background-image: url(images/papertexture.png);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Post Wrapper - Parchment Style Card */
.post-wrapper {
    background: var(--color-white);
    padding: 50px 60px;
    border-radius: var(--radius-md);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 2px 10px rgba(0, 0, 0, 0.05);
    border: 3px solid #e8e1d5;
    position: relative;
}

.post-wrapper::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid #d4c5a9;
    border-radius: var(--radius-sm);
    pointer-events: none;
}

/* Featured Image */
.post-featured-image {
    margin-bottom: 40px;
    text-align: center;
}

.post-featured-image img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    border-radius: var(--radius-sm);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    border: 3px solid #e8e1d5;
}

/* Post Body - Content Styling */
.post-body {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-text);
}

.post-body p {
    margin-bottom: 1.75rem;
}

.post-body h2,
.post-body h3,
.post-body h4 {
    font-family: var(--font-serif);
    color: var(--color-heading);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-body h2 {
    font-size: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
}

.post-body h3 {
    font-size: 1.6rem;
    color: var(--color-primary);
}

.post-body h4 {
    font-size: 1.3rem;
}

/* Post Body - Single Images */
.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid #e8e1d5;
}

.post-body .wp-caption {
    max-width: 100%;
    margin: 2rem 0;
}

.post-body .wp-caption img {
    margin: 0;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.post-body .wp-caption-text {
    background: var(--color-bg-cream);
    padding: 12px 15px;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--color-text-light);
    border: 3px solid #e8e1d5;
    border-top: none;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    text-align: center;
}

/* Post Body - Image Alignments */
.post-body .alignleft {
    float: left;
    margin: 0.5rem 2rem 1.5rem 0;
    max-width: 50%;
}

.post-body .alignright {
    float: right;
    margin: 0.5rem 0 1.5rem 2rem;
    max-width: 50%;
}

.post-body .aligncenter {
    display: block;
    margin: 2rem auto;
}

.post-body .alignfull {
    margin-left: -60px;
    margin-right: -60px;
    max-width: calc(100% + 120px);
    width: calc(100% + 120px);
    border-radius: 0;
}

/* Post Body - WordPress Gallery */
.post-body .wp-block-gallery,
.post-body .gallery {
    display: grid;
    gap: 15px;
    margin: 2.5rem 0;
    padding: 20px;
    background: var(--color-bg-cream);
    border-radius: var(--radius-md);
    border: 3px solid #e8e1d5;
}

.post-body .wp-block-gallery.columns-2,
.post-body .gallery-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.post-body .wp-block-gallery.columns-3,
.post-body .gallery-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.post-body .wp-block-gallery.columns-4,
.post-body .gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.post-body .wp-block-gallery figure,
.post-body .gallery-item {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.post-body .wp-block-gallery img,
.post-body .gallery-item img {
    margin: 0;
    border: none;
    border-radius: var(--radius-sm);
    transition: transform 0.3s ease;
}

.post-body .wp-block-gallery figure:hover img,
.post-body .gallery-item:hover img {
    transform: scale(1.05);
}

/* Post Body - Videos */
.post-body video,
.post-body .wp-video,
.post-body .wp-block-video video {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 2rem 0;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    border: 3px solid #e8e1d5;
}

.post-body .wp-block-video {
    margin: 2.5rem 0;
}

/* Post Body - Embedded Videos (YouTube, Vimeo) */
.post-body .wp-block-embed,
.post-body iframe {
    margin: 2.5rem 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    border: 3px solid #e8e1d5;
}

.post-body .wp-block-embed__wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.post-body .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border: none;
    box-shadow: none;
}

/* Post Body - Links */
.post-body a {
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--color-primary);
    transition: var(--transition-base);
}

.post-body a:hover {
    color: var(--color-primary-dark);
    border-bottom-color: var(--color-primary-dark);
}

/* Post Body - Lists */
.post-body ul,
.post-body ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.post-body li {
    margin-bottom: 0.75rem;
}

/* Post Body - Blockquote */
.post-body blockquote {
    margin: 2.5rem 0;
    padding: 30px 40px;
    background: var(--color-bg-cream);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    position: relative;
}

.post-body blockquote::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--color-primary);
    position: absolute;
    top: 10px;
    left: 15px;
    opacity: 0.3;
    line-height: 1;
}

.post-body blockquote p {
    margin-bottom: 0;
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    margin-top: 60px;
    padding: 40px 0;
    align-items: start;
}

.post-nav-link {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    padding: 20px 25px;
    background: var(--color-white);
    border: 2px solid #e8e1d5;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.post-nav-link:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.post-nav-label {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-nav-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.post-nav-link:hover .post-nav-title {
    color: var(--color-primary);
}

.post-nav-prev {
    text-align: left;
}

.post-nav-prev .post-nav-label::before {
    content: '← ';
}

.post-nav-next {
    text-align: right;
}

.post-nav-next .post-nav-label::after {
    content: ' →';
}

.post-nav-back {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-back {
    display: inline-block;
    padding: 15px 30px;
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--color-white);
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition-base);
}

.btn-back:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Single Post Responsive */
@media (max-width: 991px) {
    .post-wrapper {
        padding: 40px;
    }

    .post-featured-image {
        margin-bottom: 30px;
    }

    .post-body .alignfull {
        margin-left: -40px;
        margin-right: -40px;
        max-width: calc(100% + 80px);
        width: calc(100% + 80px);
    }

    .post-navigation {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .post-nav-back {
        grid-column: 1 / -1;
        order: -1;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .post-hero {
        height: 40vh;
        min-height: 280px;
    }

    .post-article {
        padding: 50px 0 70px;
    }

    .post-wrapper {
        padding: 25px 20px;
        border-width: 2px;
    }

    .post-wrapper::before {
        display: none;
    }

    .post-featured-image {
        margin-bottom: 25px;
    }

    .post-body {
        font-size: 1.05rem;
    }

    .post-body h2 {
        font-size: 1.6rem;
    }

    .post-body h3 {
        font-size: 1.4rem;
    }

    .post-body .alignleft,
    .post-body .alignright {
        float: none;
        max-width: 100%;
        margin: 1.5rem 0;
    }

    .post-body .alignfull {
        margin-left: -20px;
        margin-right: -20px;
        max-width: calc(100% + 40px);
        width: calc(100% + 40px);
    }

    .post-body .wp-block-gallery.columns-3,
    .post-body .gallery-columns-3,
    .post-body .wp-block-gallery.columns-4,
    .post-body .gallery-columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .post-navigation {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .post-nav-prev,
    .post-nav-next {
        text-align: left;
    }

    .post-nav-link {
        padding: 15px 20px;
    }
}

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

.footer-content p {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2vw, 22px);
    color: var(--color-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-content {
    text-align: center;
    padding: 20px;
}

/* ======================================================
   RESPONSIVE DESIGN - MEDIA QUERIES
====================================================== */

/* Tablets and smaller (below 992px) */
@media (max-width: 991px) {
    .site-header-inner {
        padding: 20px 24px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: var(--spacing-md);
    }

    .menu-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        max-width: 80%;
        height: 100vh;
        background: rgba(20, 28, 18, 0.97);
        padding: 80px 30px 30px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 100;
        overflow-y: auto;
    }

    .site-nav.is-open {
        transform: translateX(0);
    }

    .site-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .site-nav a {
        font-size: 20px;
    }

    .site-nav .book-now a,
    .site-nav .nav-btn {
        display: inline-block;
    }

    .site-branding {
        font-size: 28px;
    }

    .site-logo-animation {
        width: 100px !important;
        height: 80px !important;
    }

    .home-hero {
        height: 70vh;
    }

    .hero-title {
        font-size: 42px;
        line-height: 1.2;
    }

    h1.hero-title span {
        font-size: 18px;
    }

    .feature-strip {
        padding: 20px 24px;
    }

    .feature-strip-inner {
        flex-wrap: wrap;
        gap: 20px;
    }

    /* Step Back Section - Stack on tablets */
    .step-back-grid {
        grid-template-columns: 1fr;
    }

    .step-back-text {
        grid-column: 1;
        margin-right: 0;
        padding: 60px 5%;
    }

    .step-back-image {
        grid-column: 1;
        grid-row: 2;
        height: 400px;
        border-radius: var(--radius-md);
    }

    .step-icons {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }

    /* Accommodation Preview Section */
    .accommodation-preview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Attractions Section */
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .attractions-header {
        margin: 40px 0;
    }

    /* Map Section */
    .location-map-section {
        padding: 40px 0;
    }

    .location-map {
        height: 400px;
    }
}

/* Mobile devices (below 768px) */
@media (max-width: 767px) {
    .site-header-inner {
        padding: 16px 20px;
    }

    .site-branding {
        font-size: 22px;
    }

    .site-logo-animation {
        width: 80px !important;
        height: 64px !important;
    }

    .home-hero {
        height: 60vh;
    }

    .hero-content {
        padding: var(--spacing-sm);
        max-width: 100%;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    h1.hero-title span {
        font-size: 16px;
    }

    .hero-tagline {
        font-size: 16px;
    }

    .feature-strip {
        width: calc(100% - 40px);
        left: 20px;
        transform: none;
        padding: 15px 10px;
    }

    .feature-strip-inner {
        flex-direction: row;
        justify-content: space-around;
        gap: 10px;
    }

    .feature,
    .featuretwo {
        flex-direction: column;
        text-align: center;
        border: none;
        padding: 0;
        font-size: 11px;
        flex: 1;
    }

    .feature-icon {
        width: 24px;
        height: 24px;
    }

    .home-intro {
        padding: 5rem 1.5rem 3rem;
    }

    .step-back-text {
        padding: 40px 8%;
    }

    .step-icons {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .step-back-image {
        height: 300px;
    }

    .accommodation-preview {
        padding: 60px 0 0 0;
    }

    .attractions-grid {
        grid-template-columns: 1fr;
    }

    .attraction-img {
        height: 300px;
    }

    .attractions-header {
        flex-direction: column;
        margin: 30px 0;
    }

    .attractions-title {
        white-space: normal;
    }

    .line {
        display: none;
    }

    .card-title-wrapper h4 {
        font-size: 24px;
    }

    .btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.9rem;
    }

    /* Map Section */
    .location-map-section {
        padding: 30px 0;
    }

    .location-map {
        height: 350px;
    }
}

/* Small mobile (below 576px) */
@media (max-width: 575px) {
    .site-header-inner {
        padding: 20px 15px;
    }

    .site-branding {
        font-size: 24px;
    }

    .site-logo {
        height: 60px;
    }

    .site-nav a {
        font-size: 16px;
    }

    .home-hero {
        height: 50vh;
    }

    .hero-title {
        font-size: 26px;
    }

    h1.hero-title span {
        font-size: 14px;
    }

    .feature-strip {
        left: 15px;
        width: calc(100% - 30px);
        padding: 15px;
    }

    .home-intro {
        padding: 4rem 1rem 2rem;
    }

    .step-back-text {
        padding: 30px 5%;
    }

    .step-icons img {
        width: 35px;
        height: 35px;
    }

    .card-title-wrapper img {
        height: 40px;
    }

    .card-title-wrapper h4 {
        font-size: 20px;
        margin-left: 10px;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }

    /* Map Section */
    .location-map-section {
        padding: 20px 0;
    }

    .location-map {
        height: 300px;
    }

    .custom-marker {
        width: 28px;
        height: 28px;
    }

    .custom-marker-icon {
        font-size: 14px;
    }
}

/* Landscape mobile orientation */
@media (max-width: 767px) and (orientation: landscape) {
    .home-hero {
        height: 90vh;
    }
}
