/* ===== LOCAL FONTS (TTF in /assets/fonts) ===== */

/* Cookie */
@font-face{
  font-family:"Cookie";
  src:url("/assets/fonts/Cookie-Regular.ttf") format("truetype");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

/* Inter (Variable Font) */
@font-face{
  font-family:"Inter";
  src:url("/assets/fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight:100 900;  /* Variable range */
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Inter";
  src:url("/assets/fonts/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight:100 900;
  font-style:italic;
  font-display:swap;
}

/* Playfair Display (Variable Font) */
@font-face{
  font-family:"Playfair Display";
  src:url("/assets/fonts/PlayfairDisplay-VariableFont_wght.ttf") format("truetype");
  font-weight:400 900;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Playfair Display";
  src:url("/assets/fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight:400 900;
  font-style:italic;
  font-display:swap;
}




.topHeader{
  background: url("/img/sakura.jpeg") center/cover no-repeat;
  position: relative;
  background-position: center 2%;
}

.topHeader::before{
  position:absolute;
  inset:0;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(2px);
}

.topBar{
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand img{
  width: 200px;
  height: 160px;
  object-fit: contain;
  display:block;
}

.topNav{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

.navLink{
  text-decoration:none;
  padding:10px 12px;
  border-radius:12px;
  color:#1f2a44;
  font-weight:600;
}

/* Content Split Sections */
.splitSection{
  max-width: 2000px;
  margin: 0 auto;
  padding: 44px 16px;
}

.splitGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items:center;
}

.splitGrid.reverse .splitText{ order: 2; }
.splitGrid.reverse .splitMedia{ order: 1; }

.splitText h1{
  line-height: 1.1;
  margin: 0 0 12px;
}

.splitText h2{
  font-size: clamp(22px, 2.2vw, 32px);
  margin: 0 0 10px;
}

.splitText p{
  margin: 0 0 14px;
  max-width: 58ch;
}

.splitActions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btnPrimary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  background:#1f2a44;
  color:#fff;
  text-decoration:none;
  font-weight:700;
}

.btnGhost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(31,42,68,.25);
  color:#1f2a44;
  text-decoration:none;
  font-weight:700;
  background: rgba(255,255,255,.75);
}

.splitMedia img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 18px;
  border: 1px solid rgba(31,42,68,.12);
}

/* Check list */
.checkList{
  list-style:none;
  padding:0;
  margin: 12px 0 0;
  display:grid;
  gap: 8px;
}
.checkList li::before{
  content:"✓ ";
  font-weight:900;
}

/* Responsive */
@media (max-width: 860px){
  .splitGrid{
    grid-template-columns: 1fr;
  }
  .splitGrid.reverse .splitText,
  .splitGrid.reverse .splitMedia{
    order: initial;
  }
  .topBar{
    align-items:flex-start;
  }
}

.topBar{
        display: flex;
    flex-direction: column;
}
.hero{
  min-height: 520px;                 /* ggf anpassen */
  display: flex;
  align-items: flex-start;           /* nicht mittig */
  padding-top: 90px;                 /* ✅ höher */
  padding-inline: clamp(16px, 4vw, 64px);
}

.hero__title{
  margin: 0;
  max-width: 14ch;                   /* elegant, nicht so breit */
  font-family: "Playfair Display", serif;  /* elegant */
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.1;
  font-size: clamp(34px, 4vw, 58px);
  color: #1f2a44;
  text-shadow: 0 2px 20px rgba(0,0,0,.08);
}







/* HERO NEW */
.hero--new{
  position: relative;
  min-height: clamp(420px, 60vh, 680px);
  display: flex;
  align-items: center;
  padding: clamp(18px, 4vw, 54px) 16px;
  overflow: hidden;

  /* Sakura background zentriert */
  background-image:
    radial-gradient(900px 520px at 18% 28%, rgba(245,154,198,.22), transparent 58%),
    radial-gradient(900px 520px at 80% 30%, rgba(177,242,247,.16), transparent 60%),
    url("/img/WhatsApp Image 2026-01-19 at 17.28.02.jpeg"); /* <- dein Sakura Bild */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero--new::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(255,255,255,.78), rgba(255,255,255,.35));
  pointer-events:none;
}

.hero__inner{
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(16px, 4vw, 40px);
  align-items: center;
}

/* links etwas höher */
.hero__left{
  transform: translateY(-10px);
}

.hero__title{
  margin: 0 0 18px 0;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: .2px;
  color: #1f2a44;
  font-size: clamp(34px, 5.2vw, 56px);
  line-height: 1.05;
  position: relative;
}

/* rosa Schimmer am Anfang */
.hero__title::before{
  content:"";
  position:absolute;
  left: -10px;
  top: .35em;
  width: 120px;
  height: 26px;
  background: radial-gradient(circle at 30% 50%, rgba(245,154,198,.55), transparent 70%);
  filter: blur(6px);
  opacity: .9;
  z-index: -1;
}

.hero__brand{
  display: inline-flex;
  gap: .25em;
  flex-wrap: wrap;
  align-items: baseline;
}

.hero__brandScript{
  font-family: "Cookie", cursive;
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1;
  color: #b65c6f;
  text-shadow: 0 10px 30px rgba(245,154,198,.35);
}

.hero__brandSerif{
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #1f2a44;
}

.hero__btn{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
}

/* rechts Bildfläche */
.hero__right{
  border-radius: 22px;
  min-height: clamp(240px, 34vh, 420px);
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.25), rgba(255,255,255,.05)),
    url("/img/large_Frühlingsgefühle_Instagram_Beitrag_Hochformat_Collage_20250407_213021_0000.png"); /* <- dein Bild */
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 60px rgba(31,42,68,.18);
  border: 1px solid rgba(31,42,68,.12);
}

/* responsive */
@media (max-width: 900px){
  .hero__inner{
    grid-template-columns: 1fr;
  }
  .hero__right{
    order: -1;
    min-height: 240px;
  }
  .hero__left{
    transform: none;
    text-align: left;
  }
}

/* Wrapper / Box vom Bild */
.hero__right,
.splitMedia {
  width: min(620px, 100%);
  aspect-ratio: 16 / 9;     /* <- macht es breit */
  border-radius: 22px;
  overflow: hidden;
}

/* Das Bild selbst */
.hero__right img,
.splitMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* füllt breit, schneidet ggf. oben/unten */
  object-position: center;  /* zentriert den Ausschnitt */
  display: block;
}

.town{
    aspect-ratio: 7 / 9;
}

/* Container */
.splitMedia.shimmerFrame{
  --r: 26px;
  --pad: 10px;
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
}

/* Das Bild */
.splitMedia.shimmerFrame img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: calc(var(--r) - var(--pad));
  position: relative;
  z-index: 2;
}

/* Laufender Rand-Glow (nur am Rand sichtbar!) */
.splitMedia.shimmerFrame::before{
  content:"";
  position:absolute;
  inset:0;
  padding: var(--pad);
  border-radius: var(--r);
  background: conic-gradient(
    from 0deg,
    rgba(245,154,198,0) 0%,
    rgba(245,154,198,.85) 12%,
    rgba(255,210,235,.25) 25%,
    rgba(245,154,198,.75) 38%,
    rgba(245,154,198,0) 55%,
    rgba(245,154,198,.85) 72%,
    rgba(255,210,235,.25) 85%,
    rgba(245,154,198,0) 100%
  );
  filter: blur(6px);
  animation: shimmerSpin 2.8s linear infinite;
  z-index: 1;

  /* macht daraus einen "Ring" = nur Rand sichtbar */
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

@keyframes shimmerSpin{
  to { transform: rotate(360deg); }
}

.topHeader__bg{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.splitGrid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}




.topHeader__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: auto; /* ✅ wichtig */
}

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

.brand__logo.heImgEdit,
.topHeader__bg.heImgEdit {
  pointer-events: auto; /* ✅ wichtig */
}

/* ABOUT / Textblock schöner & luftiger */
.splitSection .splitText {
  max-width: 56ch;          /* angenehme Lesebreite */
}

.splitSection .splitText p,
.splitSection .splitText li {
  line-height: 1.7;         /* wichtig: wirkt sofort weniger gedrängt */
  font-size: 16px;
  letter-spacing: 0.2px;
}

.splitSection .splitText p {
  margin: 0 0 16px;         /* Abstand zwischen Absätzen */
}

/* Überschrift + Untertitel Abstand */
.splitSection .splitText h2 {
  margin: 0 0 10px;
}

.splitSection .splitText h2 + p {
  margin-top: 0;
}

/* Liste schöner */
.checkList {
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;                /* Abstand zwischen Punkten */
}

.checkList li {
  margin: 0;
}

/* Desktop: 2 Spalten */
.splitGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 32px;
}

/* Mobile: untereinander (Text zuerst, Bild danach) */
@media (max-width: 900px) {
  .splitGrid {
    grid-template-columns: 1fr;
  }

  .splitMedia {
    order: 2;
  }

  .splitText {
    order: 1;
  }
}

/* Wenn du reverse nutzt (Bild links, Text rechts) */
.splitGrid.reverse .splitText { order: 2; }
.splitGrid.reverse .splitMedia { order: 1; }

@media (max-width: 900px) {
  .splitGrid.reverse .splitText { order: 1; }
  .splitGrid.reverse .splitMedia { order: 2; }
}

/* Wrapper der den Inhalt zentriert */
.splitSection {
  padding-inline: clamp(16px, 4vw, 60px);
}

/* Der Bereich mit dem Grid */
.splitGrid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;

  /* ✅ leichter Versatz nach links (negativ = nach links, positiv = nach rechts) */
  transform: translateX(-40px);
}

/* Auf kleineren Screens keinen Versatz */
@media (max-width: 1100px) {
  .splitGrid { transform: none; }
}

/* ===============================
   TEAM – Sakura Glass Cards
   =============================== */

#team{
  padding: clamp(28px, 5vw, 70px) 0;
}

#team h2{
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto 18px;
  font-family: "Playfair Display", serif;
  letter-spacing: .2px;
}

/* Grid nicht so "zu mittig" + schöner Abstand */
.team-grid{
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.5vw, 26px);
  align-items: start;
}

/* Card-Look wie deine Seite */
.team-member{
  position: relative;
  padding: 18px 18px 16px;
  border-radius: 26px;

  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
  border: 1px solid rgba(31,42,68,.10);
  backdrop-filter: blur(10px);

  box-shadow:
    0 14px 40px rgba(31,42,68,.10),
    0 1px 0 rgba(255,255,255,.55) inset;

  text-align: center;
  overflow: hidden;
}

/* Pinker Glow am Rand (subtil) */
.team-member::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 28px;
  pointer-events:none;

  background:
    radial-gradient(420px 240px at 15% 15%, rgba(245,154,198,.25), transparent 55%),
    radial-gradient(380px 240px at 85% 10%, rgba(177,242,247,.18), transparent 55%),
    radial-gradient(500px 280px at 50% 110%, rgba(245,154,198,.18), transparent 60%);
  opacity:.85;
}

/* Bild immer gleich & “Premium” */
.team-member img{
  position: relative;
  z-index: 1;

  width: 118px;
  height: 118px;
  object-fit: cover;
  border-radius: 999px;
  display:block;
  margin: 8px auto 14px;

  border: 4px solid rgba(245,154,198,.22);
  box-shadow: 0 10px 26px rgba(31,42,68,.18);
}

.team-member h3{
  position: relative;
  z-index: 1;

  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: .15px;
  color: rgba(31,42,68,.92);
}

.team-text{
  position: relative;
  z-index: 1;

  max-width: 40ch;
  margin: 0 auto;

  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(31,42,68,.78);
}

.team-text p{ margin: 0 0 10px; }

.team-member:hover{
  transform: translateY(-2px);
  transition: transform .18s ease;
}

@media (max-width: 980px){
  .team-grid{ grid-template-columns: 1fr; }
  .team-member{ text-align: left; }
  .team-member img{ margin: 8px 0 14px; }
  .team-text{ max-width: 60ch; margin: 0; }
}

.team-member img{ object-fit: cover; background: #fff; }

:root{
  --font-title: "Cormorant Garamond", serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body{
  font-family: var(--font-body);
  line-height: 1.75;
  letter-spacing: 0.2px;
  color: #1f2430;
}

.hero__title,
.splitText h1,
.splitText h2,
#teamTitle{
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 1.05;
}

.splitText .subline,
.splitText small,
.splitText .kicker{
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 0.75;
}

.splitText p,
.team-text p{
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  margin: 0 0 14px;
  max-width: 60ch;
}

.checkList li{
  line-height: 1.75;
  margin: 8px 0;
}

@media (max-width: 760px){

  .topHeader{
    position: relative;
  }
  .topBar{
    display: flex;
    flex-direction: column;   
    align-items: center;      
    gap: 8px;
    padding: 12px 12px 10px;
  }

  .brand{
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .brand img{
    width: 140px;            
    height: auto;             
    display: block;
    object-fit: contain;
  }

  .topNav{
    width: 100%;
    display: flex;
    justify-content: center;  
  }

  .topNav ul{
    display: flex;
    justify-content: center;
    gap: 18px;                
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;          
  }

  .topNav a{
    padding: 8px 10px;       
  }
}