/* =======================
   FONT LUXURY (NO GOOGLE FONTS = GDPR SAFE)
   ======================= */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fbfbfa;
  color: #111827;
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0;
}

/* =======================
   CONTAINER
   ======================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.narrow {
  max-width: 720px;
  margin: auto;
}

/* =======================
   HEADER
   ======================= */
.header {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e6e6e6;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  height: 48px;
}

nav a {
  margin-left: 26px;
  text-decoration: none;
  color: #2f2f2f;
  font-size: 15px;
  letter-spacing: 0.02em;
}

/* =======================
   HERO MOBILE-FIRST
   ======================= */
.hero {
  background: linear-gradient(180deg,#f6f5f3,#fbfbfa);
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.hero-text h1 {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.hero-text h2 {
  font-size: 1.1rem;
  color: #6b7280;
  font-weight: 400;
  margin-bottom: 22px;
}

.hero-text p {
  color: #555;
  max-width: 520px;
  margin: auto;
}

.hero-photo-wrap {
  position: relative;
}

.hero-photo {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
  border: 6px solid #ffffff;
  margin: auto;
}

/* =======================
   BUTTON LUXURY
   ======================= */
.btn-lux {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 26px;
  background: #1c1c1c;
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: 0.04em;
}

/* =======================
   SECTIONS
   ======================= */
.section {
  padding: 70px 0;
}

.bg-soft {
  background: #f6f5f3;
}

h3 {
  font-size: 1.6rem;
  margin-bottom: 26px;
  font-weight: 500;
}

/* =======================
   LIST LUXURY
   ======================= */
.lux-list {
  list-style: none;
  padding: 0;
}

.lux-list li {
  padding: 14px 0;
  border-bottom: 1px solid #e0dfdc;
  font-size: 1.05rem;
}

/* =======================
   MAP
   ======================= */
.map {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 14px;
  margin-top: 26px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* =======================
   FOOTER
   ======================= */
footer {
  background: #111;
  color: #bbb;
  padding: 50px 0;
  font-size: 14px;
  text-align: center;
}

footer a {
  color: #ddd;
}

/* =======================
   COOKIE BANNER
   ======================= */
.cookie-banner {
  position: fixed;
  bottom: 26px;
  right: 26px;
  background: #111;
  color: white;
  padding: 18px 22px;
  border-radius: 14px;
  display: none;
  font-size: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.cookie-banner button {
  background: white;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
}

/* =======================
   MEDIA QUERY RESPONSIVE
   ======================= */

/* Tablet */
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 300px;
    text-align: left;
  }

  .hero-photo {
    width: 280px;
    height: 280px;
    margin: 0;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text h2 {
    font-size: 1.2rem;
  }
}

/* Desktop Large */
@media (min-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr 380px;
  }

  .hero-photo {
    width: 360px;
    height: 360px;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .hero-text h2 {
    font-size: 1.3rem;
  }

  .section {
    padding: 110px 0;
  }

  .hero {
    padding: 120px 0 90px;
  }
}

/* Nascondi menu mobile */
@media (max-width: 600px) {
  nav {
    display: none;
  }
}
