/* ==========================================================================
   Royal-Yoga – Custom Styles
   Fonts: Cormorant Garamond (Headlines) / Poppins (Fließtext) – self-hosted
   ========================================================================== */

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-garamond-latin-400-normal.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-garamond-latin-500-normal.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-garamond-latin-600-normal.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-garamond-latin-700-normal.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-latin-300-normal.woff2") format("woff2");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-latin-400-normal.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-latin-500-normal.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-latin-600-normal.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}

:root{
  --ry-forest:   #2C3B2F;
  --ry-forest-2: #3E5142;
  --ry-gold:     #B78A3F;
  --ry-gold-2:   #D8B871;
  --ry-cream:    #FAF6EE;
  --ry-ink:      #22271F;
  --ry-line:     rgba(44,59,47,.12);
  --ry-font-head: "Cormorant Garamond", Georgia, serif;
  --ry-font-body: "Poppins", -apple-system, Segoe UI, Roboto, sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family: var(--ry-font-body);
  color: var(--ry-ink);
  background: var(--ry-cream);
  font-weight: 300;
  line-height: 1.7;
}
h1, h2, h3, .ry-font-head{
  font-family: var(--ry-font-head);
  color: var(--ry-forest);
  font-weight: 600;
}
a{ color: var(--ry-forest); }
a:hover{ color: var(--ry-gold); }

.ry-eyebrow{
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  color: var(--ry-gold);
  font-weight: 500;
  margin-bottom: .5rem;
}
.ry-h2{ font-size: clamp(2rem, 3vw, 2.75rem); }
.ry-h3{ font-size: 1.4rem; margin-bottom: .6rem; }
.ry-lead{ font-size: 1.1rem; color: var(--ry-forest-2); }

/* ---------- Header / Navigation ---------- */
.ry-header{
  position: sticky; top: 0; z-index: 1000;
  background: rgba(250,246,238,.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--ry-line);
}
.ry-navbar{ padding: .85rem 0; }
.ry-brand img{ display:block; height: 44px; width: auto; }

.navbar-nav .nav-link{
  color: var(--ry-forest);
  font-weight: 500;
  letter-spacing: .02em;
  padding: .5rem 1rem !important;
}
.navbar-nav .nav-link:hover{ color: var(--ry-gold); }

.ry-btn-nav{
  background: var(--ry-forest);
  color: #fff !important;
  border-radius: 999px;
  padding: .5rem 1.4rem !important;
  font-size: .92rem;
}
.ry-btn-nav:hover{ background: var(--ry-gold); }

/* Bürgermenü / Burger */
.ry-burger{
  border: none; padding: 6px; width: 40px; height: 40px;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  background: transparent;
}
.ry-burger:focus{ box-shadow: none; outline: 2px solid var(--ry-gold); }
.ry-burger-line{
  display:block; width: 22px; height: 2px; background: var(--ry-forest); border-radius: 1px;
  transition: transform .2s ease, opacity .2s ease;
}
.ry-burger[aria-expanded="true"] .ry-burger-line:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.ry-burger[aria-expanded="true"] .ry-burger-line:nth-child(2){ opacity: 0; }
.ry-burger[aria-expanded="true"] .ry-burger-line:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.ry-hero{
  position: relative;
  min-height: 78vh;
  display: flex; align-items: center;
  background: radial-gradient(120% 100% at 50% 0%, var(--ry-forest-2) 0%, var(--ry-forest) 60%, var(--ry-ink) 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.ry-hero-overlay{
  position:absolute; inset:0;
  background-image: url('/assets/img/hero-mandala.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 130%;
  opacity: .12;
}
.ry-hero-inner{ position: relative; z-index: 1; }
.ry-hero-title{
  font-family: var(--ry-font-head);
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: #fff;
  margin: .2rem 0 .6rem;
}
.ry-hero-logo{
  width: min(80%, 420px);
  height: auto;
}
.ry-hero-sub{ font-size: 1.15rem; color: rgba(255,255,255,.85); max-width: 40rem; margin: 0 auto; }
.ry-hero .ry-eyebrow{ color: var(--ry-gold-2); }

.ry-btn-primary{
  background: var(--ry-gold);
  border: none;
  color: var(--ry-ink);
  font-weight: 500;
  border-radius: 999px;
  padding: .75rem 2.2rem;
}
.ry-btn-primary:hover{ background: var(--ry-gold-2); color: var(--ry-ink); }

/* ---------- Sections ---------- */
.ry-section{ padding: 5.5rem 0; }
.ry-section-alt{ background: #F1ECDE; }

.ry-portrait-frame{
  border: 1px solid var(--ry-line);
  border-radius: 1rem;
  padding: 1rem;
  background: #fff;
}
.ry-portrait-frame img{
  width: 100%;
  height: auto;
  display: block;
}

.ry-checklist{ list-style: none; padding: 0; margin: 1.2rem 0 0; }
.ry-checklist li{
  position: relative; padding-left: 1.8rem; margin-bottom: .6rem; color: var(--ry-forest-2);
}
.ry-checklist li::before{
  content: "✳";
  position: absolute; left: 0; top: 0;
  color: var(--ry-gold);
}

.ry-card{
  background: #fff;
  border: 1px solid var(--ry-line);
  border-radius: 1rem;
  padding: 2.2rem 1.8rem;
  height: 100%;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ry-card:hover{ transform: translateY(-4px); box-shadow: 0 16px 30px rgba(44,59,47,.1); }
.ry-card-icon{ width: 46px; height: 46px; margin-bottom: 1rem; }

.ry-contact-box{
  background: #fff;
  border: 1px solid var(--ry-line);
  border-radius: 1rem;
  padding: 1.6rem 2rem;
  display: inline-block;
}

/* ---------- Footer ---------- */
.ry-footer{
  background: var(--ry-forest);
  color: rgba(255,255,255,.85);
  padding: 4rem 0 2rem;
}
.ry-footer-claim{ color: rgba(255,255,255,.7); font-size: .95rem; }
.ry-footer-heading{
  font-family: var(--ry-font-head);
  color: #fff; font-size: 1.2rem; margin-bottom: .8rem;
}
.ry-footer a{ color: rgba(255,255,255,.85); }
.ry-footer a:hover{ color: var(--ry-gold-2); }
.ry-footer-links li{ margin-bottom: .4rem; }
.ry-footer-rule{ border-color: rgba(255,255,255,.15); margin: 2rem 0 1.2rem; }
.ry-copyright{ font-size: .82rem; color: rgba(255,255,255,.55); margin: 0; }

/* ---------- Legal pages ---------- */
.ry-legal h2{ margin-top: 2rem; }
.ry-legal p, .ry-legal li{ color: var(--ry-forest-2); }
.ry-note{ font-size: .85rem; color: #8a8578; }