/* ===========================
   AlmaFiera House – Style
   Color palette: Orange/Red
   =========================== */

:root {
  --primary:    #D94F2B;   /* burnt orange-red */
  --primary-d:  #B03A1E;   /* darker shade */
  --primary-l:  #F26D3D;   /* lighter shade */
  --accent:     #F5A623;   /* warm amber accent */
  --dark:       #1A1210;
  --dark-2:     #2E1C18;
  --mid:        #5C3D36;
  --light-bg:   #FDF7F4;
  --white:      #FFFFFF;
  --text:       #3A2A25;
  --text-muted: #8A6E68;
  --border:     #EDD9D2;
  --shadow:     0 4px 24px rgba(180,60,30,0.10);
  --shadow-lg:  0 12px 48px rgba(180,60,30,0.18);
  --radius:     14px;
  --radius-lg:  24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select {
  font: inherit;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(217,79,43,0.12);
}
textarea { resize: vertical; }

/* CONTAINER */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  box-shadow: 0 4px 16px rgba(217,79,43,0.35);
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(217,79,43,0.45);
  filter: brightness(1.05);
}
.btn-primary.full { width: 100%; justify-content: center; }

.btn-outline-sm {
  display: inline-block;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  margin-top: 0.75rem;
  transition: background var(--transition), color var(--transition);
}
.btn-outline-sm:hover { background: var(--primary); color: var(--white); }

/* SECTION COMMON */
.section { padding: 100px 0; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg,var(--primary-l),var(--accent));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1.2rem;
}
.section-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 3rem;
  line-height: 1.8;
}
.section-intro strong { color: var(--primary); }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(180,60,30,0.10);
  padding: 0.6rem 0;
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
  letter-spacing: -0.01em;
}
.navbar.scrolled .nav-logo { color: var(--dark); }
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.navbar.scrolled .nav-links a { color: var(--text); }
.navbar.scrolled .nav-links a:hover { color: var(--primary); }

.nav-links .nav-airbnb {
  background: #FF5A5F;
  color: var(--white) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav-links .nav-airbnb:hover { background: #e0484d; box-shadow: 0 4px 12px rgba(255,90,95,0.45); }



.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--dark); }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    url('torri.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,18,16,0.78) 0%,
    rgba(180,58,30,0.55) 60%,
    rgba(26,18,16,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 2rem 1.5rem;
  max-width: 760px;
}
.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}
.hero-content h1 span { color: var(--accent); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.hero-badges span {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.hero-badges span i { color: var(--accent); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2.4s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   FEATURES
   =========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-l);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.3rem;
  color: var(--white);
}
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.feature-card p { font-size: 0.95rem; color: var(--text-muted); }

/* ===========================
   GALLERY
   =========================== */
.gallery-section {
  padding: 100px 0 60px;
  background: var(--dark-2);
}
.gallery-section .container { margin-bottom: 2.5rem; }
.gallery-section .section-tag { background: linear-gradient(135deg,var(--primary),var(--primary-d)); }
.gallery-section .section-title { color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 10px;
  padding: 0 10px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,16,0.65) 0%, transparent 60%);
  transition: opacity var(--transition);
}
.gallery-item:hover { transform: scale(0.99); }
.gallery-item:hover::after { opacity: 0.5; }
.gallery-item.large {
  grid-column: span 2;
}
.gallery-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 2;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.gallery-label i { color: var(--accent); }

.gallery-note {
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  margin-top: 2rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* ===========================
   CHECK-IN
   =========================== */
.checkin-section { background: var(--light-bg); }
.checkin-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.checkin-steps { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.checkin-step {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkin-step h4 {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.checkin-step p { font-size: 0.93rem; color: var(--text-muted); }

.checkin-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.info-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.info-card:hover { box-shadow: var(--shadow); border-color: var(--primary-l); }
.info-card > i {
  font-size: 1.4rem;
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}
.info-card h4 { font-weight: 600; font-size: 0.88rem; color: var(--mid); margin-bottom: 0.2rem; }
.info-card p { font-weight: 600; color: var(--dark); font-size: 0.98rem; }
.info-card small { font-size: 0.78rem; color: var(--text-muted); }

/* ===========================
   LOCATION
   =========================== */
.location-section { background: var(--white); }
.transport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.transport-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  background: var(--light-bg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.transport-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-l);
}
.transport-card.highlight {
 background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
  border-color: transparent;
  color: var(--white);
}
.transport-card.highlight h3,
.transport-card.highlight p { color: var(--white); }
.transport-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary);
}
.transport-card.highlight .transport-icon { color: var(--accent); }
.transport-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--dark);
}
.transport-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.8rem; }
.transport-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
}
.transport-card:not(.highlight) .transport-badge {
  background: rgba(217,79,43,0.1);
  border: 1px solid rgba(217,79,43,0.2);
  color: var(--primary);
}

.map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.map-card {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-lg);
  text-align: left;
  max-width: 220px;
}
.map-card i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.map-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text);
}

/* ===========================
   AREA
   =========================== */
.area-section {
  background:
    linear-gradient(to bottom, rgba(248,247,244,0.93) 0%, rgba(248,247,244,0.87) 50%, rgba(248,247,244,0.93) 100%),
    url('fiera-di-bologna.png') center/cover no-repeat;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.area-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.area-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.area-card-inner {
  padding: 2rem 1.75rem;
  height: 100%;
  background: var(--white);
  position: relative;
}
.area-card.fiera .area-card-inner::before,
.area-card.universita .area-card-inner::before,
.area-card.centro .area-card-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.area-card.fiera .area-card-inner::before {
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.area-card.universita .area-card-inner::before {
  background: linear-gradient(90deg, var(--primary-d), var(--primary));
}
.area-card.centro .area-card-inner::before {
  background: linear-gradient(90deg, var(--accent), var(--primary-l));
}
.area-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  margin-bottom: 1.2rem;
}
.area-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 0.7rem;
}
.area-card p { font-size: 0.93rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.area-list { display: flex; flex-direction: column; gap: 0.5rem; }
.area-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.area-list li i { color: var(--primary); font-size: 0.75rem; }

/* ===========================
   CONTACTS
   =========================== */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.btn-airbnb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FF5A5F;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  box-shadow: 0 4px 16px rgba(255,90,95,0.40);
  text-decoration: none;
  white-space: nowrap;
}
.btn-airbnb:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,90,95,0.55);
  filter: brightness(1.06);
  color: var(--white);
}

.contacts-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.contacts-section-head > div { flex: 1; min-width: 260px; }
.contacts-section-head > div .section-intro { margin-bottom: 0; }
.btn-airbnb-lg {
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
  align-self: center;
  flex-shrink: 0;
}

.contacts-section {
  background:
    linear-gradient(to bottom, rgba(10,10,15,0.80) 0%, rgba(10,10,15,0.72) 50%, rgba(10,10,15,0.85) 100%),
    url('torri.jpg') center/cover no-repeat;
}
.contacts-section .section-tag { background: linear-gradient(135deg, var(--accent), var(--primary)); }
.contacts-section .section-title { color: var(--white); }
.contacts-section .section-intro { color: rgba(255,255,255,0.65); }

.contacts-layout {
  display: flex;
  justify-content: center;
}
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 3rem;
  max-width: 720px;
  width: 100%;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}
.contact-item > i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background: rgba(217,79,43,0.2);
  color: var(--primary-l);
  flex-shrink: 0;
}
.contact-item h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.2rem;
}
.contact-item a, .contact-item p {
  color: rgba(255,255,255,0.9);
  font-size: 0.97rem;
  font-weight: 500;
}
.contact-item a:hover { color: var(--accent); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mid);
}
.form-success {
  margin-top: 1rem;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  font-size: 0.93rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* ===========================
   FAQ
   =========================== */
.faq-section { background: var(--light-bg); }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open {
  border-color: var(--primary-l);
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-item.open .faq-question { color: var(--primary); }

.faq-icon {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--primary);
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), padding 0.28s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.3rem;
}
.faq-answer p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  padding: 4rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand p {
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-brand .nav-logo { font-size: 1.4rem; }
.footer-links h4, .footer-address h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-l);
  margin-bottom: 1.2rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-address p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-address i { color: var(--primary-l); margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  padding: 1.25rem 1.5rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .checkin-layout       { grid-template-columns: 1fr; gap: 2.5rem; }
  .contacts-layout      { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner         { grid-template-columns: 1fr 1fr; }
  .gallery-grid         { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.large   { grid-column: span 2; }

  /* Appartamento: 2 colonne con padding compatto su tablet/mobile */
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .feature-card {
    padding: 0.9rem 0.75rem;
    min-width: 0;
  }
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-bottom: 0.7rem;
  }
  .feature-card h3 { font-size: 0.95rem; margin-bottom: 0.3rem; }
  .feature-card p  { font-size: 0.82rem; overflow-wrap: break-word; line-height: 1.5; }
}

@media (max-width: 700px) {
  .section { padding: 70px 0; }

  /* Navbar: fix IT/EN toggle overflow on small screens */
  .nav-inner {
    gap: 0.4rem;
  }
  .nav-logo {
    font-size: 1.15rem;
    flex-shrink: 1;
    min-width: 0;
  }
  .lang-toggle {
    margin-left: 0;
    flex-shrink: 0;
  }
  .nav-toggle {
    display: flex;
    flex-shrink: 0;
    order: 3;
  }

  .nav-links { 
    display: none;
    position: fixed;
    left: 0; right: 0;
    top: 56px;
    background: var(--dark-2);
    border-top: 3px solid var(--primary);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0.5rem 0 0.75rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    font-size: 1rem !important;
    color: rgba(255,255,255,0.88) !important;
    display: block;
    padding: 0.75rem 1.75rem;
    letter-spacing: 0.01em;
  }
  .nav-links a:hover { color: var(--accent) !important; background: rgba(255,255,255,0.04); }
  .nav-links .nav-cta { color: var(--primary-l) !important; font-weight: 700; }
  .nav-links .nav-airbnb {
    margin: 0.5rem 1.75rem 0;
    border-radius: var(--radius);
    justify-content: center;
  }

  .checkin-info-cards { grid-template-columns: 1fr; }
  .form-row           { grid-template-columns: 1fr; }
  .footer-inner       { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid       { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; height: 220px; }
  .gallery-item       { height: 200px; }
  .map-wrapper        { height: 320px; }
  .map-card           { display: none; }

  /* Sezione contatti: 1 colonna su mobile */
  .contact-info {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 3.2rem; }
  .hero-badges { flex-direction: column; align-items: center; }
  .area-grid { grid-template-columns: 1fr; }
}

/* ===========================
   Language Toggle
   =========================== */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 3px;
  margin-left: auto;
}
.lang-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--white);
  opacity: 0.55;
  transition: background var(--transition), opacity var(--transition);
}
.lang-btn.active {
  background: var(--primary);
  opacity: 1;
}
.lang-btn:hover:not(.active) {
  opacity: 0.9;
  background: rgba(255,255,255,0.12);
}

/* Hide the default Google Translate bar */
.goog-te-banner-frame,
.goog-te-balloon-frame { display: none !important; }
body { top: 0 !important; }
.goog-te-gadget { display: none !important; }
.skiptranslate > iframe { display: none !important; }
