/*
Theme Name: GeneratePress Child - Fry Wild
Template: generatepress
Description: Child-Theme für frywild.de mit eigenem Coming-Soon-Template.
Version: 2.0
Author: Fry Wild
Text Domain: frywild
*/

:root{
  --forest:        #1e3d2f;
  --forest-light:  #2d5a42;
  --forest-dark:   #142a1f;
  --forest-muted:  #4a7a5a;
  --cream:         #f5f3ee;
  --cream-dark:    #ede9e1;
  --cream-darker:  #e0dcd3;
  --text:          #23281f;
  --text-muted:    #6b7268;
  --hairline:      rgba(30,61,47,0.14);
}

/* =========================================================
   Fonts
   Standardmäßig lokale Fallbacks (Georgia / System-Sans),
   damit nichts von Google-Servern geladen wird (DSGVO).
   Zum Selbsthosten: Playfair Display + Lato als woff2 in
   /fonts ablegen und die @font-face-Blöcke unten aktivieren.
   ========================================================= */

/*
@font-face{
  font-family:'Playfair Display';
  src:url('fonts/playfair-display-v30-latin-regular.woff2') format('woff2');
  font-weight:400; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Playfair Display';
  src:url('fonts/playfair-display-v30-latin-600.woff2') format('woff2');
  font-weight:600; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Lato';
  src:url('fonts/lato-v24-latin-300.woff2') format('woff2');
  font-weight:300; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Lato';
  src:url('fonts/lato-v24-latin-regular.woff2') format('woff2');
  font-weight:400; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Lato';
  src:url('fonts/lato-v24-latin-700.woff2') format('woff2');
  font-weight:700; font-style:normal; font-display:swap;
}
*/

/* =========================================================
   Coming-Soon-Template
   Alle Regeln unter .fw-page greifen NUR auf dieser Seite,
   damit später normale Seiten/Blog nicht beeinflusst werden.
   ========================================================= */

.fw-page *,
.fw-page *::before,
.fw-page *::after{ box-sizing:border-box; }

.fw-page{
  margin:0;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  background:var(--cream);
  color:var(--text);
  font-family:'Lato', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight:400;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

.fw-serif{
  font-family:'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* ---------- Topbar ---------- */

.fw-topbar{
  background:var(--forest);
  color:#c8e0c8;
  font-size:.72rem;
  font-weight:300;
  letter-spacing:.16em;
  padding:.45rem 1.5rem;
  display:flex;
  justify-content:center;
  align-items:center;
  text-transform:uppercase;
}

/* ---------- Header / Wortmarke ---------- */

.fw-header{
  background:var(--cream);
  border-bottom:1px solid var(--hairline);
  padding:1.4rem 1.5rem;
  text-align:center;
}

.fw-wordmark{
  font-family:'Playfair Display', Georgia, serif;
  font-size:1.7rem;
  letter-spacing:.22em;
  line-height:1;
  color:var(--forest);
  text-decoration:none;
  display:inline-block;
}

.fw-wordmark-sub{
  display:block;
  font-family:'Lato', system-ui, sans-serif;
  font-size:.56rem;
  letter-spacing:.25em;
  text-transform:uppercase;
  color:var(--forest);
  opacity:.6;
  margin-top:.35rem;
}

/* ---------- Hero ---------- */

.fw-hero{
  position:relative;
  overflow:hidden;
  background:var(--forest);
  flex:1 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:clamp(420px, 60vh, 620px);
}

.fw-hero-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.30;
}

.fw-hero-inner{
  position:relative;
  z-index:1;
  max-width:640px;
  margin:0 auto;
  text-align:center;
  padding:5rem 1.5rem;
}

.fw-eyebrow{
  font-size:.62rem;
  letter-spacing:.3em;
  text-transform:uppercase;
  color:rgba(255,255,255,.6);
  margin:0 0 1.1rem 0;
}

.fw-hero h1{
  font-family:'Playfair Display', Georgia, serif;
  font-weight:400;
  font-size:clamp(2rem, 5.5vw, 3.1rem);
  line-height:1.15;
  color:#f0f5f0;
  margin:0 0 1.3rem 0;
}

.fw-hero p{
  font-size:1rem;
  font-weight:300;
  line-height:1.75;
  color:rgba(255,255,255,.78);
  margin:0 auto;
  max-width:52ch;
}

.fw-hero .fw-status{
  margin-top:2rem;
  font-size:.72rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:rgba(255,255,255,.55);
}

/* ---------- Feature-Zeile ---------- */

.fw-features{
  background:var(--cream-dark);
  padding:3.5rem 1.5rem;
}

/* Die Spalten entstehen aus normalen Editor-Blöcken:
   je eine H2 gefolgt von einem Absatz. Das Raster ordnet
   diese Paare automatisch nebeneinander an. */
.fw-features-inner{
  max-width:960px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  grid-auto-rows:min-content;
  gap:.4rem 2.5rem;
  text-align:center;
}

.fw-features-inner h2{
  font-family:'Playfair Display', Georgia, serif;
  font-size:1.15rem;
  font-weight:400;
  color:var(--forest);
  margin:0;
  grid-row:1;
}

.fw-features-inner p{
  font-size:.88rem;
  line-height:1.65;
  color:var(--text-muted);
  margin:0;
  grid-row:2;
}

/* Falls der Editor die Blöcke in Wrapper packt, greift dieser Fallback. */
.fw-features-inner > *:empty{ display:none; }

/* ---------- Kontakt ---------- */

.fw-contact{
  background:var(--cream);
  padding:3rem 1.5rem;
  text-align:center;
}

.fw-contact p{
  margin:0;
  font-size:.92rem;
  color:var(--text-muted);
}

.fw-contact a{
  color:var(--forest);
  text-decoration:none;
  border-bottom:1px solid var(--hairline);
  padding-bottom:1px;
}

.fw-contact a:hover{
  border-bottom-color:var(--forest);
}

/* ---------- Footer ---------- */

.fw-footer{
  background:var(--forest);
  margin-top:auto;
}

.fw-footer-inner{
  max-width:960px;
  margin:0 auto;
  padding:2.6rem 1.5rem 1.6rem;
  display:flex;
  flex-wrap:wrap;
  gap:2rem;
  justify-content:space-between;
  align-items:flex-start;
}

.fw-footer-mark{
  font-family:'Playfair Display', Georgia, serif;
  font-size:1.05rem;
  letter-spacing:.2em;
  color:#f0f5f0;
}

.fw-footer-tag{
  font-size:.72rem;
  line-height:1.6;
  color:rgba(255,255,255,.55);
  margin:.5rem 0 0 0;
  max-width:34ch;
}

.fw-footer h3{
  font-size:.62rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:rgba(255,255,255,.5);
  margin:0 0 .8rem 0;
  font-weight:700;
}

.fw-footer ul{
  list-style:none;
  margin:0;
  padding:0;
}

.fw-footer li{ margin-bottom:.45rem; }

.fw-footer a{
  font-size:.78rem;
  color:rgba(255,255,255,.78);
  text-decoration:none;
}

.fw-footer a:hover{
  color:#fff;
  text-decoration:underline;
}

.fw-footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  text-align:center;
  padding:1rem 1.5rem;
}

.fw-footer-bottom span{
  font-size:.62rem;
  letter-spacing:.15em;
  color:rgba(255,255,255,.45);
}

/* ---------- Fokus / Accessibility ---------- */

.fw-page a:focus-visible{
  outline:2px solid #c8e0c8;
  outline-offset:3px;
}

/* ---------- Mobil ---------- */

@media (max-width: 780px){
  .fw-features-inner{
    grid-template-columns:1fr;
    gap:2rem;
  }
  .fw-footer-inner{
    flex-direction:column;
    gap:1.8rem;
  }
}

@media (max-width: 480px){
  .fw-topbar{ font-size:.62rem; letter-spacing:.12em; }
  .fw-hero-inner{ padding:3.5rem 1.25rem; }
  .fw-wordmark{ font-size:1.4rem; }
}
