/* =========================
   RESET + BASE
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html, body{
  height:100%;
}

body{
  font-family:'Montserrat', sans-serif;
  background:#f9f9f9;
  color:#2a2a2a;
}

img{
  max-width:100%;
  display:block;
}

.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

/* Utility */
.section{
  padding:70px 0;
}

.section h2{
  font-family:'Playfair Display', serif;
  font-size:34px;
  color:#4b5320;
  margin-bottom:18px;
  letter-spacing:0.2px;
}

.section p{
  font-size:16px;
  color:#555;
  line-height:1.75;
}

/* =========================
   NAVBAR
========================= */
.navbar{
  background:#fff;
  padding:14px 0;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
}

.logo{
  display:flex;
  align-items:center;
  font-family:'Playfair Display', serif;
  font-size:22px;
  font-weight:700;
  color:#4b5320;
}

.logo img{
  width:30px;
  margin-right:10px;
}

/* BRAND / LOGO */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.brand-logo{
  height:56px;
  width:auto;
  object-fit:contain;
}

@media (max-width:768px){
  .brand-logo{ height:44px; }
}

.navbar ul{
  display:flex;
  list-style:none;
  align-items:center;
  gap:20px;
}

.navbar ul li{
  margin-left:0;
}

.navbar ul li a{
  text-decoration:none;
  color:#333;
  font-size:13px;
  font-weight:600;
  letter-spacing:0.2px;
  opacity:0.92;
}

.navbar ul li a:hover{
  opacity:1;
  color:#4b5320;
}

.btn-book{
  background:#2c3e50;
  color:#fff !important;
  padding:10px 18px;
  border-radius:6px;
}

/* Language switch */
.lang-switch{
  display:flex;
  gap:10px;
  align-items:center;
  margin-left:16px;
  font-size:13px;
}

.lang-switch a{
  text-decoration:none;
  color:#4b5320;
  font-weight:600;
  opacity:.85;
}

.lang-switch a:hover{ opacity:1; }

.lang-switch a.active{
  opacity:1;
  border-bottom:2px solid #4b5320;
  padding-bottom:2px;
}

/* =========================
   HERO
========================= */
.hero{
  height:80vh;
  background-image:url('../img/home2.jpg'); /* ✅ corretto: CSS sta in /css */
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}

/* overlay scuro elegante */
.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

/* contenuto hero */
.hero-content{
  position:relative;
  z-index:2;
  background-color:rgba(255,255,255,0.15);
  border:1px solid rgba(255,255,255,0.35);
  padding:40px 60px;
  text-align:center;
  color:#fff;
  max-width:720px;
  backdrop-filter: blur(2px);
}

.hero-content h1{
  font-family:'Playfair Display', serif;
  font-size:50px;
  letter-spacing:5px;
  text-shadow:2px 2px 10px rgba(0,0,0,0.5);
  margin-bottom:8px;
}

.hero-content h2{
  font-family:'Playfair Display', serif;
  font-style:italic;
  font-weight:400;
  font-size:32px;
  margin:10px 0 0;
  text-shadow:2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content p{
  font-family:'Montserrat', sans-serif;
  font-size:15px;
  line-height:1.7;
  margin-top:12px;
  opacity:0.95;
}

.btn-explore{
  display:inline-block;
  margin-top:20px;
  background:#204b7a;
  color:#fff;
  text-decoration:none;
  padding:12px 30px;
  font-weight:700;
  font-size:14px;
  letter-spacing:0.4px;
  border-radius:24px;
  box-shadow:0 10px 22px rgba(32,75,122,0.25);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.btn-explore:hover{
  transform: translateY(-2px);
  box-shadow:0 14px 26px rgba(32,75,122,0.30);
  opacity:0.98;
}

/* =========================
   INTRO / ABOUT (Benvenuti...)
   (compatibile sia con .intro sia con il tuo vecchio .about-section)
========================= */
.intro{
  padding:70px 0;
}

.intro h2{
  font-family:'Playfair Display', serif;
}

.intro p{
  font-family:'Montserrat', sans-serif;
}

/* Se usi la struttura "about-section / about-card" */
.about-section{
  margin-top:-100px;
  position:relative;
  z-index:10;
  padding-bottom:50px;
}

.about-card{
  background:rgba(255,255,255,0.92);
  padding:40px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.10);
}

.about-card h3{
  font-size:14px;
  color:#888;
  letter-spacing:2px;
  margin-bottom:15px;
  font-weight:600;
  text-transform:uppercase;
}

.about-card p{
  font-size:16px;
  color:#555;
  line-height:1.7;
  margin-bottom:18px;
}

/* Link "Scopri di più" sotto intro */
.about-link{
  margin-top:14px;
  font-family:'Montserrat', sans-serif;
  font-size:14px;
}

.about-link a{
  color:#4b5320;
  text-decoration:none;
  font-weight:600;
  position:relative;
}

.about-link a::after{
  content:" →";
  font-weight:400;
  transition: transform .2s ease;
}

.about-link a:hover::after{
  transform: translateX(4px);
}

/* =========================
   FEATURES (Perché scegliere...)
========================= */
.features{
  padding:70px 0;
}

.features h2{
  font-family:'Playfair Display', serif;
}

.features-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
  margin-top:28px;
}

.feature{
  text-align:center;
}

.feature img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:10px;
  box-shadow:0 10px 22px rgba(0,0,0,0.08);
}

.feature h4{
  margin-top:12px;
  font-size:12px;
  letter-spacing:1px;
  color:#4b5320;
  text-transform:uppercase;
  font-weight:700;
}

/* =========================
   FOOTER (se lo usi)
========================= */
.footer{
  padding:28px 0;
  background:#fff;
  border-top:1px solid rgba(0,0,0,0.05);
}

.footer p{
  text-align:center;
  color:#666;
  font-size:13px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px){
  .hero-content{
    padding:28px 22px;
    margin:0 14px;
  }
  .hero-content h1{
    font-size:36px;
    letter-spacing:3px;
  }
  .hero-content h2{
    font-size:24px;
  }
}

@media (max-width: 768px){
  .features-grid{ grid-template-columns:1fr; }
  .navbar ul{ display:none; } /* come avevi tu */
  .section h2{ font-size:28px; }
}
