/* Base typography & layout */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  color: var(--bs-body-color);
  background: var(--bs-body-bg);
  font-family: "Josefin Sans", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  padding-top: 0;
}

main {
  font-size: 1.05rem;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand,
.fw-bold,
.fw-semibold {
  font-family: "Josefin Sans", "Times New Roman", serif;
}

.font-script {
  font-family: "Lovers Quarrel", cursive;
  letter-spacing: 0.02em;
}

/* Section backgrounds & spacing */
main > section:first-of-type {
  background-image: url('../images/background/bg.png');
  background-repeat: repeat;
  background-size: auto;
  background-position: center;
  position: relative;
  overflow: hidden;
}

main > section:first-of-type::after {
  content: "";
  position: absolute;
  inset: 65% 0 0 0;
  background: linear-gradient(to bottom, transparent 0%, var(--bs-body-bg) 100%);
  pointer-events: none;
}

.section {
  padding: 3.5rem 10%;
  background: var(--bs-body-bg);
}

.tile-section {
  background: var(--uc-surface-2);
  border-top: 3px solid #dfb57a;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.04);
}

/* Navbar & dropdowns (site-wide) */
.navbar {
  transition: all 0.3s ease;
  z-index: 1030;
}

.navbar-transparent {
  background: rgba(42, 40, 38, 0.75) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-transparent.scrolled {
  background: rgba(42, 40, 38, 0.95) !important;
  border-bottom: 2px solid #dfb57a;
}

.dropdown-menu {
  font-size: 0.95rem;
  color: var(--bs-body-color);
  min-width: 12rem;
  white-space: normal;
}

.dropdown-item {
  color: var(--bs-body-color);
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: color-mix(in srgb, var(--bs-primary) 12%, var(--uc-surface));
  color: var(--bs-heading-color);
}

#themeToggle {
  background: transparent;
  border: none;
  color: #fff;
  padding-inline: 0.35rem;
}

/* Keep theme toggle white on dark/transparent navs */
.navbar:not(.navbar-light-bg) #themeToggle {
  color: #fff;
  border: none;
}

.navbar.navbar-light-bg #themeToggle {
  border-color: transparent;
  color: rgba(0, 0, 0, 0.78);
}

#themeToggle:hover,
#themeToggle:focus,
.navbar.navbar-light-bg #themeToggle:hover {
  background: transparent;
  box-shadow: none;
  color: inherit;
}

.navbar.navbar-light-bg #themeToggle {
  border-color: rgba(0, 0, 0, 0.7);
  color: rgba(0, 0, 0, 0.88);
}

.navbar.navbar-light-bg #themeToggle:hover {
  background: rgba(0, 0, 0, 0.08);
}

@media (min-width: 992px) {
  .navbar .navbar-nav {
    flex-wrap: wrap;
    gap: 0.35rem;
  }
  .navbar .nav-link,
  .navbar .btn,
  .navbar select,
  .navbar form {
    white-space: nowrap;
  }
}

.navbar.bg-primary {
  background: linear-gradient(180deg,
    color-mix(in srgb, #2a2826 35%, #000) 0%,
    #2a2826 100%) !important;
}

.navbar.navbar-secondary {
  background: linear-gradient(180deg,
    color-mix(in srgb, #dfb57a 25%, #000) 0%,
    #dfb57a 100%) !important;
}

.navbar.navbar-light-bg {
  background: linear-gradient(180deg,
    color-mix(in srgb, #f6f3f3 40%, #000) 0%,
    #f6f3f3 100%) !important;
}

.navbar.navbar-dark-bg {
  background: linear-gradient(180deg,
    #1b1714 0%,
    #2a2826 100%) !important;
}

/* Cards & surfaces */
.card {
  background: var(--uc-surface);
  border: 2px solid #000 !important;
  border-radius: 6px !important;
  padding: 1.65rem;
  box-shadow: 0 22px 70px -45px rgba(31, 42, 42, 0.55);
}

.tile-card {
  background: #fff;
  border: 2px solid #000;
  border-radius: 8px;
  box-shadow: 0 14px 32px -24px rgba(0, 0, 0, 0.35);
  padding: 1.25rem;
}

/* Hero & page intros */
.hero {
  position: relative;
  min-height: 50vh;
  background-size: cover;
  background-position: center;
  display: grid;
  align-items: center;
  color: #efebe9;
}

.hero-vignola {
  background-image: linear-gradient(180deg, rgba(26, 23, 21, 0.66), rgba(42, 40, 38, 0.88)),
    url('../images/hero.jpg');
}

.hero.small {
  min-height: 35vh;
}

.hero .overlay {
  padding: 4rem 10%;
  background: linear-gradient(135deg, rgba(26, 23, 21, 0.92), rgba(42, 40, 38, 0.88));
  backdrop-filter: blur(2px);
  max-width: 720px;
  border-radius: 6px;
  box-shadow: 0 24px 80px -40px rgba(0, 0, 0, 0.4);
  border: 2px solid #dfb57a;
}

.hero h1 {
  font-size: 2.8rem;
  margin: 0.4rem 0;
  letter-spacing: 0.02em;
}

.hero .font-script {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  color: #dfb57a;
}

.bg-primary h1 {
  color: #efebe9;
}

.subtitle {
  color: var(--bs-heading-color-light);
  font-size: 1.15rem;
}

.eyebrow {
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #dfb57a;
}

.Re-hero {
  position: relative;
  padding: 4.5rem 0;
  background: radial-gradient(circle at 20% 20%, rgba(223, 181, 122, 0.22), transparent 36%),
    radial-gradient(circle at 80% 10%, rgba(26, 23, 21, 0.3), transparent 32%),
    linear-gradient(135deg, rgba(26, 23, 21, 0.96), rgba(42, 40, 38, 0.9));
}

/* Layout helpers & pills */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.pill-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tile-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1rem;
  background: #dfb57a;
  color: #2a2826;
  border-radius: 999px;
  border: 2px solid #000;
  box-shadow: 0 8px 18px -12px rgba(0, 0, 0, 0.3);
}

.pill {
  padding: 0.75rem 1rem;
  background: color-mix(in srgb, var(--bs-primary) 25%, var(--uc-surface));
  color: #2a2826;
  border-radius: 6px;
  font-weight: 600;
  border: 2px solid #000;
}

/* Myth page */
.myth-hero-visual {
  height: 320px;
  border: 2px solid #000;
  overflow: hidden;
  border-radius: 6px;
}

.myth-facts .pill {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 2px solid #000;
}

.myth-lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--bs-body-color) 78%, var(--bs-heading-color));
}

.myth-block {
  margin-top: 1.25rem;
  padding: 1.1rem 1.25rem;
  border-left: 4px solid var(--bs-primary);
  background: var(--uc-surface);
  border-radius: 6px;
  box-shadow: 0 18px 45px -38px rgba(31, 42, 42, 0.45);
  border: 2px solid #000;
}

.myth-list {
  margin: 0;
  padding-left: 1.1rem;
  color: color-mix(in srgb, var(--bs-body-color) 86%, var(--bs-heading-color));
  display: grid;
  gap: 0.4rem;
}

.myth-card {
  border: 2px solid #000;
  border-radius: 6px;
}

.myth-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}

.myth-strip-item {
  background: var(--uc-surface);
  border-radius: 6px;
  border: 2px solid #000;
  box-shadow: 0 14px 40px -34px rgba(31, 42, 42, 0.55);
  overflow: hidden;
}

/* Forms & actions */
.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-weight: 600;
  color: var(--bs-heading-color);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  border: 2px solid #000;
  font-size: 1rem;
  background: var(--uc-surface);
  color: var(--bs-body-color);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: color-mix(in srgb, var(--bs-body-color) 65%, transparent);
}

.booking-form .grid {
  display: grid;
  gap: 1rem;
}

.booking-form .two-cols {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.button,
button {
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.button,
.booking-form button {
  display: inline-block;
  padding: 0.85rem 1.15rem;
  border-radius: 6px;
  background: linear-gradient(120deg, #dfb57a, #b68745);
  color: #2a2826;
  font-weight: 700;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 12px 30px -18px rgba(42, 40, 38, 0.45);
  border: 2px solid #000;
}

.btn-primary {
  background-color: #dfb57a;
  border-color: #b68745;
  color: #2a2826;
  box-shadow: 0 14px 34px -20px rgba(42, 40, 38, 0.4);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #b68745;
  border-color: #2a2826;
  color: #f6f3f3;
  box-shadow: 0 16px 38px -18px rgba(42, 40, 38, 0.36);
}

.button:hover,
.booking-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px -16px rgba(42, 40, 38, 0.42);
}

.button.full {
  width: 100%;
}

.ghost {
  padding: 0.8rem 1.1rem;
  border-radius: 6px;
  border: 2px solid #000;
  color: #fff;
  text-decoration: none;
}

.inline {
  text-decoration: none;
  font-weight: 700;
  color: #2a2826;
}

/* Content grids & room cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.room {
  background: var(--uc-surface);
  padding: 1.2rem;
  border-radius: 6px;
  border: 2px solid #000;
}

.meta {
  color: color-mix(in srgb, var(--bs-body-color) 72%, var(--bs-heading-color));
  margin-top: 0.5rem;
}

.price {
  font-weight: 800;
  color: var(--bs-primary);
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

/* Common content blocks */
.map-placeholder {
  border: 2px solid #000;
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
  color: color-mix(in srgb, var(--bs-body-color) 72%, var(--bs-heading-color));
  background: color-mix(in srgb, var(--bs-secondary) 10%, var(--uc-surface));
}

.alert {
  background: color-mix(in srgb, var(--bs-warning) 12%, var(--uc-surface));
  color: color-mix(in srgb, var(--bs-body-color) 88%, var(--bs-primary));
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  border: 2px solid #000;
}

.footer {
  background: var(--bs-dark);
  color: #e6e1d9;
}

/* Gallery & lightbox */
.gallery .images img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 12px 38px -24px rgba(31, 42, 42, 0.6);
  border: 2px solid #000;
}

.gallery-card {
  position: relative;
  padding-top: 68%;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid #000;
  box-shadow: 0 16px 46px -36px rgba(31, 42, 42, 0.6);
}

.gallery-card img {
  position: absolute;
  inset: 0;
}

.gallery-card,
.gallery .images img {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card:hover,
.gallery .images img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border: 3px solid #fff;
  border-radius: 6px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 999px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10000;
}

.lightbox-nav i {
  font-size: 1.25rem;
}

.lightbox-nav.prev { left: 30px; }
.lightbox-nav.next { right: 30px; }

/* Dark theme adjustments */
html[data-theme="dark"] .card,
html[data-theme="dark"] .room,
html[data-theme="dark"] .myth-block,
html[data-theme="dark"] .myth-strip-item {
  box-shadow: 0 18px 55px -44px rgba(0, 0, 0, 0.75);
}

html[data-theme="dark"] .dropdown-menu {
  background: var(--uc-surface);
  border-color: var(--bs-border-color);
}

html[data-theme="dark"] .dropdown-item {
  color: var(--bs-body-color);
}

html[data-theme="dark"] .dropdown-item:hover,
html[data-theme="dark"] .dropdown-item:focus {
  background: color-mix(in srgb, var(--bs-primary) 16%, var(--uc-surface));
}

/* ===== NEW HOME PAGE STYLES ===== */

/* Hero Section with Full Background */
.hero-new {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px; /* keep content clear of transparent navbar */
  padding-bottom: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(42, 40, 38, 0.4), rgba(26, 23, 21, 0.6)),
    url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}

.hero-new .container {
  position: relative;
  z-index: 2;
}

.hero-text {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-script {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #dfb57a;
}

/* Availability Card */
.availability-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 2px solid #dfb57a;
}

.availability-form .form-control,
.availability-form .form-select {
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.availability-form .form-control:focus,
.availability-form .form-select:focus {
  border-color: #dfb57a;
  box-shadow: 0 0 0 0.2rem rgba(223, 181, 122, 0.25);
}

.availability-form .form-label {
  font-weight: 600;
  color: #2a2826;
  margin-bottom: 0.5rem;
}

/* About Pills Section */
.about-pills-section {
  background: var(--bs-body-bg);
}

.about-image-tall {
  height: 400px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-image-tall:hover img {
  transform: scale(1.05);
}

.feature-pill {
  background: rgba(223, 181, 122, 0.1);
  border: 2px solid #dfb57a;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  transition: all 0.2s ease;
}

.feature-pill:hover {
  background: rgba(223, 181, 122, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Availability selection banner */
.selection-banner {
  background: linear-gradient(135deg, rgba(223, 181, 122, 0.08), rgba(0, 123, 255, 0.08));
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 1.25rem 1.5rem;
}
.selection-banner .btn {
  border-radius: 999px;
}

/* Dark mode fixes for availability table */
html[data-theme="dark"] .availability-section .card {
  background: var(--uc-surface);
  border-color: var(--bs-border-color);
}

html[data-theme="dark"] .availability-section .table {
  color: var(--bs-body-color);
}

html[data-theme="dark"] .availability-section .table td,
html[data-theme="dark"] .availability-section .table th {
  background-color: var(--uc-surface-2);
  color: var(--bs-body-color);
  border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .availability-section .table thead.table-light th {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--bs-body-color);
}

/* Myth Summary Section */
.myth-summary-section {
  background: var(--uc-surface-2);
}

.myth-image-box {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 3px solid #dfb57a;
}

.myth-image-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* Suites Section */
.suites-section {
  background: var(--bs-body-bg);
}

.suite-card {
  transition: transform 0.3s ease;
}

.suite-card:hover {
  transform: translateY(-5px);
}

.suite-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.suite-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Activities Section */
.activities-section {
  background: var(--uc-surface-2);
}

.activity-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
}

.activity-card:hover {
  transform: translateY(-5px);
  border-color: #dfb57a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.activity-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Reviews Section */
.reviews-section {
  position: relative;
  padding: 5rem 0;
  color: white;
}

.reviews-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(26, 23, 21, 0.85), rgba(42, 40, 38, 0.9)),
    url('../images/gallery/agriturismo/a15.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.review-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 2rem;
  color: #2a2826;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid #dfb57a;
  height: 100%;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

/* Enhanced Footer */
.footer {
  background: linear-gradient(135deg, #1b1714 0%, #2a2826 100%);
  color: #e6e1d9;
  padding: 3rem 0 1.5rem;
}

.footer h5 {
  color: #dfb57a;
  border-bottom: 2px solid #dfb57a;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.footer a {
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #dfb57a !important;
}

.footer-social {
  display: flex;
  gap: 1rem;
  font-size: 1.5rem;
}

.footer-social a {
  color: #e6e1d9;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  color: #dfb57a;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .hero-new {
    min-height: auto;
    padding: 6rem 0 4rem;
  }

  .hero-background {
    background-attachment: scroll;
  }

  .availability-card {
    margin-top: 2rem;
  }

  .about-image-tall {
    height: 300px;
  }

  .reviews-background {
    background-attachment: scroll;
  }
}

@media (max-width: 767.98px) {
  .hero-script {
    font-size: 2rem;
  }

  .suite-image img {
    height: 250px;
  }

  .activity-card {
    padding: 1.5rem 1rem;
  }
}

/* ===== AGRITURISMO PAGE STYLES ===== */

/* Unified hero layout (shared across pages) */
.hero-agriturismo,
.hero-myth,
.hero-suites,
.hero-gallery,
.hero-availability,
.hero-contact {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background-agriturismo,
.hero-background-myth,
.hero-background-suites,
.hero-background-gallery,
.hero-background-availability,
.hero-background-contact {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.5)), var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}

.hero-background-agriturismo { --hero-bg: url('../images/gallery/agriturismo/a15.jpg'); }
.hero-background-myth { --hero-bg: url('/static/sitecore/images/gallery/surroundings/s1.jpg'); }
.hero-background-suites { --hero-bg: url('/static/sitecore/images/gallery/suites/c8.jpg'); }
.hero-background-gallery { --hero-bg: url('/static/sitecore/images/gallery/surroundings/s2.jpg'); }
.hero-background-availability { --hero-bg: url('/static/sitecore/images/gallery/suites/c8.jpg'); }
.hero-background-contact { --hero-bg: url('/static/sitecore/images/gallery/surroundings/s3.jpg'); }

/* Farm Introduction Section */
.farm-intro-section {
  background: var(--bs-body-bg);
}

.farm-intro-image {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  overflow: hidden;
}

.farm-intro-image img {
  transition: transform 0.3s ease;
}

.farm-intro-image:hover img {
  transform: scale(1.05);
}

.stat-pill {
  background: rgba(223, 181, 122, 0.1);
  border: 2px solid #dfb57a;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-pill:hover {
  background: rgba(223, 181, 122, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Product Sections (Olive & Cheese) */
.olive-section {
  background: var(--uc-surface-2);
}

.cheese-section {
  background: var(--bs-body-bg);
}

.product-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.product-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

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

.product-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features li {
  padding: 0.5rem 0;
  font-size: 1.05rem;
}

/* Estate Features Section */
.estate-features-section {
  background: var(--uc-surface-2);
}

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #dfb57a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 1);
}

.feature-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gallery Section */
.gallery-section {
  background: var(--bs-body-bg);
}

.gallery-card-agri {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-card-agri:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-card-agri img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card-agri:hover img {
  transform: scale(1.1);
}

/* Surrounding Area Section */
.surrounding-area-section {
  background: var(--uc-surface-2);
}

.area-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.area-card:hover {
  transform: translateY(-5px);
  border-color: #dfb57a;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.area-card-icon {
  text-align: center;
}

.area-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.area-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.area-list li:last-child {
  border-bottom: none;
}

.info-banner {
  background: linear-gradient(135deg, rgba(223, 181, 122, 0.2), rgba(223, 181, 122, 0.1));
  border: 2px solid #dfb57a;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Unified CTA sections (shared across pages) */
.cta-agri-section,
.cta-section-myth,
.suites-cta-section,
.cta-section {
  position: relative;
  padding: 6rem 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.cta-agri-section::before,
.cta-section-myth::before,
.suites-cta-section::before,
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(26, 23, 21, 0.82), rgba(42, 40, 38, 0.88)), var(--cta-bg, #1b1714);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.cta-agri-section .container,
.cta-section-myth .container,
.suites-cta-section .container,
.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-agri-section { --cta-bg: url('../images/gallery/surroundings/s1.jpg'); }
.cta-section-myth { --cta-bg: url('/static/sitecore/images/gallery/surroundings/s2.jpg'); }
.suites-cta-section { --cta-bg: url('/static/sitecore/images/gallery/suites/c19.jpg'); }
.cta-section { --cta-bg: url('/static/sitecore/images/gallery/agriturismo/a10.jpg'); }

.cta-background-agri,
.cta-background-myth {
  display: none;
}

/* Responsive adjustments for Agriturismo page */
@media (max-width: 991.98px) {
  .hero-agriturismo {
    min-height: auto;
    padding: 6rem 0 4rem;
  }

  .hero-background-agriturismo,
  .cta-background-agri {
    background-attachment: scroll;
  }

  .stat-pill {
    margin-bottom: 1rem;
  }

  .gallery-card-agri img {
    height: 180px;
  }
}

@media (max-width: 767.98px) {
  .product-features li {
    font-size: 0.95rem;
  }

  .feature-card {
    padding: 1.5rem 1rem;
  }

  .gallery-card-agri img {
    height: 150px;
  }

  .area-card {
    padding: 1.5rem;
  }

  .info-banner {
    padding: 1.5rem;
  }

  .cta-agri-section {
    padding: 4rem 0;
  }
}

/* ========================================
   MYTH PAGE STYLES
   ======================================== */

/* Odyssey Intro Section */
.odyssey-intro-section {
  background-color: #fff;
}

.myth-intro-image img {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.myth-intro-image img:hover {
  transform: scale(1.02);
}

/* Amendolara Section */
.amendolara-section {
  background-color: #f8f9fa;
}

.myth-location-image img {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.fact-boxes {
  display: flex;
  gap: 1rem;
}

.fact-box {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  flex: 1;
  min-width: 140px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.fact-icon {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: #35524f;
}

.fact-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #35524f;
}

/* Evidence Section */
.evidence-section {
  background-color: #fff;
}

.evidence-item h4 {
  color: #35524f;
}

.myth-evidence-image img {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.image-caption {
  font-style: italic;
  margin-top: 0.75rem;
}

.quote-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-left: 4px solid #b85c38;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.quote-box blockquote p {
  color: #2d3748;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Leucothea Section */
.leucothea-section {
  background-color: #f8f9fa;
}

.myth-leucothea-image img {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* Calypso Promise Section */
.calypso-promise-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.calypso-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), 
              url('/static/sitecore/images/gallery/surroundings/s3.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: blur(2px);
  z-index: -1;
}

.calypso-quote {
  max-width: 700px;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Departure Section */
.departure-section {
  background-color: #fff;
}

.myth-map {
  height: 500px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.map-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legend-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.legend-line {
  width: 30px;
  height: 3px;
  background: #b85c38;
  border-top: 2px dashed #b85c38;
}

.route-details {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
}

.route-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  min-width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #35524f 0%, #2a413e 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-content h5 {
  margin: 0;
  font-size: 1rem;
  color: #35524f;
}

/* Key Locations Grid */
.locations-grid-section {
  background-color: #f8f9fa;
}

.location-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.location-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Gallery Section */
.gallery-section {
  background-color: #fff;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* CTA Section - Myth */
.cta-section-myth {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.cta-background-myth {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(53, 82, 79, 0.85), rgba(42, 65, 62, 0.9)), 
              url('/static/sitecore/images/gallery/surroundings/s2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: blur(1px);
  z-index: -1;
}

.cta-section-myth .btn-light {
  background: white;
  color: #35524f;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-section-myth .btn-light:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta-section-myth .btn-outline-light {
  border-color: white;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-section-myth .btn-outline-light:hover {
  background: white;
  color: #35524f;
  transform: translateY(-2px);
}

/* Responsive adjustments for Myth page */
@media (max-width: 991.98px) {
  .hero-myth {
    min-height: auto;
    padding: 6rem 0 4rem;
  }

  .hero-background-myth,
  .calypso-background,
  .cta-background-myth {
    background-attachment: scroll;
  }

  .fact-boxes {
    flex-direction: column;
  }

  .myth-map {
    height: 400px;
  }

  .route-details {
    margin-top: 2rem;
  }

  .calypso-promise-section,
  .cta-section-myth {
    padding: 5rem 0;
  }

  .calypso-quote {
    padding: 2rem;
  }
}

@media (max-width: 767.98px) {
  .fact-box {
    padding: 1rem;
    min-width: 100px;
  }

  .fact-icon {
    height: 50px;
  }

  .fact-icon svg {
    width: 36px;
    height: 36px;
  }

  .quote-box {
    padding: 1.5rem;
  }

  .quote-box blockquote p {
    font-size: 1rem;
  }

  .calypso-quote p.h5 {
    font-size: 1.1rem;
  }

  .location-card {
    padding: 1.5rem;
  }

  .location-icon {
    font-size: 2.5rem;
  }

  .gallery-item img {
    height: 220px;
  }

  .myth-map {
    height: 350px;
  }

  .route-details {
    padding: 1.5rem;
  }

  .calypso-promise-section,
  .cta-section-myth {
    padding: 4rem 0;
  }
}

/* ========================================
   SUITES PAGE STYLES
   ======================================== */

/* Amenities Section */
.amenities-section {
  background-color: #f8f9fa;
}

.amenity-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  font-size: 1.05rem;
}

.amenity-item i {
  font-size: 1.5rem;
}

.amenities-image img {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.amenities-image img:hover {
  transform: scale(1.02);
}

/* Suite Detail Sections */
.suite-detail-section {
  background-color: #fff;
}

.suite-number {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #35524f;
  background: rgba(223, 181, 122, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.suite-image-large img {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.suite-image-large img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Pricing Section */
.pricing-section {
  background-color: #fff;
}

.pricing-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.pricing-table thead {
  background: linear-gradient(135deg, #35524f 0%, #2a413e 100%);
  color: white;
}

.pricing-table thead th {
  padding: 1.25rem;
  font-weight: 600;
  border: none;
}

.pricing-table tbody td {
  padding: 1.25rem;
  font-size: 1.05rem;
  vertical-align: middle;
}

.pricing-table tbody tr:hover {
  background-color: rgba(223, 181, 122, 0.1);
}

/* Dark mode overrides for pricing table (suites) */
html[data-theme="dark"] .pricing-section {
  background-color: var(--uc-surface);
}

html[data-theme="dark"] .pricing-table {
  background: var(--uc-surface-2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

html[data-theme="dark"] .pricing-table thead {
  background: linear-gradient(135deg, rgba(53, 82, 79, 0.9) 0%, rgba(42, 65, 62, 0.9) 100%);
  color: var(--bs-body-color);
}

html[data-theme="dark"] .pricing-table thead th,
html[data-theme="dark"] .pricing-table tbody td {
  color: var(--bs-body-color);
  border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .pricing-table tbody tr:hover {
  background-color: rgba(223, 181, 122, 0.18);
}

html[data-theme="dark"] .pricing-notes {
  background: var(--uc-surface-2);
  color: var(--bs-body-color);
  border-color: #dfb57a;
}

.pricing-notes {
  border-left: 4px solid #dfb57a;
}

/* Suites Reviews Section */
.suites-reviews-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.suites-reviews-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(26, 23, 21, 0.85), rgba(42, 40, 38, 0.9)), 
              url('/static/sitecore/images/gallery/agriturismo/a10.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

/* Suites CTA Section */
.suites-cta-section {
  background-color: #f8f9fa;
}

/* Responsive adjustments for Suites page */
@media (max-width: 991.98px) {
  .hero-suites {
    min-height: auto;
    padding: 6rem 0 4rem;
  }

  .hero-background-suites,
  .suites-reviews-background {
    background-attachment: scroll;
  }

  .suite-image-large {
    margin-bottom: 2rem;
  }

  .pricing-table {
    font-size: 0.9rem;
  }

  .pricing-table thead th,
  .pricing-table tbody td {
    padding: 0.75rem 0.5rem;
  }
}

@media (max-width: 767.98px) {
  .suite-detail-section {
    padding: 3rem 0;
  }

  .suite-image-large img {
    margin-bottom: 1.5rem;
  }

  .pricing-table {
    font-size: 0.85rem;
  }

  .pricing-table thead th,
  .pricing-table tbody td {
    padding: 0.5rem 0.35rem;
  }

  .suites-cta-section {
    padding: 4rem 0;
  }
}

/* ========================================
   SUITES PAGE STYLES
   ======================================== */

/* Amenities Section */
.amenities-section {
  background-color: #f8f9fa;
}

.amenity-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  font-size: 1.05rem;
}

.amenity-item i {
  font-size: 1.5rem;
}

.amenities-image img {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.amenities-image img:hover {
  transform: scale(1.02);
}

/* Suite Detail Sections */
.suite-detail-section {
  background-color: #fff;
}

.suite-number {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #35524f;
  background: rgba(223, 181, 122, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.suite-image-large img {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.suite-image-large img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Pricing Section */
.pricing-section {
  background-color: #fff;
}

.pricing-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.pricing-table thead {
  background: linear-gradient(135deg, #35524f 0%, #2a413e 100%);
  color: white;
}

.pricing-table thead th {
  padding: 1.25rem;
  font-weight: 600;
  border: none;
}

.pricing-table tbody td {
  padding: 1.25rem;
  font-size: 1.05rem;
  vertical-align: middle;
}

.pricing-table tbody tr:hover {
  background-color: rgba(223, 181, 122, 0.1);
}

.pricing-notes {
  border-left: 4px solid #dfb57a;
}

/* Suites Reviews Section */
.suites-reviews-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.suites-reviews-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(26, 23, 21, 0.85), rgba(42, 40, 38, 0.9)), 
              url('/static/sitecore/images/gallery/agriturismo/a10.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

/* Suites CTA Section */
.suites-cta-section {
  background-color: #f8f9fa;
}

/* Responsive adjustments for Suites page */
@media (max-width: 991.98px) {
  .hero-suites {
    min-height: auto;
    padding: 6rem 0 4rem;
  }

  .hero-background-suites,
  .suites-reviews-background {
    background-attachment: scroll;
  }

  .suite-image-large {
    margin-bottom: 2rem;
  }

  .pricing-table {
    font-size: 0.9rem;
  }

  .pricing-table thead th,
  .pricing-table tbody td {
    padding: 0.75rem 0.5rem;
  }
}

@media (max-width: 767.98px) {
  .suite-detail-section {
    padding: 3rem 0;
  }

  .suite-image-large img {
    margin-bottom: 1.5rem;
  }

  .pricing-table {
    font-size: 0.85rem;
  }

  .pricing-table thead th,
  .pricing-table tbody td {
    padding: 0.5rem 0.35rem;
  }

  .suites-cta-section {
    padding: 4rem 0;
  }
}

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

/* Get in Touch Section */
.get-in-touch-section {
  background-color: #fff;
}

/* Contact Information Table */
.contact-info-section {
  background-color: #f8f9fa;
}

.contact-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-card h5 {
  color: #35524f;
  font-weight: 600;
}

.contact-card a {
  color: #35524f;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: #dfb57a;
}

/* How to Reach Us Section */
.how-to-reach-section {
  background-color: #fff;
}

/* Contact Map Section - Full Width */
.contact-map-section {
  width: 100%;
  padding: 0;
}

.contact-map-full {
  height: 500px;
  width: 100%;
}

/* Responsive adjustments for Contact page */
@media (max-width: 991.98px) {
  .hero-contact {
    min-height: auto;
    padding: 6rem 0 4rem;
  }

  .hero-background-contact {
    background-attachment: scroll;
  }

  .contact-card {
    margin-bottom: 1rem;
  }

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

@media (max-width: 767.98px) {
  .contact-card {
    font-size: 0.9rem;
  }

  .contact-map-full {
    height: 300px;
  }
}
