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

/* BASE */
body{
  font-family:Arial, sans-serif;
  background:#f8f8f8;
  color:#000;
  line-height:1.6;

  /* sticky footer layout */
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

/* HEADER */
header{
  background:linear-gradient(90deg, orange, #ff7a00);
  color:#fff;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:15px;
  padding:15px;
  flex-wrap:wrap;
}

header img{
  height:60px;
}

header h1{
  font-size:30px;
}

/* NAV */
nav{
  background:#ff9d2e;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
}

nav a{
  color:#fff;
  text-decoration:none;
  padding:15px 20px;
  font-weight:bold;
  transition:0.3s;
}

nav a:hover{
  background:#e67e00;
}

/* CONTAINER */
.container{
  width:90%;
  max-width:1100px;
  margin:auto;
  padding:30px 0;
  flex:1;
}

/* CARD */
.card{
  background:#fff;
  padding:25px;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  margin-bottom:25px;
}

/* ================= MENU ================= */

.menu-title{
  text-align:center;
  font-size:34px;
  font-weight:800;
  color:#ff7a00;
  margin-bottom:20px;
  text-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.menu-title::after{
  content:"";
  display:block;
  width:80px;
  height:4px;
  background:linear-gradient(90deg, orange, #ff7a00);
  margin:10px auto 0;
  border-radius:2px;
}

/* SLIDER */
.slider-box{
  margin-bottom:10px;
}

/* IMMAGINI */
.resp{
  width:100%;
  height:auto;
  display:block;
  border-radius:12px;
  margin:15px 0;
  transition:0.3s;
}

.resp:hover{
  transform:scale(1.01);
}

/* DIDASCALIA */
.caption-box{
  text-align:center;
  margin-top:8px;
}

.menu-caption{
  font-weight:bold;
  font-size:18px;
  color:#444;
}

/* BOTTONE */
.btn-box{
  text-align:center;
  margin:20px 0;
}

.menu-btn{
  background:linear-gradient(135deg, orange, #ff7a00);
  color:#fff;
  border:none;
  padding:14px 28px;
  font-size:17px;
  font-weight:bold;
  border-radius:30px;
  cursor:pointer;
  transition:0.3s;
  box-shadow:0 5px 15px rgba(255, 122, 0, 0.3);
}

.menu-btn:hover{
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 8px 20px rgba(255, 122, 0, 0.5);
}

.menu-btn:active{
  transform:scale(0.98);
}

/* DESCRIZIONE */
.menu-description{
  text-align:center;
  font-size:18px;
  color:#333;
  padding:10px 15px;
  background:rgba(255,165,0,0.08);
  border-left:4px solid orange;
  border-radius:8px;
  max-width:800px;
  margin:15px auto 0;
}

/* HAMBURGER ICON */
.menu-toggle{
  display:none;
  font-size:28px;
  text-align:center;
  background:#ff9d2e;
  color:#fff;
  padding:10px;
  cursor:pointer;
}

/* NAV BASE */
#nav-menu{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
}

/* MOBILE */
@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  #nav-menu{
    display:none;
    flex-direction:column;
    width:100%;
    background:#ff9d2e;
  }

  #nav-menu a{
    border-top:1px solid rgba(255,255,255,0.2);
    padding:12px;
  }

  /* quando attivo */
  #nav-menu.active{
    display:flex;
  }
}

/* ================= CONTATTI ================= */

/* BOX WRAPPER */
.contact-box{
  display:flex;
  justify-content:center;
  gap:25px;
  flex-wrap:wrap;
  margin:30px 0;
}

/* BOX */
.contact-item{
  background:rgba(255,165,0,0.08);
  border-left:4px solid orange;
  padding:25px;
  border-radius:10px;
  flex:1 1 250px;   /* 🔥 chiave della responsività */
  max-width:300px;  /* evita box troppo larghi */
  min-height:140px;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;

  transition:0.3s;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.contact-item:hover{
  transform:scale(1.05);
  background:rgba(255,165,0,0.15);
}

.contact-item h3{
  margin-bottom:10px;
  color:#333;
}

.contact-item p{
  font-weight:bold;
  font-size:16px;
  line-height:1.5;
}

/* SEZIONE SEDI */
.contact-section{
  text-align:center;
  margin:20px 0;
}

.contact-section h3{
  color:#ff7a00;
  margin-bottom:10px;
}

.contact-section p{
  margin:5px 0;
  font-size:16px;
  color:#333;
}

/* SEZIONE SEDI */
.contact-section{
  text-align:center;
  margin:20px 0;
}

.contact-section h3{
  color:#ff7a00;
  margin-bottom:10px;
}

.contact-section p{
  margin:5px 0;
  font-size:16px;
  color:#333;
}


/* ================= CHI SIAMO ================= */

.about-title{
  text-align:center;
  font-size:34px;
  font-weight:800;
  color:#ff7a00;
}

/* paragrafi chi siamo */
.about-text{
  text-align:justify;
  font-size:16.5px;
  line-height:1.8;
  max-width:900px;
  margin:14px auto;
  color:#2a2a2a;
}

/* evidenziazioni strong più eleganti */
.about-text strong{
  font-weight:600;
  color:#111;
}

.about-values{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
}

.value-box{
  background:rgba(255,165,0,0.1);
  padding:10px 15px;
  border-radius:8px;
}

/* sezioni (titoli interni tipo "La nostra Mensa") */
.about-section{
  margin:35px auto;
  max-width:900px;
}

/* titoli sezioni */
.about-section h3{
  color:#ff7a00;
  font-size:20px;
  font-weight:700;
  margin-bottom:12px;
  text-align:left;
}

/* liste */
.about-list{
  list-style:none;
  padding:0;
  margin:0;
}

/* elementi lista più puliti */
.about-list li{
  background:#fafafa;
  margin:10px 0;
  padding:14px 16px;
  border-left:3px solid #ff7a00;
  border-radius:6px;
  font-size:15.5px;
  line-height:1.6;
  color:#333;
}

/* link */
.about-list a{
  color:#ff7a00;
  font-weight:600;
  text-decoration:none;
}
.about-list a:hover{
  text-decoration:underline;
}

/* ================= SUMMER ================= */

.summer-link-box{
  text-align:center;
  margin-top:15px;
  padding:12px;
  background:rgba(255,165,0,0.1);
  border-radius:10px;
}

.summer-link-box a{
  color:#ff7a00;
  font-weight:bold;
  text-decoration:none;
}

.summer-link-box a:hover{
  text-decoration:underline;
}

/* ================= FOOTER ================= */

footer{
  background:#222;
  color:#fff;
  text-align:center;
  padding:20px;
  font-size:14px;
  margin-top:auto;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){
  header h1{font-size:24px;}
  .menu-title,
  .contact-title,
  .about-title{
    font-size:28px;
  }
}

@media(max-width:480px){

  nav a{
    width:100%;
    text-align:center;
  }

  header img{height:50px;}
  header h1{font-size:20px;}

  .container{
    width:95%;
    padding:20px 0;
  }

  .card{
    padding:15px;
  }

  .menu-title,
  .contact-title,
  .about-title{
    font-size:24px;
  }

  .menu-description,
  .about-text{
    font-size:16px;
  }

  .menu-btn{
    padding:14px 28px;
    font-size:17px;
  }
}