/* -------------------------
   Happy Hands - style.css
   Ziel: Look & Layout wie das erste Hero-Bild
   ------------------------- */

/* Farben */
:root{
  --rose-100: #fdeff3;
  --rose-200: #f8c8d8;
  --accent: #b24572;
  --text: #333333;
  --muted: #777;
  --bg: #fff;
  --card: #fff;
  --shadow: 0 8px 24px rgba(0,0,0,0.07);
}

/* Grund */
* { box-sizing: border-box; }
html,body { height: 100%; }
body{
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

/* Container zentriert */
.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header{
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 300;
  backdrop-filter: blur(6px);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 1rem 0;
}
.logo{
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.02em;
  font-size: 1.25rem;
}
.site-nav a{
  margin-left: 1.1rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.95;
  transition: color .2s ease, transform .12s ease;
}
.site-nav a:hover { color: var(--accent); transform: translateY(-2px); }

/* -----------------------
   HERO (wie das Bild)
   links großer Text, rechts großes Bild
   ----------------------- */
.hero{
  background: linear-gradient(180deg, var(--rose-100) 0%, #fff 60%);
  padding: 2.5rem 0 3.5rem;
  overflow: hidden;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem 0;
}

/* mobile: stack */
@media (max-width: 880px){
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-image img{ max-width: 80%; margin: 0 auto; display:block; }
}

/* Textbereich */
.hero-text { padding-right: 0.5rem; }
.hero-kicker{
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  font-family: "Inter";
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.hero-title{
  margin: .4rem 0 1rem 0;
  font-family: "Poppins", sans-serif;
  font-size: 3.6rem;
  line-height: 1;
  color: #3a3a3a;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero-sub{
  margin: 0 0 1.4rem 0;
  color: #5b5b5b;
  max-width: 48ch;
  font-size: 1.05rem;
}

/* CTA */
.cta{
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: .9rem 1.2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(178,69,114,0.18);
  transition: transform .15s ease, box-shadow .15s ease;
}
.cta:hover{ transform: translateY(-4px); box-shadow: 0 12px 24px rgba(178,69,114,0.2); }

/* Hero-Bild */
.hero-image img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

/* -----------------------
   Sektionen / Preisliste
   ----------------------- */
.section-title{
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  text-align: center;
  margin: 0 0 1.25rem 0;
  color: #333;
}

/* Preistabelle als Card */
.price-card{
  display:flex;
  justify-content:center;
  padding: 1.2rem;
}
.price-table{
  width: min(720px, 100%);
  border-collapse: collapse;
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.price-table thead th{
  background: var(--rose-200);
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  color: #4a2f3c;
}
.price-table td{
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid #f1e6ea;
  color: #3c3c3c;
}
.price-table tbody tr:last-child td{ border-bottom: 0; }

/* -----------------------
   Galerie
   ----------------------- */
.galerie .grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
@media (max-width: 900px){
  .galerie .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .galerie .grid { grid-template-columns: 1fr; }
}
.galerie img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.galerie img:hover { transform: scale(1.04); box-shadow: 0 16px 36px rgba(0,0,0,0.08); }

/* -----------------------
   Über / Kontakt
   ----------------------- */
.ueber, .kontakt{
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 420px;
  gap: 2rem;
}
@media (max-width: 900px){
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-form label{
  display:block;
  margin-bottom: .8rem;
  font-size: .95rem;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  padding: .75rem;
  border-radius: 10px;
  border: 1px solid #eee;
  margin-top: .35rem;
  font-size: .95rem;
}
.btn{
  display:inline-block;
  background: var(--accent);
  color:#fff;
  padding: .8rem 1rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  margin-top: .4rem;
}

/* -----------------------
   Footer
   ----------------------- */
.site-footer{
  border-top: 1px solid #f2e6ea;
  padding: 1.2rem 0;
  margin-top: 2.5rem;
  background: #fff;
  color: #666;
  text-align:center;
}

/* -----------------------
   kleine Animationen: Reveal
   ----------------------- */
.section-title, .hero-text, .galerie img, .price-card {
  opacity: 0;
  transform: translateY(18px);
  transition: all .6s cubic-bezier(.2,.9,.2,1);
}
.section-title.visible, .hero-text.visible, .galerie img.visible, .price-card.visible {
  opacity: 1;
  transform: none;
}
