@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Montserrat:wght@400;500;600&display=swap');

:root {
  --green: #0a5d2d;
  --gold: #e6c34f;
  --cream: #fffaf0;
  --dark: #172015;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--dark);
  font-family: "Montserrat", Arial, sans-serif;
}

body { color: var(--cream); }

.hero {
  position: relative;
  min-height: 78vh;
  min-height: 78svh;
  display: grid;
  place-items: center;
  padding: 30px 18px;
  isolation: isolate;
  background: url("immagini/sfondo.jpg") center / cover no-repeat;
}

.shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(8, 18, 8, .18), rgba(8, 18, 8, .68)),
    radial-gradient(circle at center, transparent 18%, rgba(0,0,0,.32) 100%);
}

.content {
  width: min(850px, 100%);
  text-align: center;
}

.logo {
  display: block;
  width: min(560px, 88vw);
  max-height: 250px;
  object-fit: contain;
  margin: 0 auto 20px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.28));
}

.notice {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 50px);
  background: rgba(15, 31, 17, .74);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  box-shadow: 0 22px 60px rgba(0,0,0,.38);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.small-title {
  margin: 0 0 12px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .28em;
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: .9;
  letter-spacing: .01em;
}


.date {
  margin: 24px 0 0;
  color: var(--gold);
  font-size: clamp(1.3rem, 4vw, 2.15rem);
  font-weight: 600;
  letter-spacing: .08em;
}

.welcome {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
}

.info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.16);
}

.info-block {
  min-height: 190px;
  padding: 32px 24px;
  text-align: center;
  background: #173b24;
}

.info-block h2 {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.info-block p {
  margin: 0;
  line-height: 1.75;
}

a {
  color: var(--cream);
  text-decoration: none;
}

a:hover, a:focus {
  color: var(--gold);
  text-decoration: underline;
}

@media (max-width: 760px) {
  .hero { min-height: auto; padding: 24px 14px 34px; }
  .logo { max-height: 185px; }
  .notice { padding: 30px 18px; }
  .info { grid-template-columns: 1fr; }
  .info-block { min-height: 0; padding: 26px 18px; }
}

@media (prefers-reduced-motion: no-preference) {
  .notice { animation: rise .8s ease-out both; }
  @keyframes rise {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
}