/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand palette */
  --c-terracotta:    #c4623b;   /* warm Ligurian roof tile */
  --c-terracotta-dk: #9c4a2a;
  --c-terracotta-soft: rgba(196, 98, 59, 0.10);
  --c-olive:         #5c6b3e;   /* deep olive */
  --c-olive-dk:      #424f2c;
  --c-gold:          #c89c4a;   /* burnished gold for accents */
  --c-cream:         #f5efe2;   /* parchment */
  --c-cream-2:       #ebe2cd;
  --c-paper:         #faf6ed;
  --c-card:          #ffffff;
  --c-ink:           #2b2620;
  --c-ink-2:         #1e1a15;
  --c-text:          #3a342c;
  --c-muted:         #786f63;
  --c-soft:          #a39888;
  --c-line:          rgba(43, 38, 32, 0.10);
  --c-line-strong:   rgba(43, 38, 32, 0.20);

  /* Type */
  --f-display: 'Playfair Display', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --f-body:    'Libre Franklin', 'Helvetica Neue', Arial, sans-serif;
  --f-script:  'Cormorant Garamond', Georgia, serif;

  /* Layout */
  --container-max:   1100px;
  --container-wide:  1240px;
  --container-pad:   28px;
  --r-sm: 3px;
  --r-md: 6px;
  --r-lg: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(43, 38, 32, 0.08);
  --shadow-md: 0 16px 40px -14px rgba(43, 38, 32, 0.25);
  --shadow-lg: 0 30px 80px -20px rgba(43, 38, 32, 0.35);
}

/* --------------------------------------------------------------------------
   2. RESET / BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; border: 0; }

a {
  color: var(--c-terracotta);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
a:hover { color: var(--c-terracotta-dk); }

ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }

button, input { font: inherit; color: inherit; }

/* Screen-reader text */
.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px; height: 1px;
  overflow: hidden;
}

/* Clearfix */
.clearfix::after, .clear::after { content: ""; display: table; clear: both; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -120px; left: 12px;
  z-index: 9999;
  padding: 12px 18px;
  background: var(--c-ink);
  color: #fff;
  border-radius: var(--r-md);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--c-ink);
  line-height: 1.15;
  margin: 0 0 0.55em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); font-weight: 500; }
h3 { font-size: 1.45rem; font-weight: 600; }
h4 { font-size: 1.15rem; }

/* --------------------------------------------------------------------------
   4. THE PAGE / SITE OUTER
   -------------------------------------------------------------------------- */
#page { width: 100%; position: relative; }
.site-content-contain { width: 100%; }
.site-content { width: 100%; }
.content-area { width: 100%; }
.site-main { width: 100%; }
.wrap {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  position: relative;
}

/* --------------------------------------------------------------------------
   5. SITE HEADER — full-bleed hero image with giant site name
   -------------------------------------------------------------------------- */
.site-header {
  position: relative;
  width: 100%;
  background: var(--c-ink);
  overflow: hidden;
}

.custom-header {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.custom-header-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.custom-header-media img,
#wp-custom-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
}
.custom-header-media::after,
.wp-custom-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(43, 38, 32, 0.30) 0%,
      rgba(43, 38, 32, 0.50) 60%,
      rgba(43, 38, 32, 0.75) 100%);
  pointer-events: none;
}

/* Site branding (logo / name / tagline) — sits over the image */
.site-branding {
  position: relative;
  z-index: 3;
  margin-top: auto;
  margin-bottom: 14vh;
  width: 100%;
  text-align: center;
}
.site-branding-text {
  display: block;
  width: 100%;
  text-align: center;
}

/* The signature element — huge serif site name, per inline custom CSS */
.site-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(3.5rem, 14vw, 11.25rem);  /* 180px ≈ 11.25rem; scales down */
  line-height: 0.95;
  color: #fff;
  margin: 0 0 0.05em;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  animation: portico-rise 1.1s var(--ease) both;
}
.site-title a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s var(--ease);
}
.site-title a:hover { color: var(--c-gold); }

.site-description {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 3.5vw, 2.8rem);
  color: #fff;
  margin: 0;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
  position: relative;
  display: inline-block;
  padding-top: 14px;
  animation: portico-rise 1.1s var(--ease) 0.15s both;
  opacity: 0;
  animation-fill-mode: forwards;
}
.site-description::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--c-gold);
  margin: 0 auto 14px;
}
@keyframes portico-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   6. NAVIGATION (Twenty Seventeen .navigation-top, pinned at bottom of hero)
   -------------------------------------------------------------------------- */
.navigation-top {
  position: relative;
  z-index: 5;
  width: 100%;
  background: rgba(43, 38, 32, 0.0);
  margin-top: auto;
  padding-bottom: 14px;
}
/* When scrolled past hero, the JS may add .site-navigation-fixed — make it sticky-style */
.navigation-top.site-navigation-fixed {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(43, 38, 32, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 0;
  z-index: 1000;
}

.main-navigation { width: 100%; }
.main-navigation .wrap { padding: 0 var(--container-pad); }

#top-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
}
#top-menu > li { position: relative; }
#top-menu > li > a {
  display: inline-flex;
  align-items: center;
  padding: 16px 18px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: color 0.2s var(--ease);
}
#top-menu > li > a::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px;
  bottom: 10px;
  height: 2px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}
#top-menu > li:hover > a,
#top-menu > li.current-menu-item > a {
  color: #fff;
}
#top-menu > li:hover > a::after,
#top-menu > li.current-menu-item > a::after {
  transform: scaleX(1);
}

/* Language flags */
#top-menu .wpml-ls-flag,
.wpml-ls-flag {
  display: inline-block;
  width: 22px;
  height: 14px;
  margin: 0;
  vertical-align: middle;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s var(--ease);
}
#top-menu .wpml-ls-menu-item > a {
  padding: 16px 8px;
}
#top-menu .wpml-ls-menu-item:hover .wpml-ls-flag {
  transform: scale(1.15);
}
#top-menu .wpml-ls-current-language > a::after { transform: scaleX(1); background: var(--c-gold); }
#top-menu .wpml-ls-current-language .wpml-ls-flag { box-shadow: 0 0 0 2px var(--c-gold); }

/* Burger toggle (hidden on desktop) */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  align-items: center;
  gap: 8px;
}
.menu-toggle .icon { width: 14px; height: 14px; fill: currentColor; }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-bars { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: inline-block; }

/* Scroll-down arrow at bottom of hero */
.menu-scroll-down {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 6;
  background: rgba(43, 38, 32, 0.35);
  animation: portico-bob 2.5s ease-in-out infinite;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.menu-scroll-down:hover {
  color: #fff;
  background: var(--c-terracotta);
  border-color: var(--c-terracotta);
}
.menu-scroll-down .icon {
  width: 16px; height: 16px;
  fill: currentColor;
  transform: rotate(90deg);
}
@keyframes portico-bob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 6px); }
}

/* --------------------------------------------------------------------------
   7. WELCOME PANEL (first .twentyseventeen-panel — "WELCOME" intro)
   -------------------------------------------------------------------------- */
.twentyseventeen-panel {
  position: relative;
  width: 100%;
  background: var(--c-paper);
}
.twentyseventeen-panel + .twentyseventeen-panel { border-top: 0; }

/* The "WELCOME" intro has no panel-image, just centered text */
#post-21.twentyseventeen-panel {
  background: var(--c-cream);
  padding: 70px 0;
  text-align: center;
}
#post-21 .panel-content {
  position: relative;
  z-index: 1;
}
#post-21 .entry-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--c-terracotta);
  margin: 0;
  letter-spacing: 0.04em;
  display: inline-block;
  position: relative;
  padding: 0 30px;
}
#post-21 .entry-title::before,
#post-21 .entry-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 50px;
  height: 1px;
  background: var(--c-gold);
}
#post-21 .entry-title::before { right: 100%; }
#post-21 .entry-title::after  { left: 100%; }
#post-21 .entry-content { display: none; }

/* --------------------------------------------------------------------------
   8. ALTERNATING IMAGE PANELS (Menu / Our Story / Castelvittorio / Find Us)
   -------------------------------------------------------------------------- */
.twentyseventeen-panel.has-post-thumbnail {
  display: flex;
  flex-direction: column;
  background: var(--c-paper);
}

/* The full-width parallax-ish image */
.panel-image {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.panel-image-prop {
  /* The inline style sets padding-top: 60% to enforce aspect ratio */
  position: relative;
}
/* Subtle vignette so the heading reads */
.panel-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(43, 38, 32, 0.10) 0%,
    transparent 30%,
    transparent 70%,
    rgba(43, 38, 32, 0.50) 100%);
  pointer-events: none;
}

/* Panel content sits below the image (Twenty Seventeen front-page style) */
.panel-content {
  position: relative;
  padding: 70px 0;
  background: var(--c-paper);
}
.twentyseventeen-panel:nth-of-type(even) .panel-content {
  background: var(--c-cream);
}

.entry-header {
  margin-bottom: 28px;
  text-align: center;
  position: relative;
}
.entry-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--c-ink);
  margin: 0 0 14px;
  padding-bottom: 18px;
  letter-spacing: -0.005em;
  position: relative;
  display: inline-block;
}
.entry-title::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--c-terracotta);
}

.entry-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--c-text);
}
.entry-content p { margin-bottom: 1.1em; }
.entry-content p strong { color: var(--c-terracotta-dk); font-weight: 600; }
.entry-content img {
  border-radius: var(--r-md);
  margin: 24px auto;
  box-shadow: var(--shadow-sm);
}
.entry-content .wp-caption {
  max-width: 100%;
  margin: 24px auto;
}
.entry-content .wp-caption-text {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--c-muted);
  text-align: center;
  margin-top: 10px;
}

/* --------------------------------------------------------------------------
   9. FOOD AND DRINK MENU (fdm plugin)
   -------------------------------------------------------------------------- */
.fdm-the-menu {
  max-width: var(--container-wide);
  margin: 30px auto 0;
  padding: 0 var(--container-pad);
}
.fdm-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  list-style: none;
}
.fdm-menu.fdm-columns-2 { grid-template-columns: repeat(2, 1fr); }
.fdm-column { list-style: none; }

.fdm-section {
  margin-bottom: 42px;
}
.fdm-section-header {
  position: relative;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-line);
  text-align: left;
}
.fdm-section-header h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--c-terracotta);
  margin: 0;
  letter-spacing: -0.005em;
  display: inline-block;
  position: relative;
}
.fdm-section-header h3::after {
  content: "";
  position: absolute;
  left: 0; bottom: -13px;
  width: 36px; height: 2px;
  background: var(--c-terracotta);
}

/* Each menu item */
.fdm-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px dashed var(--c-line);
  position: relative;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.fdm-item:last-child { border-bottom: 0; }
.fdm-item:hover { background: rgba(196, 98, 59, 0.04); }

.fdm-item-image {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--c-cream-2);
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease);
}
.fdm-item:hover .fdm-item-image {
  transform: scale(1.05);
  border-color: var(--c-terracotta);
}

.fdm-item-panel {
  flex: 1;
  min-width: 0;
}
.fdm-item-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--c-ink);
  margin: 0 0 4px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}
.fdm-item:hover .fdm-item-title { color: var(--c-terracotta); }

.fdm-item-content {
  font-family: var(--f-body);
  font-size: 0.92rem;
  font-style: italic;
  color: var(--c-muted);
  line-height: 1.5;
}
.fdm-item-content p { margin: 0; }
.fdm-item-content .short_text { font-style: italic; }

/* Items without images have a left-border accent instead */
.fdm-item:not(.fdm-item-has-image) {
  padding-left: 16px;
  border-left: 3px solid transparent;
  transition: border-left-color 0.2s var(--ease), background 0.2s var(--ease);
}
.fdm-item:not(.fdm-item-has-image):hover {
  border-left-color: var(--c-terracotta);
}

.fdm-menu-filtering { display: none; }
.fdm-details-div, .fdm-details-background-div { display: none; }

/* The "Coffee-Wine-Water" line after the menu */
#panel1 .entry-content > p:last-of-type {
  text-align: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--c-gold);
  letter-spacing: 0.12em;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--c-line);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   10. GOOGLE MAP (How to find us)
   -------------------------------------------------------------------------- */
.wpgmza_map {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 0 auto 30px;
  max-width: 100%;
  background: var(--c-cream-2);
}

/* --------------------------------------------------------------------------
   11. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--c-ink);
  color: rgba(245, 239, 226, 0.75);
  position: relative;
  padding-top: 60px;
  padding-bottom: 30px;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(196, 98, 59, 0.08), transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(92, 107, 62, 0.06), transparent 50%);
  pointer-events: none;
}
.site-footer .wrap { position: relative; z-index: 1; max-width: var(--container-wide); }

.widget-area {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.widget-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer-widget-1 { grid-column: 1; }
.footer-widget-2 { grid-column: 2; }

.widget {
  position: relative;
}
.widget-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 18px;
  padding-bottom: 12px;
  letter-spacing: -0.005em;
  position: relative;
}
.widget-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: var(--c-terracotta);
}

/* Text widget body */
.widget_text {
  color: rgba(245, 239, 226, 0.78);
  font-size: 0.95rem;
  line-height: 1.7;
}
.widget_text p { margin: 0 0 1em; }
.widget_text p strong {
  display: block;
  color: var(--c-gold);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
  margin-top: 14px;
}
.widget_text p strong:first-child { margin-top: 0; }
.widget_text a { color: var(--c-terracotta); }
.widget_text a:hover { color: var(--c-gold); }
.widget_text img { border-radius: var(--r-md); margin: 14px 0; }

/* The image widget (cv4a logo / decorative photo) */
#text-12 img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* --------------------------------------------------------------------------
   12. BOOKING.COM SEARCH BOX (bos-searchbox)
   -------------------------------------------------------------------------- */
.widget.bos_searchbox_widget_class {
  background: transparent;
}
#flexi_searchbox {
  background: linear-gradient(135deg, #FEBA02 0%, #f0a800 100%) !important;
  color: #003580 !important;
  padding: 22px 20px;
  border-radius: var(--r-md);
  box-shadow: 0 12px 28px -10px rgba(0, 53, 128, 0.35);
}
.search-box-title-1 {
  margin: 0 0 14px !important;
  font-family: var(--f-display) !important;
  font-weight: 600 !important;
  font-size: 1.2rem !important;
  color: #003580 !important;
  letter-spacing: -0.005em;
}
#b_destination_h4,
#checkInDate_h4,
#checkOutDate_h4 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.72rem !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #003580 !important;
  margin: 0 0 6px;
}
#b_destination {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--f-body);
  font-size: 0.92rem;
  border: 1px solid rgba(0, 53, 128, 0.2);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
#b_destination:focus {
  border-color: #003580;
  box-shadow: 0 0 0 3px rgba(0, 53, 128, 0.15);
}
#b_searchDest { margin-bottom: 14px; }

.b_aff-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.bos-dates__col {
  padding: 8px 12px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(0, 53, 128, 0.2);
}
.bos-date-field__display {
  font-family: var(--f-body);
  font-size: 0.92rem;
  font-weight: 500;
}

#b_flexible_dates {
  margin-bottom: 14px;
  font-size: 0.86rem;
}
.b_checkbox_container {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
#b_idf {
  width: 16px; height: 16px;
  accent-color: #003580;
}

.b_submitButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  background: #0896FF !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease);
}
.b_submitButton:hover {
  background: #0073cc !important;
  transform: translateY(-1px);
}

#b_logo {
  margin-top: 14px;
  opacity: 0.85;
}
#b_logo img { max-width: 110px; height: auto; }

/* --------------------------------------------------------------------------
   13. FOOTER SOCIAL NAV
   -------------------------------------------------------------------------- */
.social-navigation {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0 22px;
  margin-bottom: 18px;
  text-align: center;
}
.social-links-menu {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.social-links-menu li {
  display: inline-flex;
}
.social-links-menu a,
.social-links-menu li > span:first-child + svg,
.social-links-menu svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.social-links-menu li {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.social-links-menu li:hover {
  background: var(--c-terracotta);
  transform: translateY(-3px);
}
.social-links-menu .icon,
.social-links-menu svg {
  width: 16px; height: 16px;
  fill: rgba(245, 239, 226, 0.85);
  transition: fill 0.2s var(--ease);
}
.social-links-menu li:hover .icon,
.social-links-menu li:hover svg { fill: #fff; }
.social-links-menu a {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The hidden default "Proudly powered by WordPress" line */
.site-info { display: none !important; }

/* --------------------------------------------------------------------------
   14. WPML LANGUAGE SWITCHER FOOTER
   -------------------------------------------------------------------------- */
.wpml-ls-statics-footer {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  text-align: center;
  margin: 0 auto;
  max-width: var(--container-wide);
}
.wpml-ls-statics-footer ul {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 var(--container-pad);
}
.wpml-ls-statics-footer li { display: inline-flex; }
.wpml-ls-statics-footer a {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04) !important;
  color: rgba(245, 239, 226, 0.7) !important;
  border-radius: var(--r-sm);
  transition: background 0.2s var(--ease);
}
.wpml-ls-statics-footer a:hover {
  background: rgba(255, 255, 255, 0.10) !important;
  color: #fff !important;
}
.wpml-ls-statics-footer .wpml-ls-current-language a {
  background: var(--c-terracotta) !important;
  color: #fff !important;
}
.wpml-ls-statics-footer img.wpml-ls-flag {
  width: 22px;
  height: 14px;
  margin: 0;
}

/* --------------------------------------------------------------------------
   15. TRIPADVISOR WIDGET PLACEHOLDER
   -------------------------------------------------------------------------- */
.TA_selfserveprop {
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
  border-radius: var(--r-md);
  text-align: center;
}
.TA_links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.TA_links img {
  max-height: 30px;
  width: auto;
  opacity: 0.9;
  filter: brightness(1.2);
}

/* --------------------------------------------------------------------------
   16. INLINE OVERRIDES — the page's <style id="wp-custom-css"> needs us
   not to override the .site-name 180px or .site-description white rules.
   We've already used responsive clamp() in section 5; the inline rules win
   on the exact pixel sizes at desktop, which is exactly what's wanted.
   The "site-info display:none" is already in section 13.
   -------------------------------------------------------------------------- */
.fdm-section-header p { display: none; }
.fdm-item-title { cursor: pointer; }

/* --------------------------------------------------------------------------
   17. RESPONSIVE
   -------------------------------------------------------------------------- */

/* Tablet */
@media (max-width: 980px) {
  :root { --container-pad: 22px; }

  .site-title { font-size: clamp(3rem, 16vw, 7rem); }
  .site-description { font-size: clamp(1.2rem, 4vw, 2rem); }

  /* Menu grid → single column */
  .fdm-menu.fdm-columns-2 { grid-template-columns: 1fr; gap: 24px; }

  /* Footer widget grid → single column */
  .widget-area {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-widget-1, .footer-widget-2 { grid-column: 1; }
}

/* Mobile */
@media (max-width: 720px) {
  :root { --container-pad: 18px; }
  body { font-size: 15px; }

  .custom-header { min-height: 80vh; }
  .site-branding { margin-bottom: 10vh; }

  /* Burger nav */
  .menu-toggle { display: inline-flex; }
  .navigation-top { padding: 14px 0; }
  .navigation-top .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .menu-top-menu-container {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
  }
  .menu-toggle[aria-expanded="true"] ~ .menu-top-menu-container,
  .toggled-on .menu-top-menu-container {
    max-height: 600px;
  }
  #top-menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-top: 14px;
    background: rgba(43, 38, 32, 0.92);
    backdrop-filter: blur(10px);
    border-radius: var(--r-md);
    padding: 8px 0;
  }
  #top-menu > li > a {
    width: 100%;
    padding: 14px 22px;
    justify-content: flex-start;
  }
  #top-menu > li > a::after { display: none; }
  #top-menu > li.current-menu-item > a,
  #top-menu > li:hover > a { background: rgba(255, 255, 255, 0.05); }
  #top-menu .wpml-ls-menu-item {
    display: inline-flex;
  }
  /* Lang flags get their own row */
  #top-menu li.wpml-ls-first-item { margin-top: 4px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.1); }
  #top-menu li.wpml-ls-menu-item { width: auto; flex: 0 0 auto; }

  /* Panels */
  .panel-content { padding: 50px 0; }

  /* Menu items: tighter spacing */
  .fdm-item { padding: 14px 0; gap: 14px; }
  .fdm-item-image { width: 64px; height: 64px; flex-basis: 64px; }
  .fdm-item-title { font-size: 1.05rem; }

  /* Welcome decorative dashes shrink */
  #post-21 .entry-title::before,
  #post-21 .entry-title::after { width: 24px; }

  /* Footer */
  .site-footer { padding-top: 44px; }
  #flexi_searchbox { padding: 18px 16px; }
  .b_aff-dates { grid-template-columns: 1fr; }

  .social-links-menu li { width: 38px; height: 38px; }

  #text-12 img { width: 160px; height: 160px; margin: 0 auto; }
}

/* Small */
@media (max-width: 420px) {
  .site-title { font-size: 2.8rem; }
  .site-description { font-size: 1.1rem; }
  .entry-title { font-size: 1.6rem; }
  .fdm-section-header h3 { font-size: 1.25rem; }
  .fdm-item-image { width: 56px; height: 56px; flex-basis: 56px; }
  .menu-scroll-down { width: 36px; height: 36px; bottom: -4px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* End of stylesheet */