
:root{
  --bg:#0f3d2e;
  --bg2:#0b2f24;
  --gold:#d4af37;
  --gold2:#b8922e;
  --text:#f3f1ea;
  --muted:#d9d3c6;
  --wood1:#3a2a1c;
  --wood2:#24180f;
  --card: rgba(10, 30, 24, .78);
  --border: rgba(212,175,55,.55);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 18px;
  --max: 1180px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Georgia, "Times New Roman", serif;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(212,175,55,.18), transparent 55%),
    radial-gradient(900px 500px at 110% 10%, rgba(212,175,55,.10), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

a{color:inherit; text-decoration:none}
.wrap{max-width:var(--max); margin:0 auto; padding:0 18px}

/* Top bar */
.topbar{
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,0));
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(6px);
}
.topbar .row{
  display:flex; gap:14px; align-items:center; justify-content:space-between;
  font-size:15px; color:var(--muted);
  flex-wrap:wrap;
}
.pill{display:inline-flex; gap:10px; align-items:center; flex-wrap:wrap}
.pill span{
  display:inline-flex; gap:8px; align-items:center;
  padding:6px 10px; border:1px solid rgba(255,255,255,.12);
  border-radius:999px; background:rgba(0,0,0,.14);
}
.icon{opacity:.9}

/* Header + nav */
header{padding:18px 0 0}
.brand{display:flex; align-items:center; justify-content:center; padding:18px 0 12px}
.brand img{max-width:560px; width:100%; height:auto; filter: drop-shadow(0 18px 35px rgba(0,0,0,.45))}
nav{
  margin:10px 0 0;
  background: linear-gradient(180deg, var(--wood1) 0%, var(--wood2) 100%);
  border-top:1px solid rgba(212,175,55,.35);
  border-bottom:1px solid rgba(212,175,55,.35);
  box-shadow: 0 12px 25px rgba(0,0,0,.35);
}
.navrow{
  display:flex; gap:18px; align-items:center; justify-content:center;
  padding:12px 0; flex-wrap:wrap; letter-spacing:.5px;
}
.navrow a{padding:8px 10px; border-radius:10px; color:#f5f2ea; opacity:.92}
.navrow a:hover{outline:1px solid rgba(212,175,55,.55); background: rgba(212,175,55,.10); opacity:1}

/* Hero */
.hero{padding:0}
.heroCard{
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px; overflow:hidden; box-shadow: var(--shadow);
  position:relative; background:transparent;
}
.heroImg{
  height:600px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.25) 52%, rgba(0,0,0,.35) 100%),
    url("assets/hero.jpg") center/cover no-repeat;
}
.heroText{position:absolute; inset:0; display:flex; align-items:flex-end; padding:20px}
.heroText h1{
  margin:0; font-size: clamp(34px, 4vw, 56px); line-height:1.05;
  color:#f7f4ec; text-shadow: 0 10px 30px rgba(0,0,0,.75);
}
.heroText p{
  margin:10px 0 0; max-width:720px;
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--muted); text-shadow: 0 10px 30px rgba(0,0,0,.75);
}
.goldline{height:1px; background: linear-gradient(90deg, transparent, rgba(212,175,55,.8), transparent); margin:18px 0 0}

/* Sections */
section{padding:0}
.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:18px}
@media (max-width: 980px){ .grid3{grid-template-columns:1fr} .heroImg{height:360px} }

.card{
  background: var(--card);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgba(0,0,0,.35);
  overflow:hidden;
  position:relative;
}
.cardHead{padding:16px 18px 12px; border-bottom:1px solid rgba(255,255,255,.08)}
.cardHead h2{margin:0; font-size:22px; letter-spacing:.3px; color:#f7f4ec}
.cardBody{padding:16px 18px 18px; color:var(--muted); font-size:16px}
.goldFrame{position:absolute; inset:10px; border:1px solid rgba(212,175,55,.45); border-radius:14px; pointer-events:none}

.btn{
  display:inline-block; margin-top:12px; padding:12px 16px;
  border-radius:12px; border:1px solid rgba(212,175,55,.65);
  background: rgba(212,175,55,.10); color:#fff; font-weight:600; letter-spacing:.2px;
}
.btn:hover{background: rgba(212,175,55,.18)}
.small{font-size:14px; opacity:.92}
.list{margin:10px 0 0; padding-left:18px}
.list li{margin:6px 0}

/* PDF area */
.pdfBox{
  display:flex; gap:14px; align-items:center; justify-content:space-between; flex-wrap:wrap;
  padding:14px; background: rgba(0,0,0,.18);
  border:1px dashed rgba(212,175,55,.55); border-radius:14px;
}
.pdfBox strong{color:#fff}
.pdfLinks{display:flex; gap:10px; flex-wrap:wrap}

/* Gallery */
.gallery{
  display:grid; grid-template-columns: repeat(4, 1fr);
  gap:10px; padding:14px;
}
@media (max-width: 980px){ .gallery{grid-template-columns: repeat(2, 1fr);} }
.gItem{
  border-radius:14px; overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:#000; aspect-ratio: 4/3; position:relative;
}
.gItem img{width:100%; height:100%; object-fit:cover; transform: scale(1.02); transition:.35s; opacity:.96}
.gItem:hover img{transform: scale(1.07); opacity:1}

/* Events page */
.pageTitle{
  margin:22px 0 0;
  font-size: clamp(28px, 3vw, 40px);
  color:#f7f4ec;
}
.lead{color:var(--muted); max-width:880px; margin:10px 0 0; font-size:18px}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius:14px;
  border:1px solid rgba(212,175,55,.55);
  background: rgba(0,0,0,.16);
  color:#fff; margin-top:14px;
}
.external-note{
  margin-top:18px;
  border:1px solid rgba(212,175,55,.65);
  background: rgba(212,175,55,.08);
  border-radius:16px;
  padding:16px 16px;
  color: var(--muted);
}
.external-note strong{color:#fff}
.external-note a{color:#fff; text-decoration:underline}

/* Footer */
footer{
  margin-top:16px; padding:18px 0 28px;
  border-top:1px solid rgba(255,255,255,.08);
  color:var(--muted); font-size:14px;
}
.footRow{display:flex; gap:14px; align-items:center; justify-content:space-between; flex-wrap:wrap}
.heroCard {
position: relative;
overflow: hidden;
min-height: 650px;
}

.heroImg{
position: absolute;
inset: 0;
background-image: url("assets/terrasse.jpg");
background-size: cover;
background-position: center 40%;
background-repeat: no-repeat;
filter: brightness(0.6);
z-index: 0;
}

.heroText{
position: relative;
z-index: 1;
}