/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #1f2d2b;
}

/* GALLERY – solo pagina Ristorante */
.page-ristorante .gallery {
  padding: 0;
}

.page-ristorante .gallery-grid {
  max-width: 820px;
  margin: auto;
}

/* Immagini più basse solo in Ristorante */
.page-ristorante .gallery-grid img {
  height: 200px;
}

/* Liste contenuto (ristorante, prodotti, menu) */
.text-block ul {
  list-style: none;            /* via i pallini standard */
  padding-left: 0;
  margin: 20px 0 10px;
}

.text-block ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Pallino personalizzato */
.text-block ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #2f6f4e;              /* verde naturale */
  font-size: 1.2em;
  line-height: 1.2;
}


/*custom style*/
.margin-40 {
  margin-top:40px !important;
}

.color-blue {  
    color: #0b474b !important;
}

.max-width-cta {
  max-width: 136px;
}

/*map*/
.map {
  margin-top: 20px;
}

.map iframe {
  width: 100%;
  height: 320px;   /* home page compatta */
  border: 0;
  border-radius: 8px;
}

/* Menu */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 6vw;
  background: rgba(11, 71, 75, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.site-header .cta {
  position: relative;
  z-index: 1;
  border-color: #f4f1e8;
  color: #f4f1e8;
}

.site-header .cta-outline:hover {
  background: #f4f1e8;
  color: #0b474b;
}

.nav-brand {
  color: #f4f1e8;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-menu a {
  color: #f4f1e8;
  text-decoration: none;
  font-weight: 500;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #f4f1e8;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #0b474b;
    flex-direction: column;
    width: 100%;
    display: none;
    padding: 1.5rem;
  }

  .nav-menu.open {
    display: flex;
  }
}

/* =========================
   HERO = UNICO BACKGROUND
   ========================= */
.hero {
  height: 100vh;
  width: 100%;

  background-image:
    linear-gradient(
      rgba(20, 50, 30, 0.45),
      rgba(20, 50, 30, 0.45)
    ),
    url("../assets/images/bg.png");

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

  display: flex;
  align-items: center;
  justify-content: center;
}

/* BRAND */
.brand {
  text-align: center;
  color: #f4f1e8;
}

.brand .subtitle {
  font-size: 1rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* =========================
   CONTENUTO (NO BG IMAGE)
   ========================= */
.content {
  background-color: #f6f8f5;
  padding: 120px 6vw 5rem; /
}

/* TESTI */
.text-block {
  max-width: 820px;
  margin: auto;
}

.text-block h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0b474b;
}

.text-block p {
  margin-bottom: 1.3rem;
  line-height: 1.65;
}

/* FOOTER */
.footer {
  padding: 2rem;
  text-align: center;
  background: #0b474b;
  color: #f4f1e8;
}

/* HERO HEADER */
.brand h1 {
  margin-top: 0.6rem;
  font-size: clamp(4.5rem, 14vw, 10rem); /* ⬅️ un filo più grande */
  letter-spacing: 0.18em;
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

/* CTA */
.cta {
  display: inline-block;
  margin-top: 1.8rem;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  background: #e6cb62;
  color: #0b474b;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.cta:hover {
  background: #d7bd55;
  transform: translateY(-2px);
}

/* CTA secondaria */
.cta-outline {
  background: transparent;
  border: 2px solid #0b474b;
  color: #0b474b;
}

.cta-outline:hover {
  background: #0b474b;
  color: #f4f1e8;
}

/* TESTI */
.text-block p {
  font-size: 1.15rem;        /* ⬅️ corpo più grande */
  margin-bottom: 1.6rem;
  line-height: 1.75;
}

/* CTA block sotto testo */
.cta-block {
  margin-top: 3rem;
  text-align: center;
}

/* =========================
   GALLERY
   ========================= */

.gallery {
  margin: 4rem 0;
  padding: 4rem 6vw;
  background-color: #f6f8f5;
}

.gallery-grid {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;

  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}

@media (max-width: 768px) {
  .nav-menu a.max-width-cta {
    max-width: none;
    width: 100%;
    text-align: center;
  }

  .nav-menu a {
    padding: 0.8rem 0;
  }

}