/* ============================================================
   Fischereiverein Röslau e.V. — Site Styles
   Palette drawn straight from the club crest:
   navy ring, brushed-silver medallion, gold filigree,
   river blue (the Eger / the weiher) and meadow green (the hills).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=UnifrakturCook:wght@700&family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --navy: #16233c;
  --navy-deep: #0d1626;
  --navy-soft: #24375c;
  --silver: #f4f1e8;
  --parchment: #faf7ef;
  --gold: #b3902f;
  --gold-light: #d8bd6e;
  --river: #3d6e93;
  --river-deep: #2a4f6e;
  --meadow: #4a6b4f;
  --meadow-deep: #33492f;
  --ink: #1c2430;

  --display: 'Cormorant Garamond', serif;
  --blackletter: 'UnifrakturCook', cursive;
  --body: 'Lora', serif;
  --ui: 'Inter', sans-serif;

  --max: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: var(--river-deep); text-decoration: none; }
a:hover{ text-decoration: underline; }
a:focus-visible, button:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 28px; }

h1,h2,h3,h4{
  font-family: var(--display);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .5em;
}
h1{ font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2{ font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3{ font-size: 1.35rem; font-weight: 600; }

.eyebrow{
  font-family: var(--ui);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display:block;
  margin-bottom: .6em;
}

p{ margin: 0 0 1em; }
.lede{ font-size: 1.15rem; color: #3a4456; }

/* ---------- Water-line divider (signature element) ---------- */
.water-divider{
  width:100%;
  height: 34px;
  display:block;
  color: var(--gold);
}
.water-divider.flip{ transform: scaleY(-1); }

/* ---------- Header ---------- */
.site-header{
  background: var(--navy);
  color: var(--silver);
  border-bottom: 3px solid var(--gold);
}
.header-inner{
  display:flex;
  align-items:center;
  gap: 22px;
  padding: 16px 28px;
  max-width: var(--max);
  margin: 0 auto;
}
.crest{
  width: 64px; height:64px;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  flex-shrink:0;
  object-fit: cover;
}
.brand{
  flex:1;
  min-width:0;
}
.brand-name{
  font-family: var(--blackletter);
  font-size: 1.7rem;
  color: var(--silver);
  line-height: 1;
  display:block;
}
.brand-tag{
  font-family: var(--ui);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
nav.main-nav{
  background: var(--navy-deep);
}
nav.main-nav ul{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap: 2px 4px;
  margin:0; padding: 0 22px;
  max-width: var(--max);
  margin-inline:auto;
}
nav.main-nav a{
  display:block;
  font-family: var(--ui);
  font-size: .82rem;
  letter-spacing: .03em;
  color: var(--silver);
  padding: 13px 14px;
  border-bottom: 3px solid transparent;
  opacity: .85;
}
nav.main-nav a:hover,
nav.main-nav a[aria-current="page"]{
  opacity: 1;
  text-decoration:none;
  border-bottom-color: var(--gold);
  background: rgba(255,255,255,.03);
}
.nav-toggle{ display:none; }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(216,189,110,.16), transparent 55%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--silver);
  overflow:hidden;
  padding: 64px 0 78px;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.05) 0 2px, transparent 2px 46px);
  opacity:.5;
  pointer-events:none;
}
.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items:center;
}
.hero h1{ color: var(--silver); }
.hero .lede{ color: #d8dee8; }
.hero-badge{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--ui); font-size:.74rem; letter-spacing:.1em; text-transform:uppercase;
  color: var(--navy);
  background: var(--gold-light);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero-crest-wrap{
  display:flex; justify-content:center;
}
.hero-crest{
  width: min(320px, 80%);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(216,189,110,.18), 0 30px 60px -20px rgba(0,0,0,.6);
}

.btn-row{ display:flex; gap:14px; flex-wrap:wrap; margin-top: 26px; }
.btn{
  font-family: var(--ui);
  font-weight:600;
  font-size:.88rem;
  padding: 12px 22px;
  border-radius: 3px;
  display:inline-block;
  border: 1px solid transparent;
}
.btn-gold{
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-gold:hover{ background: var(--gold-light); text-decoration:none; }
.btn-outline{
  border-color: rgba(244,241,232,.5);
  color: var(--silver);
}
.btn-outline:hover{ border-color: var(--gold-light); color:var(--gold-light); text-decoration:none; }

/* ---------- Sections ---------- */
section{ padding: 56px 0; }
section.alt{ background: var(--silver); }
.section-head{ max-width: 640px; margin-bottom: 34px; }

.card-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card{
  background: var(--parchment);
  border: 1px solid #e3dcc7;
  border-top: 3px solid var(--gold);
  padding: 26px 24px;
}
section.alt .card{ background: #fff; }
.card h3{ margin-bottom:.35em; }
.card .meta{
  font-family: var(--ui); font-size:.78rem; color: var(--river-deep);
  text-transform:uppercase; letter-spacing:.06em; margin-bottom:.6em; display:block;
}

/* ---------- Tables (Termine / Preise) ---------- */
.table-wrap{ overflow-x:auto; border:1px solid #e3dcc7; }
table{
  width:100%;
  border-collapse: collapse;
  font-family: var(--ui);
  font-size: .92rem;
  background:#fff;
}
thead th{
  background: var(--navy);
  color: var(--silver);
  text-align:left;
  font-weight:600;
  letter-spacing:.04em;
  padding: 12px 16px;
  font-size:.78rem;
  text-transform:uppercase;
}
tbody td{
  padding: 11px 16px;
  border-bottom: 1px solid #ece6d5;
  vertical-align: top;
}
tbody tr:nth-child(even){ background: #faf7ee; }
tbody tr:hover{ background: #f2ead2; }
td.event-name{ font-family: var(--body); font-weight:600; color: var(--navy); }

.price-table td:nth-child(2), .price-table th:nth-child(2){ text-align:right; font-variant-numeric: tabular-nums; }

/* ---------- Gallery ---------- */
.gallery{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
}
.gallery img{
  width:100%; height: 190px; object-fit:cover;
  border: 1px solid #e3dcc7;
}
.gallery figure{ margin:0; }
.gallery figcaption{
  font-family: var(--ui); font-size:.74rem; color:#5a5347;
  margin-top:4px;
}

/* ---------- Person list (Vorstandschaft) ---------- */
.person-list{ list-style:none; margin:0; padding:0; }
.person-list li{
  display:flex; justify-content:space-between; gap: 16px; flex-wrap:wrap;
  padding: 14px 0;
  border-bottom: 1px solid #e3dcc7;
  font-family: var(--ui); font-size:.95rem;
}
.person-list .role{ color: var(--river-deep); font-weight:600; min-width: 240px; }
.person-list .name{ color: var(--ink); }

/* ---------- Downloads ---------- */
.doc-list{ list-style:none; margin:0; padding:0; display:grid; gap:12px; }
.doc-list a{
  display:flex; align-items:center; gap:14px;
  background:#fff; border:1px solid #e3dcc7; border-left: 4px solid var(--river);
  padding: 16px 18px;
  font-family: var(--ui); font-weight:600; color: var(--navy);
}
.doc-list a:hover{ border-left-color: var(--gold); text-decoration:none; background:#fbf8ee; }
.doc-list .ext{
  font-family: var(--ui); font-size:.68rem; letter-spacing:.05em;
  background: var(--navy); color:var(--silver); padding:3px 7px; border-radius:3px;
  flex-shrink:0;
}

/* ---------- Info strip / quick facts ---------- */
.facts{
  display:grid; grid-template-columns: repeat(4,1fr); gap:0;
  border: 1px solid #e3dcc7;
}
.facts div{
  padding: 22px 20px;
  border-left: 1px solid #e3dcc7;
  text-align:center;
  background:#fff;
}
.facts div:first-child{ border-left:none; }
.facts strong{
  display:block; font-family: var(--display); font-size:1.9rem; color: var(--navy);
}
.facts span{ font-family: var(--ui); font-size:.76rem; text-transform:uppercase; letter-spacing:.06em; color:#6b6455; }

/* ---------- Callout ---------- */
.callout{
  background: var(--navy);
  color: var(--silver);
  padding: 40px 36px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
}
.callout h3{ color:var(--silver); margin-bottom:.2em; }
.callout p{ color:#c9d0dc; margin:0; }

/* ---------- Footer ---------- */
footer.site-footer{
  background: var(--navy-deep);
  color: #c9d0dc;
  padding: 48px 0 26px;
  margin-top: 40px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-grid h4{
  color: var(--gold-light);
  font-family: var(--ui);
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.1em;
  margin-bottom: .9em;
}
.footer-grid p, .footer-grid li{ font-family: var(--ui); font-size:.88rem; line-height:1.7; }
.footer-grid ul{ list-style:none; padding:0; margin:0; }
.footer-grid a{ color:#c9d0dc; }
.footer-grid a:hover{ color: var(--gold-light); }
.footer-bottom{
  max-width: var(--max); margin: 34px auto 0; padding: 20px 28px 0;
  border-top: 1px solid rgba(244,241,232,.12);
  font-family: var(--ui); font-size:.76rem; color:#8a92a4;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px;
}

/* ---------- Page header (interior pages) ---------- */
.page-hero{
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--silver);
  padding: 40px 0 46px;
  border-bottom: 3px solid var(--gold);
}
.page-hero h1{ color: var(--silver); margin-bottom:.2em; }
.breadcrumb{
  font-family: var(--ui); font-size:.78rem; color: var(--gold-light);
  letter-spacing:.04em;
}

/* ---------- Responsive ---------- */
@media (max-width: 880px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-crest-wrap{ order:-1; }
  .card-grid{ grid-template-columns: 1fr 1fr; }
  .facts{ grid-template-columns: 1fr 1fr; }
  .facts div:nth-child(3){ border-left:none; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px){
  .header-inner{ flex-wrap:wrap; }
  nav.main-nav ul{ padding: 0 8px; justify-content:flex-start; }
  nav.main-nav a{ padding: 11px 10px; font-size:.78rem; }
  .card-grid{ grid-template-columns: 1fr; }
  .facts{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .callout{ flex-direction:column; align-items:flex-start; }
  h1{ font-size: 2.1rem; }
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
}
