body {
  margin: 0;
  font-family: Inter;
  background: #0b0b0b;
  color: white;
  scroll-behavior: smooth;
}

/* HEADER FIX DEFINITIVO */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-sizing: border-box;
}

.logo {
  font-family: Bebas Neue;
  font-size: 24px;
  white-space: nowrap;
}

nav {
  display: flex;
  gap: 12px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

nav a:hover {
  background: rgba(255,255,255,0.1);
  color: orange;
}

/* HERO */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0,0,0,0.3), rgba(0,0,0,0.85));
}

.hero-content {
  position: relative;
}

.hero h1 {
  font-size: 72px;
  font-family: Bebas Neue;
}

.hero p {
  opacity: 0.8;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: orange;
  color: black;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
}

/* SEZIONI */
.section {
  padding: 90px 20px;
  text-align: center;
}

.dark {
  background: #111;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

/* CARD */
.card {
  padding: 40px;
  border-radius: 15px;
  text-decoration: none;
  color: white;
  font-size: 20px;
  font-weight: bold;
  transition: 0.3s;
}

.card span {
  display: block;
  font-size: 14px;
  opacity: 0.7;
  margin-top: 10px;
}

.card:hover {
  transform: scale(1.05);
}

.panin { background: #ff6a00; }
.porketta { background: #c0392b; }
.natale { background: #2980b9; }
.befana { background: #8e44ad; }

/* PROGRAMMA */
.box {
  max-width: 900px;
  margin: auto;
  text-align: left;
}

.day {
  background: rgba(255,255,255,0.05);
  padding: 15px;
  margin-bottom: 15px;
  border-left: 4px solid orange;
  border-radius: 10px;
}

.food {
  margin-top: 30px;
  padding: 25px;
  background: linear-gradient(135deg,#ff9800,#ffb300);
  color: black;
  border-radius: 15px;
  font-weight: bold;
}

/* SOCIAL */
.social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  transition: 0.3s;
}

.social a:hover {
  background: orange;
  color: black;
}

/* FOOTER */
footer {
  padding: 30px;
  text-align: center;
  background: #000;
}
.subtitle {
  opacity: 0.7;
  margin-bottom: 40px;
}

/* GRID DONAZIONI */
.donations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

/* CARD DONAZIONI */
.donation-card {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 15px;
  text-align: left;
  transition: 0.3s;
  border-left: 4px solid orange;
}

.donation-card h3 {
  margin-top: 0;
  color: orange;
}

.donation-card span {
  display: block;
  margin-top: 15px;
  font-size: 13px;
  opacity: 0.7;
}

/* HOVER */
.donation-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.08);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .donations-grid {
    grid-template-columns: 1fr;
  }
}
.program-booklet{

    margin-top:50px;

    display:flex;

    align-items:center;

    gap:25px;

    background:rgba(255,255,255,.04);

    padding:25px;

    border-radius:15px;

    border:1px solid rgba(255,255,255,.08);

}

.program-booklet img{

    width:110px;
    height:auto;

    border-radius:8px;

    box-shadow:0 8px 20px rgba(0,0,0,.35);

    transition:.3s;

}

.program-booklet img:hover{

    transform:scale(1.05);

}

.program-booklet-text{

    flex:1;

}

.program-booklet-text h3{

    margin-top:0;
    margin-bottom:10px;

    color:#ff9800;

}

.program-booklet-text p{

    margin-bottom:20px;

    color:#d9d9d9;

    line-height:1.6;

}

.download-btn{

    display:inline-block;

    padding:12px 24px;

    background:#ff9800;

    color:#111;

    border-radius:30px;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}

.download-btn:hover{

    background:#ffb300;

    transform:translateY(-2px);

}

@media(max-width:768px){

    .program-booklet{

        flex-direction:column;

        text-align:center;

    }

}