/* ============================================
   BELVEDERE 55 — CSS
   Aesthetic: Refined Italian Rustic / Editorial
   ============================================ */

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

:root {
  --cream: #f7faf5;
  --parchment: #edf4e8;
  --warm-green: #8aad7a;
  --green-dark: #2d5a27;
  --green-mid: #3d7a35;
  --green-light: #6aab5a;
  --green-accent: #4a8c40;
  --text: #1a2e18;
  --text-muted: #4a6645;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Raleway', sans-serif;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(247, 250, 245, 0.97);
  box-shadow: 0 2px 24px rgba(45,90,39,0.08);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
  display: flex; align-items: center; gap: 0.6rem;
  transition: color var(--transition);
  text-decoration: none;
  cursor: pointer;
}
.navbar.scrolled .nav-logo { color: var(--green-dark); }
.logo-ornament { font-size: 0.8rem; color: var(--warm-green); }
.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; color: rgba(255,255,255,0.85);
  font-weight: 500;
  transition: color var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--green-mid); }
.nav-links a:hover { color: var(--green-light) !important; }
.nav-cta {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%) !important;
  color: white !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.08em;
  box-shadow: 0 3px 14px rgba(45,90,39,0.35);
  transition: box-shadow var(--transition), transform var(--transition), background var(--transition) !important;
  border: 1.5px solid rgba(255,255,255,0.15);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-light) 100%) !important;
  box-shadow: 0 6px 24px rgba(45,90,39,0.5) !important;
  transform: translateY(-1px);
  color: white !important;
}
.hamburger { 
  display: none; 
  background: none; 
  border: none; 
  font-size: 1.5rem; 
  color: white; 
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}
.navbar.scrolled .hamburger span {
  background: var(--green-dark);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  background: #1a3a16;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
/* Foto sfocata come sfondo */
.hero::before {
  content: '';
  position: absolute; inset: -20px;
  background: url('images/attivita/Articoli-MONDORE-6.png') center/cover no-repeat;
  filter: blur(6px) brightness(0.45) saturate(0.7);
  z-index: 0;
}
/* Overlay verde semitrasparente */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(45,90,39,0.55) 0%, rgba(26,58,22,0.65) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  padding: 2rem;
  animation: fadeInUp 1.2s ease both;
}
.hero-eyebrow {
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--warm-green); margin-bottom: 1.2rem;
  font-family: var(--font-body); font-weight: 400;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300; line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  color: var(--white);
  text-shadow: 0 4px 40px rgba(0,0,0,0.3);
}
.hero-via {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300; font-style: italic;
  color: var(--warm-green);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300; opacity: 0.75;
  max-width: 500px; margin: 0 auto 2rem;
  line-height: 1.7; color: var(--white);
}
.hero-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-bottom: 1.5rem; opacity: 0.5;
}
.hero-divider span:first-child,
.hero-divider span:last-child {
  display: block; height: 1px; width: 80px;
  background: var(--warm-green);
}
.ornament { font-size: 1.2rem; color: var(--warm-green); }
.hero-address {
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  opacity: 0.6; margin-bottom: 2.5rem;
}
.btn-primary {
  display: inline-block;
  background: var(--green-dark);
  color: white;
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); }

.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); text-align: center;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-arrow {
  width: 1px; height: 50px; background: rgba(255,255,255,0.3);
  margin: 0.5rem auto 0;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(0.7)} }

/* ── INTRO ── */
.intro { padding: 8rem 0; }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: start;
}
.section-label {
  display: inline-block;
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--green-accent); font-weight: 600;
  margin-bottom: 1rem;
}
.section-label.light { color: var(--warm-green); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400; line-height: 1.1;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}
.section-title.centered { text-align: center; }
.section-title.light { color: var(--white); }
.section-subtitle {
  text-align: center; max-width: 600px; margin: 0 auto 5rem;
  color: var(--text-muted); line-height: 1.8; font-size: 1rem;
}
.intro-text p {
  color: var(--text-muted); line-height: 1.9; margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1.5px solid var(--green-dark); color: var(--green-dark);
  padding: 0.75rem 1.8rem;
  text-decoration: none; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: 2px; margin-top: 1.5rem;
  transition: all var(--transition);
}
.btn-secondary:hover { background: var(--green-dark); color: white; }
.btn-secondary.small { padding: 0.5rem 1.2rem; font-size: 0.72rem; }

.intro-text p {
  color: var(--text-muted); line-height: 1.9; margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(45,90,39,0.07);
  border-top: 3px solid var(--parchment);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(45,90,39,0.12); }
.feature-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.feature-card h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.intro-features {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem;
  padding-top: 3rem;
}

/* ── CAMERE ── */
.camere-section {
  background: #1a3a16;
  padding: 8rem 0 0;
  position: relative;
  overflow: hidden;
}
/* Foto sfocata come sfondo */
.camere-section::before {
  content: '';
  position: absolute; inset: -20px;
  background: url('images/attivita/Articoli-MONDORE-6.png') center/cover no-repeat;
  filter: blur(6px) brightness(0.35) saturate(0.7);
  z-index: 0;
}
/* Overlay verde semitrasparente */
.camere-section::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(45,90,39,0.55) 0%, rgba(26,58,22,0.65) 100%);
  z-index: 0;
}
.camere-section > .container {
  text-align: center; margin-bottom: 5rem;
  position: relative; z-index: 1;
}
.camere-section .section-label { color: var(--warm-green); }
.camere-section .section-title { color: var(--white); }
.camere-section .section-subtitle { color: rgba(237,244,232,0.65); }

.camera-block {
  display: grid;
  grid-template-columns: 55% 1fr;
  min-height: 600px;
  position: relative; z-index: 1;
}
.camera-block.reverse { grid-template-columns: 1fr 55%; }
.camera-block.reverse .camera-gallery { order: 2; }
.camera-block.reverse .camera-info { order: 1; }

.camera-gallery {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 280px;
  gap: 4px;
  overflow: hidden;
}
.gallery-img-main, .gallery-img-side {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.camera-block:hover .gallery-img-main,
.camera-block:hover .gallery-img-side {
  transform: scale(1.03);
}
.gallery-main { overflow: hidden; }
.gallery-side { overflow: hidden; display: flex; flex-direction: column; gap: 4px; }

.camera-info {
  background: #1a3a16;
  padding: 4rem 3.5rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.camera-number {
  font-family: var(--font-display);
  font-size: 5rem; font-weight: 300;
  color: rgba(138,173,122,0.1);
  position: absolute; top: 2rem; right: 2.5rem;
  line-height: 1;
}
.camera-tag {
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--warm-green); display: block; margin-bottom: 0.8rem;
}
.camera-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); font-weight: 400;
  margin-bottom: 1.5rem; line-height: 1.1;
}
.camera-desc {
  color: rgba(237,244,232,0.7);
  font-size: 0.9rem; line-height: 1.85;
  margin-bottom: 2rem;
}
.camera-dotazioni {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.5rem; margin-bottom: 2.5rem;
}
.camera-dotazioni li {
  font-size: 0.8rem; color: rgba(237,244,232,0.6);
  padding: 0.4rem 0; border-bottom: 1px solid rgba(138,173,122,0.15);
}
.btn-camera {
  display: inline-block;
  background: var(--green-mid);
  color: white; text-decoration: none;
  padding: 0.9rem 2rem;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 2px; align-self: flex-start;
  transition: background var(--transition), transform var(--transition);
}
.btn-camera:hover { background: var(--green-light); transform: translateY(-2px); }

/* ── COLAZIONE ── */
.breakfast-section {
  position: relative;
  background: #1a3a16;
  overflow: hidden;
}
/* Foto sfocata come sfondo */
.breakfast-section::before {
  content: '';
  position: absolute; inset: -20px;
  background: url('images/colazione.jpg') center/cover no-repeat;
  filter: blur(6px) brightness(0.45) saturate(0.7);
  z-index: 0;
}
/* Overlay verde semitrasparente */
.breakfast-section::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(45,90,39,0.55) 0%, rgba(26,58,22,0.65) 100%);
  z-index: 0;
}
.breakfast-overlay {
  display: none;
}
.breakfast-content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; min-height: 600px;
}
.breakfast-text {
  padding: 7rem 5rem 7rem 8rem;
}
.breakfast-text p {
  color: rgba(240,232,216,0.75);
  font-size: 0.95rem; line-height: 1.9;
  margin-bottom: 1.2rem;
}
.breakfast-items {
  display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem;
}
.breakfast-items span {
  background: rgba(138,173,122,0.1);
  border: 1px solid rgba(138,173,122,0.25);
  color: rgba(237,244,232,0.85);
  padding: 0.45rem 1rem;
  font-size: 0.8rem; border-radius: 2px;
}
.breakfast-image {
  height: 600px; overflow: hidden;
}
.breakfast-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── AIRBNB CTA ── */
.airbnb-cta {
  padding: 8rem 0;
  background: var(--parchment);
  text-align: center;
}
.btn-airbnb {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--green-dark); color: white;
  text-decoration: none;
  padding: 1.1rem 3rem;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition);
  box-shadow: 0 8px 30px rgba(45,90,39,0.25);
}
.btn-airbnb:hover {
  background: var(--green-mid);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(45,90,39,0.2);
}

.text-center { text-align: center; }
.cta-text {
  max-width: 520px; margin: 0 auto 3rem;
  color: var(--text-muted); font-size: 1rem; line-height: 1.8;
}

/* ── ATTIVITÀ ── */
.attivita-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
/* Foto sfocata come sfondo */
.attivita-section::before {
  content: '';
  position: absolute; inset: -20px;
  background: url('images/attivita/Articoli-MONDORE-6.png') center/cover no-repeat;
  filter: blur(6px) brightness(0.45) saturate(0.7);
  z-index: 0;
}
/* Overlay verde semitrasparente */
.attivita-section::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(45,90,39,0.55) 0%, rgba(26,58,22,0.65) 100%);
  z-index: 0;
}
.attivita-section .container {
  position: relative; z-index: 1;
}
/* Testi su sfondo scuro */
.attivita-section .section-label { color: rgba(237,244,232,0.75); }
.attivita-section .section-title { color: #fff; }
.attivita-section .section-subtitle { color: rgba(237,244,232,0.8); }
.attivita-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  margin-top: 4rem;
}
.attivita-card {
  background: white; border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(58,32,16,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.attivita-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(58,32,16,0.14);
}
.attivita-img-wrap { width: 100%; height: 240px; overflow: hidden; background: var(--parchment); }
.attivita-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.attivita-body { padding: 2rem; }
.attivita-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.attivita-name {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400;
  color: var(--text-dark); margin-bottom: 0.8rem;
}
.attivita-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.2rem; }
.attivita-tags {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 0.6rem;
}
.attivita-tags li {
  font-size: 0.78rem; letter-spacing: 0.08em;
  background: var(--parchment); color: var(--green-dark);
  padding: 0.3rem 0.8rem; border-radius: 20px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .attivita-grid { grid-template-columns: 1fr; }
}

/* ── CONTATTI ── */
.contatti-section { padding: 8rem 0; }
.contatti-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start;
}
.contatti-mappa {
  display: flex; flex-direction: column; align-items: flex-start;
  position: sticky; top: 100px;
}
.contatti-mappa iframe {
  width: 100%; border-radius: 12px;
  box-shadow: 0 8px 40px rgba(58,32,16,0.12);
}
.info-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
  margin-bottom: 1.8rem;
}
.info-icon { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.info-item strong {
  display: block; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-accent); margin-bottom: 0.3rem;
}
.info-item p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.contact-link {
  color: var(--green-mid); text-decoration: none; font-weight: 500;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--green-dark); text-decoration: underline; }
.map-link-block { margin-top: 1.5rem; }

/* ── FORM ── */
.form-block {
  background: white;
  border-radius: 6px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(45,90,39,0.08);
  border-top: 4px solid var(--green-mid);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.8rem; color: var(--green-dark);
  margin-bottom: 0.6rem; font-weight: 400;
}
.form-note {
  font-size: 0.85rem; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 1.8rem;
}
.form-success {
  background: #edf7ea; border: 1px solid #7ec87a;
  color: #2a5a26; padding: 1rem 1.2rem;
  border-radius: 4px; margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.date-row input { cursor: pointer; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-dark);
}
.form-group input,
.form-group textarea {
  border: 1.5px solid #d0e4ca;
  border-radius: 3px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(61,122,53,0.1);
  background: white;
}
.btn-submit {
  background: var(--green-dark);
  color: white; border: none;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 3px; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  align-self: flex-start;
}
.btn-submit:hover { background: var(--green-mid); transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── FOOTER ── */
.footer {
  background: var(--green-dark);
  padding: 3rem 0;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem; color: var(--white);
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
  margin-bottom: 0.4rem; letter-spacing: 0.1em;
}
.footer-via {
  color: var(--warm-green);
  font-size: 0.85rem; font-style: italic; margin-bottom: 0.5rem;
  font-family: var(--font-display);
}
.footer-sub {
  color: rgba(237,244,232,0.5);
  font-size: 0.8rem; margin-bottom: 0.8rem;
}
.footer-copy { color: rgba(237,244,232,0.3); font-size: 0.75rem; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .intro-features { grid-template-columns: 1fr 1fr; }
  .intro-grid { grid-template-columns: 1fr; gap: 4rem; }
  .camera-block, .camera-block.reverse { grid-template-columns: 1fr; }
  .camera-block .camera-gallery, .camera-block.reverse .camera-gallery { height: 400px; order: 1; }
  .camera-block .camera-info, .camera-block.reverse .camera-info { order: 2; }
  .breakfast-content { grid-template-columns: 1fr; }
  .breakfast-text { padding: 5rem 3rem; }
  .breakfast-image { height: 400px; }
  .contatti-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar { padding: 1rem 1.5rem; }
  .hamburger { display: block; }
  
  /* Menu mobile */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(247, 250, 245, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 24px rgba(45,90,39,0.15);
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links a {
    color: var(--green-dark) !important;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    transition: all var(--transition);
    width: 100%;
    text-align: center;
  }
  .nav-links a:hover {
    background: rgba(138, 173, 122, 0.15);
  }
  
  .camera-gallery { grid-template-columns: 1fr; grid-template-rows: 300px 150px; }
  .gallery-side { flex-direction: row; }
  .camera-info { padding: 3rem 2rem; }
  .camera-dotazioni { grid-template-columns: 1fr; }
  .intro-features { grid-template-columns: 1fr; }
  .breakfast-text { padding: 4rem 2rem; }
}

/* ── LANG SWITCH ── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 3px;
  backdrop-filter: blur(6px);
  transition: background var(--transition), border-color var(--transition);
}
.navbar.scrolled .lang-switch {
  background: rgba(45,90,39,0.08);
  border-color: rgba(45,90,39,0.2);
}
.lang-btn {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 4px 11px;
  border-radius: 50px;
  color: rgba(255,255,255,0.65);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.navbar.scrolled .lang-btn {
  color: var(--green-mid);
}
.lang-btn.active {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 1px 6px rgba(45,90,39,0.4);
}
.navbar.scrolled .lang-btn.active {
  background: var(--green-dark);
  color: var(--white);
}
.lang-btn:not(.active):hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.navbar.scrolled .lang-btn:not(.active):hover {
  background: rgba(45,90,39,0.12);
  color: var(--green-dark);
}
