@import url("guest-guide.css");
/* =====================================================
   SU CEREXINU - STILI PRINCIPALI
   File ripulito e separato dalla Guida dell'Ospite
===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');
@import url('guest-guide.css');


:root {
  --sc-bg: #faf7f1;
  --sc-sand: #f6f2e8;
  --sc-sage: #7ea06e;
  --sc-sage-dark: #5e7d58;
  --sc-gold: #c79a57;
  --sc-text: #5f5a52;
  --sc-header: #0b3f6f;

  --sc-card-shadow: 0 18px 40px rgba(30, 42, 50, 0.10);
  --sc-radius: 22px;

  --sc-cal-bg: #fcf8f1;
  --sc-cal-line: #e7dcc9;
  --sc-cal-gold: #c4a16b;
  --sc-cal-gold-soft: #d8c3a0;
  --sc-cal-sage: #a8af95;
  --sc-cal-sage-dark: #7d856e;
  --sc-cal-text: #5c564d;
  --sc-cal-white: #fffdf9;
  --sc-cal-offer-bg: #fbf6ec;
}

/* =========================
   BASE
   ========================= */
body {
  font-family: 'Inter', sans-serif;
  background: var(--sc-bg);
  color: var(--sc-text);
}

h1,
h2,
h3,
.sc-hero-full h1 {
  font-family: 'Playfair Display', serif;
}

h1,
h2,
h3 {
  color: var(--sc-gold);
}

/* =========================
   SFONDI GENERALI JOOMLA
   ========================= */
.site-grid {
  background: transparent !important;
}

main,
.container-component,
.container-footer {
  background: transparent;
}

/* =========================
   NASCONDI META HOME
   ========================= */
.home .page-header,
.home .article-info,
.home .article-info-term,
.home .category-name,
.home .hits {
  display: none !important;
}

/* =========================
   HEADER / MENU
   ========================= */
.container-header {
  background: linear-gradient(180deg, #0f4a82 0%, #0b3f6f 100%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1200;
  min-height: 82px !important;
  padding: 0 32px !important;
}

.container-header > .grid-child {
  min-width: 0 !important;
}

.container-header > .grid-child:first-child {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.container-header > .grid-child.container-nav {
  display: flex !important;
  align-items: center !important;
  min-height: 82px !important;
  position: relative !important;
}

.container-header .navbar-brand,
.container-header .navbar-brand a,
.container-header .brand-logo {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  margin: 0 !important;
  padding: 0 !important;
  height: auto !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.container-header .navbar-brand:hover,
.container-header .navbar-brand a:hover,
.container-header .brand-logo:hover {
  color: #ffffff !important;
  text-decoration: none !important;
}

.container-header .navbar-brand img {
  display: none !important;
}

.container-header nav,
.container-header .mod-menu__wrapper,
.container-header .navbar-collapse {
  width: 100% !important;
}

.container-header ul.mod-menu.mod-list.nav > li > a,
.container-header ul.mod-menu.mod-list.nav > li > button {
  color: rgba(255, 255, 255, 0.90) !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  font-size: 0.96rem !important;
  background: transparent !important;
  border: 0 !important;
  transition: all 0.25s ease !important;
}

.container-header ul.mod-menu.mod-list.nav > li > a:hover,
.container-header ul.mod-menu.mod-list.nav > li.current > a,
.container-header ul.mod-menu.mod-list.nav > li.active > a {
  color: #ffffff !important;
}

/* sottomenu */
.container-header ul.mod-menu.mod-list.nav .mod-menu__sub,
.container-header .mod-menu .nav-child {
  top: 100% !important;
  background: #ffffff !important;
  border-radius: 12px !important;
  padding: 8px 0 !important;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14) !important;
  min-width: 220px !important;
}

.container-header ul.mod-menu.mod-list.nav .mod-menu__sub a,
.container-header .mod-menu .nav-child a {
  color: #333 !important;
  padding: 11px 16px !important;
  font-size: 0.94rem !important;
  text-decoration: none !important;
}

.container-header ul.mod-menu.mod-list.nav .mod-menu__sub a:hover,
.container-header .mod-menu .nav-child a:hover {
  background: #faf7f1 !important;
  color: var(--sc-gold) !important;
}

/* nasconde hamburger joomla */
.container-header .navbar-toggler,
.container-header .navbar-toggler-icon {
  display: none !important;
  background-image: none !important;
}

/* =========================
   DESKTOP
   ========================= */
@media (min-width: 992px) {
  .container-header {
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    align-items: center !important;
    column-gap: 32px !important;
  }

  .container-header > .grid-child.container-nav {
    justify-content: center !important;
  }

  .container-header .navbar-collapse {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: static !important;
    width: 100% !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .container-header ul.mod-menu.mod-list.nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 28px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    list-style: none !important;
    min-height: 82px !important;
    width: auto !important;
    position: relative !important;
  }

  .container-header ul.mod-menu.mod-list.nav > li {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 82px !important;
    position: static !important;
    transform: none !important;
  }

  .container-header ul.mod-menu.mod-list.nav > li > a,
  .container-header ul.mod-menu.mod-list.nav > li > button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 82px !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .container-header ul.mod-menu.mod-list.nav > li:last-child > a:hover {
    background: #f3f7fa !important;
    color: #0b3f6f !important;
  }
}

/* =========================
   MOBILE HEADER
   ========================= */
@media (max-width: 991px) {
  .container-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 72px !important;
    padding: 0 78px 0 16px !important;
    z-index: 1400 !important;
  }

  .container-header > .grid-child:first-child {
    display: flex !important;
    align-items: center !important;
    flex: 1 1 auto !important;
  }

  .container-header > .grid-child.container-nav {
    display: block !important;
    flex: 0 0 auto !important;
    margin-left: auto !important;
    min-height: 72px !important;
    position: static !important;
  }

  .container-header .navbar-brand,
  .container-header .navbar-brand a,
  .container-header .brand-logo {
    font-size: 1.35rem !important;
    height: auto !important;
  }

  .container-header .navbar-collapse,
  .container-header ul.mod-menu.mod-list.nav,
  .container-header .navbar-toggler {
    display: none !important;
  }
}

/* =========================
   MOBILE MENU CSS-ONLY
   ========================= */
#sc-menu-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 992px) {
  #sc-menu-toggle,
  .sc-mobile-trigger,
  .sc-mobile-overlay,
  .sc-mobile-drawer,
  .sc-mobile-close {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .sc-mobile-trigger {
    position: fixed;
    top: 13px;
    right: 16px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    background: linear-gradient(180deg, #0f4a82 0%, #0b3f6f 100%);
    z-index: 5000;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    display: block !important;
  }

  .sc-mobile-trigger::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 11px;
    width: 22px;
    height: 16px;
    background:
      linear-gradient(#fff, #fff) top left / 22px 2px no-repeat,
      linear-gradient(#fff, #fff) center left / 22px 2px no-repeat,
      linear-gradient(#fff, #fff) bottom left / 22px 2px no-repeat;
  }

  .sc-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 24, 45, 0.48);
    backdrop-filter: blur(2px);
    z-index: 4980;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  #sc-menu-toggle:checked ~ .sc-mobile-overlay {
    opacity: 1;
    visibility: visible;
  }

  .sc-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 360px);
    height: 100vh;
    background: linear-gradient(180deg, #0f4a82 0%, #0b3f6f 100%);
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.24);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 4990;
    padding: 88px 24px 28px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

  #sc-menu-toggle:checked ~ .sc-mobile-drawer {
    transform: translateX(0);
  }

  .sc-mobile-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 10px;
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    line-height: 42px;
    cursor: pointer;
    display: block;
  }

  .sc-mobile-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .sc-mobile-drawer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    position: relative;
    z-index: 5001;
  }

  .sc-mobile-drawer-nav a:hover {
    color: #ffffff;
    opacity: 0.9;
  }

  .sc-mobile-drawer-nav a.sc-mobile-book {
    margin-top: 18px;
    border-bottom: 0;
    background: #d7a25c;
    color: #ffffff;
    border-radius: 999px;
    text-align: center;
    padding: 14px 18px;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  }

  .sc-mobile-drawer-nav a.sc-mobile-book:hover {
    background: #c8944f;
    color: #ffffff;
  }
}

/* =========================
   HERO
   ========================= */
.sc-hero-wrap,
.sc-hero-wrap .moduletable,
.sc-hero-wrap .card,
.sc-hero-wrap .module-content,
.sc-hero-wrap .mod-custom {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.sc-hero-full {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: -20px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.22)),
    url('/images/Varie/Poetto-e-sella-del-diavolo.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.sc-hero-content {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 20px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.sc-hero-full h1 {
  margin: 0 0 16px;
  font-size: clamp(3.4rem, 6.2vw, 5.4rem);
  line-height: 1.02;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  letter-spacing: -0.5px;
}

.sc-hero-full p {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.6;
  font-weight: 400;
  font-style: normal;
  color: rgba(255, 255, 255, 0.95);
}

.sc-hero-eyebrow,
.sc-hero-badge {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991px) {
  .sc-hero-full {
    min-height: 82vh;
    margin-top: 0;
  }

  .sc-hero-content {
    padding: 30px 18px;
  }

  .sc-hero-full h1 {
    font-size: clamp(2.5rem, 8vw, 3.8rem);
    line-height: 1.08;
  }

  .sc-hero-full p {
    font-size: 1rem;
    line-height: 1.55;
  }
}

/* =========================
   INTRO HOMEPAGE
   ========================= */
.sc-intro {
  padding: 18px 20px 18px;
}

.sc-intro-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.sc-intro-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(199, 154, 87, 0.10);
  color: var(--sc-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sc-intro-title {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--sc-gold);
  font-weight: 700;
}

.sc-intro-text {
  max-width: 760px;
  margin: 0 auto 14px;
  color: var(--sc-text);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* =========================
   CONTENITORI GENERALI
   ========================= */
.sc-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* =========================
   BLOCCO APPARTAMENTO
   ========================= */
.sc-property-block {
  position: relative;
  margin-top: -70px;
  padding: 0 0 70px;
  z-index: 5;
}

.sc-property-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 32px;
}

.sc-property-header h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  line-height: 1.1;
  color: var(--sc-gold);
}

.sc-property-lead {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 12px;
}

.sc-property-lead span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(63, 127, 137, 0.08);
  border: 1px solid rgba(63, 127, 137, 0.14);
  color: #3f7f89;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
}

.sc-property-sub {
  margin: 0;
  color: var(--sc-text);
  font-size: 1rem;
}

.sc-property-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(340px, 430px);
  gap: 28px;
  align-items: start;
}

.sc-property-main,
.sc-property-side {
  background: #ffffff;
  border-radius: var(--sc-radius);
  box-shadow: var(--sc-card-shadow);
  align-self: stretch;
}

.sc-property-main {
  padding: 24px;
}

.sc-property-side {
  padding: 24px;
  position: sticky;
  top: 90px;
  margin-top: 6px;
}

.sc-property-side .moduletable,
.sc-property-side .module,
.sc-property-side .mod-custom {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

/* =========================
   GALLERY
   ========================= */
.sc-gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.sc-gallery-main img,
.sc-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.sc-gallery-main {
  min-height: 340px;
}

.sc-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sc-gallery-thumb {
  min-height: 150px;
}

/* =========================
   RECENSIONE + TRUST
   ========================= */
.sc-review-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fbf6ec;
  border: 1px solid rgba(63, 127, 137, 0.20);
  border-radius: 16px;
  padding: 14px 18px;
  margin: 0 0 18px;
}

.sc-review-score {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #3f7f89;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 700;
}

.sc-review-text {
  color: #444;
  font-size: 0.96rem;
}

.sc-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 18px;
}

.sc-trust-item {
  padding: 10px 14px;
  border-radius: 999px;
  background: #f7f3ee;
  color: #333;
  font-size: 0.94rem;
  font-weight: 600;
}

.sc-highlight-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sc-chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: #f5f5f5;
  color: #444;
  font-size: 0.92rem;
}

/* =========================
   CALENDARIO LUXURY
   ========================= */
.sc-calendar-luxury {
  background: var(--sc-cal-bg) !important;
  border-radius: 28px !important;
  padding: 18px !important;
  box-shadow: 0 16px 36px rgba(80, 67, 44, 0.08) !important;
  border: 1px solid rgba(196, 161, 107, 0.12) !important;
  color: var(--sc-cal-text) !important;
}

.sc-calendar-luxury .fc {
  font-family: 'Inter', sans-serif !important;
  color: var(--sc-cal-text) !important;
}

.sc-calendar-luxury .fc .fc-toolbar-title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
  line-height: 1.1 !important;
  text-align: center !important;
  color: var(--sc-cal-gold) !important;
  font-weight: 600 !important;
  text-transform: lowercase !important;
}

.sc-calendar-luxury .fc .fc-prev-button,
.sc-calendar-luxury .fc .fc-next-button {
  width: 56px !important;
  height: 56px !important;
  border-radius: 18px !important;
  background: var(--sc-cal-sage) !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #ffffff !important;
}

.sc-calendar-luxury .fc .fc-button .fc-icon {
  font-size: 1.25rem !important;
}

.sc-calendar-luxury .fc-theme-standard td,
.sc-calendar-luxury .fc-theme-standard th {
  border-color: var(--sc-cal-line) !important;
}

.sc-calendar-luxury .fc .fc-scrollgrid {
  border: 1px solid var(--sc-cal-line) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  background: var(--sc-cal-white) !important;
}

.sc-calendar-luxury .fc .fc-col-header-cell {
  background: #f5efe3 !important;
  color: var(--sc-cal-sage-dark) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-transform: lowercase !important;
}

.sc-calendar-luxury .fc .fc-col-header-cell-cushion {
  color: var(--sc-cal-sage-dark) !important;
  text-decoration: none !important;
  padding: 8px 4px !important;
}

.sc-calendar-luxury .fc-daygrid-day {
  background: #ffffff !important;
}

.sc-calendar-luxury .fc .fc-daygrid-day-frame {
  min-height: 95px !important;
  padding: 6px !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.sc-calendar-luxury .fc .fc-daygrid-day-top {
  justify-content: center !important;
}

.sc-calendar-luxury .fc .fc-daygrid-day-number {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 6px auto 0 !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  background: transparent !important;
  color: #3f3a34 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.sc-calendar-luxury .fc-daygrid-day.sc-free .fc-daygrid-day-number {
  background: #e7f0df !important;
  color: #3f4a3c !important;
}

.sc-calendar-luxury .fc-daygrid-day.sc-booked .fc-daygrid-day-number {
  background: #f3d6d6 !important;
  color: #7a3e3e !important;
}

.sc-calendar-luxury .fc-daygrid-day.sc-selected .fc-daygrid-day-number,
.sc-calendar-luxury .fc-daygrid-day.sc-in-range .fc-daygrid-day-number {
  background: #dcdcdc !important;
  color: #333 !important;
}

.sc-calendar-luxury .fc-daygrid-day.sc-past .fc-daygrid-day-number {
  background: transparent !important;
  color: #c2c2c2 !important;
  text-decoration: line-through !important;
}

.sc-calendar-luxury .fc-daygrid-day.sc-past::after {
  display: none !important;
}

.sc-calendar-luxury .fc-daygrid-day[data-price]::after {
  content: attr(data-price) !important;
  display: block !important;
  text-align: center !important;
  margin-top: 6px !important;
  font-size: 0.78rem !important;
  color: #8a8376 !important;
  line-height: 1 !important;
}

.sc-calendar-luxury .sc-offer-card {
  background: var(--sc-cal-offer-bg) !important;
  border: 2px solid var(--sc-cal-gold-soft) !important;
  border-radius: 26px !important;
  padding: 18px 16px !important;
  text-align: center !important;
  box-shadow: 0 8px 20px rgba(80, 67, 44, 0.04) !important;
}

.sc-calendar-luxury .sc-offer-badge {
  display: inline-block !important;
  margin-bottom: 10px !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  background: rgba(196, 161, 107, 0.10) !important;
  color: var(--sc-cal-gold) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.sc-calendar-luxury .sc-offer-title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(1.7rem, 4vw, 2.2rem) !important;
  line-height: 1.15 !important;
  color: #3f3a34 !important;
  margin-bottom: 10px !important;
}

.sc-calendar-luxury .sc-offer-cta {
  color: var(--sc-cal-text) !important;
  text-decoration: none !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 1.05rem !important;
}

.sc-calendar-luxury .calendar-note {
  margin-top: 18px !important;
  color: var(--sc-cal-text) !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 1.1rem !important;
  line-height: 1.7 !important;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1024px) {
  .sc-property-layout {
    grid-template-columns: 1fr;
  }

  .sc-property-side {
    position: static;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .container-header {
    padding: 0 78px 0 16px !important;
  }

  .container-header .navbar-brand,
  .container-header .navbar-brand a,
  .container-header .brand-logo {
    font-size: 1.35rem !important;
  }

  .sc-hero-full {
    min-height: 78vh;
    margin-top: 0;
  }

  .sc-hero-content {
    padding: 30px 18px;
  }

  .sc-hero-full h1 {
    font-size: clamp(2.3rem, 8vw, 3.4rem);
  }

  .sc-hero-full p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .sc-intro {
    padding: 8px 16px 10px;
  }

  .sc-intro-title {
    font-size: 1.55rem;
  }

  .sc-intro-text {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .sc-property-block {
    margin-top: -30px;
    padding-bottom: 50px;
  }

  .sc-property-main,
  .sc-property-side {
    padding: 18px;
  }

  .sc-gallery {
    grid-template-columns: 1fr;
  }

  .sc-gallery-main {
    min-height: 260px;
  }

  .sc-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sc-gallery-thumb {
    min-height: 130px;
  }

  .sc-calendar-luxury {
    border-radius: 24px !important;
    padding: 14px !important;
  }

  .sc-calendar-luxury .fc .fc-toolbar-title {
    font-size: 2rem !important;
  }

  .sc-calendar-luxury .fc .fc-prev-button,
  .sc-calendar-luxury .fc .fc-next-button {
    width: 48px !important;
    height: 48px !important;
    border-radius: 16px !important;
  }

  .sc-calendar-luxury .fc .fc-daygrid-day-frame {
    min-height: 72px !important;
    padding: 4px !important;
  }

  .sc-calendar-luxury .fc .fc-daygrid-day-number {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.9rem !important;
  }

  .sc-calendar-luxury .fc-daygrid-day[data-price]::after {
    font-size: 0.72rem !important;
    margin-top: 6px !important;
  }

  #su-cerexinu-request .bb-row {
    grid-template-columns: 1fr;
  }
}

/* =========================
   MODULO MENU MOBILE
   ========================= */
.sc-mobile-module,
.sc-mobile-module .moduletable,
.sc-mobile-module .module-content,
.sc-mobile-module .mod-custom,
.sc-mobile-module .card,
.sc-mobile-module .card-body {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.sc-mobile-module {
  position: relative !important;
}

@media (min-width: 992px) {
  .sc-mobile-module {
    display: none !important;
  }
}

/* =========================
   TOP BAR
   ========================= */
.container-topbar {
  background: #f7f7f7;
  border-bottom: 1px solid #ddd;
}

.top-contact-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 12px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.top-contact-bar a {
  text-decoration: none;
}

.top-contact-bar a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .top-contact-bar {
    flex-wrap: wrap;
    text-align: center;
  }

  .top-contact-bar .sep {
    display: none;
  }
}

/* =========================
   FOOTER PRINCIPALE
   ========================= */
.container-bottom-a {
  background: #0b4f8a !important;
}

.container-bottom-a .mod-custom,
.container-bottom-a .footer-box {
  background: transparent !important;
  color: #ffffff !important;
  text-align: center;
  padding: 36px 15px;
}

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

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

.footer-contatti p {
  color: #ffffff !important;
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.8;
}

.footer-icon {
  display: inline-block;
  width: 22px;
  color: #ffffff !important;
}

.footer-contatti a {
  color: #ffffff !important;
  text-decoration: none;
}

.footer-contatti a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

/* =========================
   COPYRIGHT
   ========================= */
.container-footer {
  background: #083861 !important;
}

.footer-copy {
  color: #ffffff !important;
  text-align: center;
  padding: 15px;
  font-size: 13px;
}

/* =========================
   FOOTER MOBILE
   ========================= */
@media (max-width: 768px) {
  .footer-booking-logos img {
    height: 34px;
  }

  .container-bottom-a .mod-custom,
  .container-bottom-a .footer-box {
    padding: 28px 12px;
  }

  .footer-social a {
    margin: 6px 4px;
  }
}

/* sfondo reale del blocco bottom-a */
.container-bottom-a,
.container-bottom-a .grid-child,
.container-bottom-a .moduletable,
.container-bottom-a .mod-custom {
  background: #0b4f8a !important;
}

/* testo contatti */
.container-bottom-a .footer-contatti,
.container-bottom-a .footer-contatti p,
.container-bottom-a .footer-contatti span,
.container-bottom-a .footer-contatti a {
  color: #ffffff !important;
}

/* social: forzati ben visibili */
.container-bottom-a .footer-social {
  margin-top: 18px;
  display: flex !important;
  justify-content: center !important;
  gap: 12px;
  flex-wrap: wrap;
}

.container-bottom-a .footer-social a,
.container-bottom-a .footer-social a:link,
.container-bottom-a .footer-social a:visited {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 120px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.45) !important;
  border-radius: 24px;
  background: rgba(255,255,255,0.10) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
}

.container-bottom-a .footer-social a:hover,
.container-bottom-a .footer-social a:focus {
  background: rgba(255,255,255,0.20) !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

/* loghi booking */
.container-bottom-a .footer-booking-logos {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.container-bottom-a .footer-booking-logos a {
  background: #ffffff !important;
  padding: 6px 10px;
  border-radius: 8px;
}

.container-bottom-a .footer-booking-logos img {
  display: block;
  height: 42px;
  width: auto;
}

/* =========================
   PAGINA DESCRIZIONE
   ========================= */
.su-cerexinu-description {
  max-width: 1120px;
  margin: 0 auto;
  padding: 30px 20px 70px;
  font-family: Georgia, serif;
  color: #3f3a34;
  line-height: 1.85;
}

.su-cerexinu-description .description-intro {
  max-width: 850px;
  margin: 0 auto 55px;
  text-align: center;
}

.su-cerexinu-description .description-intro h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #c39b5a;
}

.su-cerexinu-description .description-intro p {
  font-size: 19px;
  margin-bottom: 0;
  color: #4f4740;
}

.su-cerexinu-description .room-row {
  display: flex;
  align-items: center;
  gap: 38px;
  max-width: 980px;
  margin: 0 auto 32px;
  padding: 26px;
  background: #fcfaf6;
  border: 1px solid #e7dccd;
  border-left: 5px solid #0f4c81;
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(35, 44, 62, 0.05);
}

.su-cerexinu-description .room-row.reverse {
  flex-direction: row-reverse;
}

.su-cerexinu-description .room-media {
  width: 330px;
  flex-shrink: 0;
}

.su-cerexinu-description .room-media img {
  width: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.su-cerexinu-description .room-text {
  flex: 1;
}

.su-cerexinu-description .room-text p {
  font-size: 17px;
  margin-bottom: 14px;
  color: #4a433d;
}

.su-cerexinu-description .room-text p:last-child {
  margin-bottom: 0;
}

.com-content-article .su-cerexinu-description h2,
.com-content-article .su-cerexinu-description h2 * {
  color: #1e3f5f !important;
}

.su-cerexinu-description .services-box {
  max-width: 900px;
  margin: 55px auto 0;
  padding: 34px 28px;
  text-align: center;
  background: #fcfaf6;
  border: 1px solid #e7dccd;
  border-top: 5px solid #0f4c81;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(35, 44, 62, 0.05);
}

.su-cerexinu-description .services-box h2 {
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 24px;
  color: #c39b5a !important;
}

.su-cerexinu-description .services-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 14px;
}

.su-cerexinu-description .services-box li {
  font-size: 16px;
  color: #274766;
  padding: 10px 16px;
  border: 1px solid #d9e3ec;
  border-radius: 999px;
  background: #ffffff;
}

.su-cerexinu-description .services-box p {
  font-size: 18px;
  margin-top: 18px;
  color: #4e4640;
}

@media (max-width: 900px) {
  .su-cerexinu-description .room-row,
  .su-cerexinu-description .room-row.reverse {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .su-cerexinu-description .room-media {
    width: 100%;
    max-width: 380px;
  }

  .su-cerexinu-description .room-text {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .su-cerexinu-description {
    padding: 20px 15px 50px;
  }

  .su-cerexinu-description .description-intro h1 {
    font-size: 30px;
  }

  .su-cerexinu-description .description-intro p,
  .su-cerexinu-description .room-text p,
  .su-cerexinu-description .services-box p,
  .su-cerexinu-description .services-box li {
    font-size: 16px;
  }

  .su-cerexinu-description .room-row {
    padding: 20px;
    gap: 22px;
    border-radius: 18px;
  }
}

/* =========================
   ARTICOLI SINGOLI AMBIENTE
   ========================= */
.room-article {
  max-width: 860px;
  margin: 0 auto;
  padding: 8px 12px;
  line-height: 1.85;
  font-size: 1rem;
  color: #3f3a34;
  font-family: Georgia, serif;
}

.room-article h1 {
  font-size: 2rem;
  margin: 10px 0 18px 0;
  font-weight: 400;
  color: #c39b5a;
  text-align: center;
}

.room-article h2 {
  margin: 28px 0 12px 0;
  font-size: 1.5rem;
  color: #1e3f5f;
  font-weight: 400;
}

.room-article p {
  margin: 0 0 16px 0;
}

.room-article ul {
  margin: 10px 0 18px 0;
  padding-left: 22px;
}

.room-article li {
  margin-bottom: 9px;
}

.room-article .note {
  background: #fcfaf6;
  border: 1px solid #e7dccd;
  border-radius: 16px;
  padding: 16px;
  margin: 20px 0;
}

.room-article .cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 12px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  background: #fcfaf6;
  color: #c39b5a;
  border: 1px solid #c39b5a;
  transition: all .3s ease;
}

.room-article .cta span {
  transition: transform .3s ease;
}

.room-article .cta:hover {
  background: #c39b5a;
  color: #fff;
}

.room-article .cta:hover span {
  transform: translateX(4px);
}

.room-article .room-divider {
  margin-top: 42px;
  padding-top: 25px;
  border-top: 1px solid #e7dccd;
}

.room-article .room-bottom-cta {
  text-align: center;
}

.room-article .room-bottom-title {
  margin: 0 0 14px 0;
  color: #1e3f5f;
  font-weight: 500;
}

.room-article .room-bottom-note {
  margin: 22px 0 0 0;
  font-size: 0.95rem;
  color: #6a625c;
}

@media (max-width: 768px) {
  .room-article {
    padding: 8px 8px;
  }

  .room-article h1 {
    font-size: 1.7rem;
  }

  .room-article h2 {
    font-size: 1.3rem;
  }
}

/* =========================
   MINIATURE PICCOLE GALLERIA
   ========================= */
.su-thumb-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 6px 2px 10px;
  scroll-behavior: smooth;
  justify-content: flex-start;
}

.su-thumb-gallery a {
  display: block;
  flex-shrink: 0;
}

.su-thumb-gallery img {
  height: 70px;
  width: 110px;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0.9;
  border: 2px solid transparent;
  transition: all .3s ease;
  cursor: pointer;
}

.su-thumb-gallery img:hover {
  transform: scale(1.14);
  opacity: 1;
  border-color: #c39b5a;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

@media (max-width: 768px) {
  .su-thumb-gallery img {
    height: 60px;
    width: 95px;
  }
}

/* Fancybox più elegante e meno enorme */
.fancybox__container .fancybox__content {
  max-width: 82vw !important;
  max-height: 82vh !important;
}

.fancybox__container .fancybox__image {
  object-fit: contain !important;
}

@media (max-width: 768px) {
  .su-thumb-gallery img {
    height: 50px;
    width: 76px;
  }

  .fancybox__container .fancybox__content {
    max-width: 92vw !important;
    max-height: 78vh !important;
  }
}
.su-gold-title {
  color: #c39b5a !important;
  font-weight: 400;
}
.su-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.su-badges span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f7f3ee;
  color: #3f3a34;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid #e7dccd;
  transition: all 0.25s ease;
}

/* hover elegante */
.su-badges span:hover {
  background: #c39b5a;
  color: #fff;
  transform: translateY(-2px);
}
.tooltip {
position: relative;
cursor: pointer;
border-bottom: 1px dotted #3f7f89;
}

.tooltip .tooltip-box {
visibility: hidden;
opacity: 0;
position: absolute;
bottom: 130%;
left: 50%;
transform: translateX(-50%);
background: #ffffff;
color: #333;
padding: 10px 14px;
border-radius: 10px;
font-size: 14px;
line-height: 1.5;
box-shadow: 0 8px 22px rgba(0,0,0,0.15);
border: 1px solid #e7dccd;
white-space: nowrap;
transition: all 0.25s ease;
z-index: 10;
}

.tooltip:hover .tooltip-box {
visibility: visible;
opacity: 1;
}
/* =========================
   CALENDARIO SU CEREXINU
   VERSIONE PULITA FINALE
   ========================= */

.sc-calendar-luxury {
  background: var(--sc-cal-bg) !important;
  border-radius: 28px !important;
  padding: 18px !important;
  box-shadow: 0 16px 36px rgba(80, 67, 44, 0.08) !important;
  border: 1px solid rgba(196, 161, 107, 0.12) !important;
  color: var(--sc-cal-text) !important;
}

.sc-calendar-luxury .fc {
  font-family: 'Inter', sans-serif !important;
  color: var(--sc-cal-text) !important;
}

/* Titolo mese */
.sc-calendar-luxury .fc .fc-toolbar-title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
  line-height: 1.1 !important;
  text-align: center !important;
  color: var(--sc-cal-gold) !important;
  font-weight: 600 !important;
  text-transform: lowercase !important;
}

/* Pulsanti calendario */
.sc-calendar-luxury .fc .fc-button {
  background: var(--sc-cal-sage) !important;
  border: none !important;
  border-radius: 16px !important;
  box-shadow: none !important;
  color: #ffffff !important;
}

.sc-calendar-luxury .fc .fc-button:hover {
  background: var(--sc-cal-sage-dark) !important;
}

.sc-calendar-luxury .fc .fc-prev-button,
.sc-calendar-luxury .fc .fc-next-button {
  width: 52px !important;
  height: 52px !important;
}

.sc-calendar-luxury .fc .fc-button .fc-icon {
  font-size: 1.2rem !important;
}

/* Due mesi centrati */
.sc-calendar-luxury .fc .fc-multimonth {
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
  gap: 30px !important;
  width: 100% !important;
}

.sc-calendar-luxury .fc .fc-multimonth-month {
  flex: 0 1 48% !important;
  width: 48% !important;
  max-width: 560px !important;
  min-width: 430px !important;
  background: #ffffff !important;
  border-radius: 22px !important;
  padding: 18px !important;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06) !important;
  border: 1px solid rgba(63,127,137,0.12) !important;
}

/* Griglia */
.sc-calendar-luxury .fc-theme-standard td,
.sc-calendar-luxury .fc-theme-standard th {
  border-color: var(--sc-cal-line) !important;
}

.sc-calendar-luxury .fc .fc-scrollgrid {
  border: 1px solid var(--sc-cal-line) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  background: var(--sc-cal-white) !important;
}

.sc-calendar-luxury .fc .fc-col-header-cell {
  background: #f5efe3 !important;
  color: var(--sc-cal-sage-dark) !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  text-transform: lowercase !important;
}

.sc-calendar-luxury .fc .fc-col-header-cell-cushion {
  color: var(--sc-cal-sage-dark) !important;
  text-decoration: none !important;
  padding: 8px 4px !important;
}

/* Celle */
.sc-calendar-luxury .fc .fc-daygrid-day-frame {
  min-height: 95px !important;
  padding: 6px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.sc-calendar-luxury .fc .fc-daygrid-day-top {
  justify-content: center !important;
}

.sc-calendar-luxury .fc .fc-daygrid-day-number {
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 6px auto 0 !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  color: #3f3a34 !important;
  background: rgba(255,255,255,0.55) !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06) !important;
}

/* Stati giorni */
#su-cerexinu-calendar .fc-daygrid-day.sc-free {
  background: #eef8f1 !important;
  cursor: pointer !important;
}

#su-cerexinu-calendar .fc-daygrid-day.sc-booked {
  background: #fcf5f3 !important;
  cursor: not-allowed !important;
  opacity: 1 !important;
  pointer-events: none !important;
}

#su-cerexinu-calendar .fc-daygrid-day.sc-past {
  background: #ffffff !important;
  opacity: 0.38 !important;
  pointer-events: none !important;
}

#su-cerexinu-calendar .fc-daygrid-day.sc-selected {
  outline: 3px solid var(--sc-cal-gold) !important;
  outline-offset: -3px !important;
  background: #fff4d7 !important;
}

/* Prezzi */
#su-cerexinu-calendar .sc-day-price {
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  margin-top: 6px !important;
  color: #3f7f89 !important;
  text-align: center !important;
}

#su-cerexinu-calendar .sc-best-badge {
  display: inline-block !important;
  margin-top: 4px !important;
  padding: 3px 7px !important;
  border-radius: 999px !important;
  background: var(--sc-cal-gold) !important;
  color: #ffffff !important;
  font-size: 0.62rem !important;
  font-weight: 600 !important;
  text-align: center !important;
}

/* Nasconde eventi ICS */
#su-cerexinu-calendar .fc-event {
  display: none !important;
}

/* Box prezzo selezionato */
#sc-selected-info {
  background: #fff7dc;
  border: 1px solid #efd27d;
  border-radius: 14px;
  padding: 10px 14px;
  margin-bottom: 12px;
  font-weight: 600;
}

.sc-highlight {
  animation: scGlow 1.5s ease;
}

@keyframes scGlow {
  0% { box-shadow: 0 0 0 rgba(214,166,0,0); }
  50% { box-shadow: 0 0 24px rgba(214,166,0,0.5); }
  100% { box-shadow: 0 0 0 rgba(214,166,0,0); }
}

/* Extra prenotazione */
.bb-extras {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bb-extra-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Mobile calendario */
@media(max-width: 900px) {
  .sc-calendar-luxury .fc .fc-toolbar {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .sc-calendar-luxury .fc .fc-toolbar-title {
    font-size: 1.5rem !important;
    text-align: center !important;
  }

  .sc-calendar-luxury .fc .fc-multimonth {
    display: block !important;
  }

  .sc-calendar-luxury .fc .fc-multimonth-month {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-bottom: 20px !important;
    padding: 10px !important;
  }

  .sc-calendar-luxury .fc .fc-daygrid-day-frame {
    min-height: 72px !important;
    padding: 4px !important;
  }

  .sc-calendar-luxury .fc .fc-daygrid-day-number {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.85rem !important;
  }

  #su-cerexinu-calendar .sc-day-price {
    font-size: 0.68rem !important;
  }

  #su-cerexinu-calendar .sc-best-badge {
    display: none !important;
  }
}
/* =========================
   MOBILE FIX FINALE SU CEREXINU
   ========================= */

@media only screen and (max-width: 768px) {

html,
body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  font-size: 16px !important;
}

.site-grid,
.grid-child,
.container-component,
.com-content-article,
main,
.sc-container,
.sc-property-block,
.sc-property-layout,
.sc-property-main,
.sc-property-side {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
}

.sc-container {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

/* HERO MOBILE */

.sc-hero-full{
position:relative !important;

width:100vw !important;
max-width:100vw !important;

margin-left:calc(-50vw + 50%) !important;
margin-right:calc(-50vw + 50%) !important;

height:62vh !important;
min-height:62vh !important;
max-height:62vh !important;

padding:0 !important;

background-size:cover !important;
background-position:center center !important;
background-repeat:no-repeat !important;

border-radius:0 !important;
}
  .sc-property-block {
  margin-top: 0 !important;
}

.sc-property-header h2 {
  margin-top: 26px !important;
}

.sc-hero-content {
  width: 100% !important;
  max-width: 100% !important;
  padding: 20px 16px !important;
}

.sc-hero-full h1 {
  font-size: 2.7rem !important;
  line-height: 1.05 !important;
  margin-bottom: 10px !important;
}

.sc-hero-full p {
  font-size: 1rem !important;
  line-height: 1.45 !important;
  max-width: 100% !important;
}

/* BLOCCO STRUTTURA */

.sc-property-block {
  margin-top: -20px !important;
  padding-bottom: 45px !important;
}

.sc-property-header h2 {
  font-size: 2rem !important;
  line-height: 1.15 !important;
  padding: 0 10px !important;
}

.sc-property-main,
.sc-property-side,
.sc-review-home {
  padding: 16px !important;
  border-radius: 22px !important;
}

/* GALLERIA */

.sc-gallery {
  grid-template-columns: 1fr !important;
}

.sc-gallery-main {
  min-height: 260px !important;
}

.sc-gallery-grid {
  grid-template-columns: 1fr 1fr !important;
}

img {
  max-width: 100% !important;
  height: auto;
}

/* CALENDARIO */

.fc .fc-toolbar-title {
  font-size: 1.5rem !important;
}

.fc .fc-daygrid-day-frame {
  min-height: 68px !important;
}

}
.sc-hero-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
    padding: 20px;
}

.sc-hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
    margin-bottom: 15px;
}

.sc-hero-content p {
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.30);
    margin: 0;
}
/* ======================================================
   CHI SIAMO
====================================================== */

.sc-about-page h1{
font-size:30px;
font-weight:normal;

margin-bottom:20px;
}

@media (min-width: 992px) {
  .container-header .container-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 24px !important;
  }

  .container-header .navbar {
    width: auto !important;
  }

  .container-header .mod-languages {
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  .container-header .mod-languages .btn,
  .container-header .mod-languages .dropdown-toggle {
    background: #ffffff !important;
    color: #0b3f6f !important;
    border: 0 !important;
    border-radius: 999px !important;
    padding: 7px 12px !important;
    font-weight: 700 !important;
  }
}
/* Nasconde il selettore lingua su smartphone e tablet */
@media (max-width: 991px) {
    .container-header .mod-languages {
        display: none !important;
    }
}
.sc-mobile-lang-title {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sc-mobile-languages {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 18px;
}

.sc-mobile-languages a {
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  padding: 8px 12px !important;
  font-size: 0.9rem !important;
}.calendar-admin-page .sc-booked {
    pointer-events: auto !important;
    cursor: pointer !important;
}