/* =========================================================================
   bbrows Beauty Studio – main.css
   Mobile-first. Magenta / Schwarz / Weiß + dezente Rosatöne.
   Poppins (Body/Display) + Dancing Script (Akzent).
   ========================================================================= */

:root {
	--magenta:       #E6007E;
	--magenta-dark:  #B80064;
	--magenta-soft:  #FF3DA0;
	--ink:           #1A1014;
	--ink-soft:      #5B5158;
	--white:         #FFFFFF;
	--rose-50:       #FDEAF4;
	--rose-100:      #FAD3E7;
	--rose-line:     #F3C4DE;

	--font-body:   "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--font-script: "Dancing Script", "Poppins", cursive;

	--radius:    18px;
	--radius-lg: 28px;
	--radius-sm: 12px;

	--shadow-sm: 0 4px 14px rgba(230, 0, 126, 0.08);
	--shadow:    0 10px 30px rgba(230, 0, 126, 0.12);
	--shadow-lg: 0 18px 50px rgba(26, 16, 20, 0.14);

	--container: 1140px;
	--gap: clamp(1rem, 3vw, 2rem);
}

/* ---------- Reset / Basis ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 17px;
	line-height: 1.65;
	color: var(--ink);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--magenta); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--magenta-dark); }

h1, h2, h3, h4 { font-family: var(--font-body); font-weight: 600; line-height: 1.2; color: var(--ink); margin: 0 0 .6em; }
h1 { font-size: clamp(2rem, 6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.narrow { max-width: 760px; }

.skip-link {
	position: absolute; left: -999px; top: 0;
	background: var(--ink); color: #fff; padding: .6rem 1rem; z-index: 1000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color:#fff; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
	font-weight: 600; font-size: 1rem; line-height: 1;
	padding: .95rem 1.7rem; border-radius: 999px; border: 2px solid transparent;
	cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
	text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: .6rem 1.1rem; font-size: .92rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--magenta); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--magenta-dark); color: #fff; box-shadow: var(--shadow-lg); }

.btn-outline { background: transparent; color: var(--magenta); border-color: var(--rose-line); }
.btn-outline:hover { background: var(--rose-50); color: var(--magenta-dark); border-color: var(--magenta); }

.btn-ghost { background: rgba(255,255,255,.7); color: var(--magenta-dark); border-color: var(--rose-line); }
.btn-ghost:hover { background: #fff; color: var(--magenta-dark); }

.btn-ghost-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost-dark:hover { background: rgba(255,255,255,.12); color: #fff; }

.btn-outline-wa { background: #fff; color: var(--magenta); border-color: var(--rose-line); }

/* ---------- Header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 200;
	background: rgba(255,255,255,.92);
	backdrop-filter: saturate(150%) blur(8px);
	border-bottom: 1px solid var(--rose-line);
}
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 72px; }
.brand { margin-right: auto; }
.brand-text { font-weight: 700; font-size: 1.5rem; color: var(--ink); letter-spacing: -.5px; }
.brand-dot { color: var(--magenta); }
.custom-logo { max-height: 48px; width: auto; }

.main-nav .menu { list-style: none; display: flex; gap: 1.4rem; margin: 0; padding: 0; }
.main-nav .menu a { color: var(--ink); font-weight: 500; font-size: .98rem; padding: .4rem 0; position: relative; }
.main-nav .menu a::after {
	content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
	background: var(--magenta); transition: width .25s ease;
}
.main-nav .menu a:hover::after,
.main-nav .menu .current-menu-item > a::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: .85rem; }
.ig-link { color: var(--ink); display: inline-flex; }
.ig-link:hover { color: var(--magenta); }

/* Sprachumschalter */
.lang-switch { position: relative; }
.lang-toggle { background: none; border: 1px solid var(--rose-line); border-radius: 999px; padding: .3rem .7rem; font: inherit; font-size: .85rem; font-weight: 600; color: var(--ink); cursor: pointer; }
.lang-list { list-style: none; margin: 0; padding: .35rem; position: absolute; right: 0; top: 120%; background: #fff; border: 1px solid var(--rose-line); border-radius: 12px; box-shadow: var(--shadow); display: none; min-width: 70px; }
.lang-list.open { display: block; }
.lang-list a { display: block; padding: .35rem .6rem; border-radius: 8px; color: var(--ink); font-weight: 500; font-size: .9rem; }
.lang-list a:hover { background: var(--rose-50); color: var(--magenta); }

.header-cta { display: none; }

/* Burger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
	position: relative; overflow: hidden;
	background:
		radial-gradient(120% 90% at 80% -10%, var(--rose-100) 0%, rgba(250,211,231,0) 55%),
		linear-gradient(180deg, var(--rose-50) 0%, #fff 100%);
	padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5.5rem);
	text-align: center;
}
.hero-decor {
	position: absolute; right: -3%; top: 6%; font-size: clamp(8rem, 28vw, 22rem);
	color: var(--rose-100); line-height: 1; pointer-events: none; z-index: 0; opacity: .8;
}
.hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.hero-script {
	font-family: var(--font-script); font-size: clamp(2.2rem, 8vw, 4rem);
	color: var(--magenta); margin: 0 0 .1em; line-height: 1;
}
.hero-title { margin: 0 0 .5rem; }
.hero-sub { font-size: clamp(1.05rem, 2.5vw, 1.35rem); color: var(--ink-soft); max-width: 600px; margin: 0 auto 1.8rem; }
.hero-buttons { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; }
.hero-location { margin-top: 1.6rem; font-size: .95rem; color: var(--ink-soft); }

/* ---------- Sections allgemein ---------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 2.5rem; }
.section-lead { font-size: 1.1rem; color: var(--ink-soft); }
.eyebrow {
	display: inline-block; text-transform: uppercase; letter-spacing: .18em;
	font-size: .78rem; font-weight: 600; color: var(--magenta); margin-bottom: .7rem;
}
.section-actions { text-align: center; margin-top: 2.5rem; }

/* ---------- Leistungen Grid ---------- */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.service-card {
	background: #fff; border: 1px solid var(--rose-line); border-radius: var(--radius-lg);
	padding: 1.8rem 1.5rem; text-align: center; box-shadow: var(--shadow-sm);
	transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--magenta-soft); }
.service-icon {
	width: 60px; height: 60px; margin: 0 auto 1rem; display: grid; place-items: center;
	font-size: 1.6rem; color: var(--magenta); background: var(--rose-50); border-radius: 50%;
}
.service-card h3 { margin-bottom: .4rem; }
.service-card p { color: var(--ink-soft); margin: 0; font-size: .98rem; }

/* ---------- Leistungen Detailliste ---------- */
.services-list { display: flex; flex-direction: column; gap: 1rem; max-width: 880px; margin: 0 auto; }
.service-row {
	display: grid; grid-template-columns: auto 1fr; gap: 1rem 1.3rem; align-items: center;
	background: #fff; border: 1px solid var(--rose-line); border-radius: var(--radius);
	padding: 1.4rem 1.5rem; box-shadow: var(--shadow-sm); transition: box-shadow .25s ease, transform .2s ease;
}
.service-row:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.service-row-icon { width: 52px; height: 52px; display: grid; place-items: center; font-size: 1.4rem; color: var(--magenta); background: var(--rose-50); border-radius: 50%; }
.service-row-body h2 { font-size: 1.2rem; margin: 0 0 .25rem; }
.service-row-body p { margin: 0; color: var(--ink-soft); font-size: .97rem; }
.service-row-cta { grid-column: 1 / -1; }

/* ---------- Vorteile / Botschaften ---------- */
.section-benefits { background: var(--ink); color: #fff; }
.section-benefits .benefits-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.benefit { display: flex; gap: .8rem; align-items: flex-start; }
.benefit p { margin: 0; color: #fff; font-size: 1.05rem; }
.benefit-mark { color: var(--magenta-soft); font-size: 1.3rem; line-height: 1.3; flex: none; }

/* ---------- Termin-CTA ---------- */
.section-cta { background: linear-gradient(135deg, var(--rose-50), var(--rose-100)); }
.cta-box { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-box .hero-buttons { margin-top: 1.5rem; }

/* ---------- Über ---------- */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.about-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); object-fit: cover; }
.about-img.placeholder { aspect-ratio: 4/5; display: grid; place-items: center; text-align: center; color: var(--ink-soft); background: var(--rose-50); border: 1px dashed var(--rose-line); }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.contact-list { list-style: none; margin: 1rem 0 1.5rem; padding: 0; }
.contact-list li { padding: .35rem 0; color: var(--ink-soft); }
.contact-list a { color: var(--ink); }
.contact-list a:hover { color: var(--magenta); }

.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--rose-line); box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 280px; border: 0; display: block; }

.contact-form-wrap {
	background: #fff; border: 1px solid var(--rose-line); border-radius: var(--radius-lg);
	padding: clamp(1.4rem, 4vw, 2.2rem); box-shadow: var(--shadow);
}
.contact-form .field { margin-bottom: 1rem; }
.contact-form label { display: block; font-weight: 500; font-size: .92rem; margin-bottom: .35rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
	padding: .8rem .95rem; border: 1px solid var(--rose-line); border-radius: var(--radius-sm);
	background: #fff; transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	outline: none; border-color: var(--magenta); box-shadow: 0 0 0 3px rgba(230,0,126,.14);
}
.contact-form textarea { resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 0 1rem; }
.field-consent label { display: flex; gap: .55rem; align-items: flex-start; font-weight: 400; font-size: .9rem; color: var(--ink-soft); }
.field-consent input { width: auto; margin-top: .25rem; flex: none; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { padding: .9rem 1.1rem; border-radius: var(--radius-sm); margin-bottom: 1.2rem; font-size: .95rem; }
.form-ok { background: #e9f9ef; color: #1a7a43; border: 1px solid #b6e6c8; }
.form-error { background: #fdecec; color: #b3261e; border: 1px solid #f3c0bd; }

/* ---------- Standard-Seiten ---------- */
.page-default .page-content { font-size: 1.05rem; }
.page-content h3 { margin-top: 1.6rem; }
.page-content ul { padding-left: 1.2rem; }
.page-content li { margin-bottom: .4rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #d8cdd4; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; padding: clamp(2.5rem,6vw,4rem) 1.25rem 2rem; }
.footer-brand { font-size: 1.5rem; font-weight: 700; color: #fff; }
.footer-claim { color: var(--magenta-soft); font-size: 1.3rem; margin: .3rem 0 .8rem; }
.footer-ig { color: #fff; font-weight: 500; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: .8rem; }
.footer-col p { margin: .25rem 0; color: #d8cdd4; }
.footer-col a { color: #d8cdd4; }
.footer-col a:hover { color: #fff; }
.footer-menu { list-style: none; margin: 0; padding: 0; }
.footer-menu li { margin-bottom: .4rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.2rem 0; font-size: .85rem; color: #a99ba3; }

/* ---------- WhatsApp Floating ---------- */
.wa-float {
	position: fixed; right: 18px; bottom: 18px; z-index: 300;
	width: 56px; height: 56px; border-radius: 50%;
	display: grid; place-items: center; color: #fff;
	background: var(--magenta); box-shadow: 0 8px 24px rgba(230,0,126,.4);
	transition: transform .2s ease, background .2s ease;
}
.wa-float:hover { transform: scale(1.07); background: var(--magenta-dark); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Sticky CTA (Mobil) ---------- */
.sticky-cta {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 250;
	display: none; gap: .6rem; padding: .7rem .9rem;
	background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
	border-top: 1px solid var(--rose-line); box-shadow: 0 -6px 20px rgba(26,16,20,.08);
}
.sticky-cta .btn { flex: 1; padding: .85rem 1rem; }

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (min-width: 600px) {
	.services-grid { grid-template-columns: repeat(2, 1fr); }
	.field-row { grid-template-columns: 1fr 1fr; }
	.service-row { grid-template-columns: auto 1fr auto; }
	.service-row-cta { grid-column: auto; }
	.benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 2.5rem; }
	.footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 900px) {
	.services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
	.about-grid { grid-template-columns: 1fr 1.1fr; gap: 3rem; }
	.contact-grid { grid-template-columns: 1fr 1.05fr; gap: 3rem; align-items: start; }
	.header-cta { display: inline-flex; }
}

/* Mobile-Navigation */
@media (max-width: 860px) {
	.nav-toggle { display: flex; }
	.header-cta { display: none; }
	.main-nav {
		position: fixed; inset: 72px 0 auto 0; background: #fff;
		border-bottom: 1px solid var(--rose-line); box-shadow: var(--shadow);
		max-height: 0; overflow: hidden; transition: max-height .3s ease;
	}
	.main-nav.open { max-height: 70vh; }
	.main-nav .menu { flex-direction: column; gap: 0; padding: .5rem 1.25rem 1rem; }
	.main-nav .menu li { border-bottom: 1px solid var(--rose-50); }
	.main-nav .menu a { display: block; padding: .9rem 0; }
	.main-nav .menu a::after { display: none; }
}

/* Sticky-CTA nur auf kleinen Screens; Platz nach unten schaffen */
@media (max-width: 720px) {
	.sticky-cta { display: flex; }
	body { padding-bottom: 78px; }
	.wa-float { bottom: 84px; }
}

/* ---------- Accessibility ---------- */
:focus-visible { outline: 3px solid var(--magenta); outline-offset: 2px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
	.reveal { opacity: 1; transform: none; }
}
