/* ==========================================================================
   HairLiz Theme — main stylesheet (OnePager)
   ========================================================================== */

/* -------------------------------------------------------------- */
/* 1. Variables                                                   */
/* -------------------------------------------------------------- */
:root {
	/* Original peach (gemessen aus Wix Original ~#E0A987) */
	--hl-peach:        #e0a987;
	--hl-peach-soft:   #f4dbc6;
	--hl-peach-pale:   #fbeadd;
	--hl-cream:        #faf5ef;
	--hl-text:         #1a1a1a;
	--hl-text-soft:    #3a3a3a;
	--hl-text-muted:   #6a6a6a;
	--hl-line:         #d7c9bc;
	--hl-bg:           #ffffff;

	/* Type — match original closely: serif italic for headings, sans for body */
	--hl-serif:        "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--hl-sans:         "Raleway", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

	--hl-container:    1180px;
	--hl-radius:       0;
	--hl-shadow:       0 8px 30px rgba(0, 0, 0, 0.06);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--hl-sans);
	font-size: 16px;
	line-height: 1.6;
	color: var(--hl-text);
	background: var(--hl-bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--hl-text); text-decoration: none; transition: opacity 0.2s; }
a:hover, a:focus { opacity: 0.75; }
p { margin: 0 0 1em; }

.hl-skip { position: absolute; left: -9999px; top: 0; background: #000; color: #fff; padding: 0.5rem 1rem; z-index: 999; }
.hl-skip:focus { left: 1rem; top: 1rem; }

.hl-container {
	max-width: var(--hl-container);
	margin: 0 auto;
	padding: 0 1.25rem;
}
.hl-main { min-height: 30vh; }

/* -------------------------------------------------------------- */
/* 2. Typography                                                  */
/* -------------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--hl-serif); font-weight: 400; color: var(--hl-text); margin: 0 0 0.5em; line-height: 1.2; }
.hl-section-title {
	font-family: var(--hl-serif);
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	font-style: italic;
	font-weight: 400;
	margin: 0 0 0.5em;
}
.hl-section-subtitle {
	font-family: var(--hl-serif);
	font-size: 1.5rem;
	margin: 0 0 1rem;
}
.hl-section-intro { color: var(--hl-text-soft); max-width: 60ch; margin: 0 auto 2rem; text-align: center; }
.hl-prose p { margin: 0 0 1em; }
.hl-prose strong { font-weight: 600; }
.hl-prose a { text-decoration: underline; }

/* -------------------------------------------------------------- */
/* 3. Header                                                       */
/* -------------------------------------------------------------- */
.hl-site-header {
	position: sticky;
	top: 0;
	background: #fff;
	border-bottom: 1px solid var(--hl-line);
	z-index: 100;
}
.hl-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 1.25rem;
	min-height: 80px;
}
.hl-brand { display: flex; flex-direction: column; align-items: flex-start; }
.hl-brand .custom-logo-link img,
.hl-brand img.custom-logo {
	max-height: 75px;
	width: auto;
}
.hl-brand-subtitle {
	font-family: var(--hl-sans);
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	color: var(--hl-text);
	margin-top: 0.1rem;
}

.hl-menu-toggle {
	display: none;
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 0.5rem;
	color: var(--hl-text);
}
.hl-menu-toggle-icon-close { display: none; }
.hl-menu-toggle[aria-expanded="true"] .hl-menu-toggle-icon-open { display: none; }
.hl-menu-toggle[aria-expanded="true"] .hl-menu-toggle-icon-close { display: inline-flex; }

.hl-primary-nav ul,
.hl-primary-nav .menu,
.hl-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 2.5rem;
}
.hl-primary-nav a {
	font-family: var(--hl-sans);
	font-size: 0.95rem;
	font-weight: 400;
	color: var(--hl-text);
	padding: 0.4rem 0;
}
.hl-primary-nav .current-menu-item > a,
.hl-primary-nav .current_page_item > a {
	border-bottom: 1px solid var(--hl-text);
}
.hl-primary-nav .menu-item-has-children { position: relative; }
.hl-primary-nav .sub-menu {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	background: #fff;
	border: 1px solid var(--hl-line);
	box-shadow: var(--hl-shadow);
	min-width: 160px;
	padding: 0.5rem 0;
	flex-direction: column;
	gap: 0;
	z-index: 10;
}
.hl-primary-nav .sub-menu li { width: 100%; }
.hl-primary-nav .sub-menu a { display: block; padding: 0.5rem 1rem; }
.hl-primary-nav .menu-item-has-children:hover > .sub-menu,
.hl-primary-nav .menu-item-has-children:focus-within > .sub-menu { display: flex; }

@media (max-width: 860px) {
	.hl-menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
	.hl-primary-nav {
		position: fixed;
		inset: 80px 0 0 0;
		background: var(--hl-peach);
		transform: translateX(100%);
		transition: transform 0.3s ease;
		overflow-y: auto;
		z-index: 99;
	}
	.hl-primary-nav.is-open { transform: translateX(0); }
	.hl-primary-nav ul,
	.hl-primary-nav .menu,
	.hl-nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 2rem 1.5rem;
	}
	.hl-primary-nav a {
		padding: 1rem;
		font-size: 1.5rem;
		font-family: var(--hl-serif);
		text-align: center;
		border-bottom: 1px solid rgba(0,0,0,0.1);
	}
	.hl-primary-nav .sub-menu {
		position: static;
		display: none;
		background: transparent;
		border: 0;
		box-shadow: none;
		padding: 0 0 0.5rem;
	}
	.hl-primary-nav .menu-item-has-children.is-open > .sub-menu { display: flex; }
}

/* -------------------------------------------------------------- */
/* 4. Floating social icons (vertical, fixed right)               */
/* -------------------------------------------------------------- */
.hl-floating-socials {
	position: fixed;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	z-index: 50;
}
.hl-floating-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	color: var(--hl-text);
	background: transparent;
}
.hl-floating-socials a:hover { opacity: 1; transform: scale(1.1); transition: transform 0.2s; }
@media (max-width: 860px) { .hl-floating-socials { display: none; } }

/* -------------------------------------------------------------- */
/* 5. Buttons                                                      */
/* -------------------------------------------------------------- */
.hl-button {
	display: inline-block;
	padding: 0.7rem 1.5rem;
	font-family: var(--hl-sans);
	font-size: 0.95rem;
	font-weight: 400;
	letter-spacing: 0.06em;
	color: var(--hl-text);
	text-decoration: none;
	cursor: pointer;
	transition: background 0.25s, color 0.25s;
	border: 1.5px solid var(--hl-peach);
	background: #fff;
}
.hl-button:hover, .hl-button:focus {
	background: var(--hl-peach);
	color: #fff;
	opacity: 1;
}
.hl-button-frame {
	display: block;
	text-align: center;
	margin: 1.25rem 0;
	background: #fff;
	color: var(--hl-text);
	border: 1.5px solid var(--hl-peach);
}
.hl-button-primary { background: var(--hl-text); color: #fff; border-color: var(--hl-text); }
.hl-button-ghost   { background: transparent; }
.hl-button-small   { padding: 0.4rem 0.9rem; font-size: 0.85rem; }

/* -------------------------------------------------------------- */
/* 6. Section 1: Hero / Aktuelles                                 */
/* -------------------------------------------------------------- */
.hl-hero {
	background: var(--hl-peach);
	padding: 3rem 0 5rem;
	position: relative;
}
.hl-hero-inner {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 3rem;
	align-items: start;
	position: relative;
}
.hl-hero-photo {
	position: relative;
	margin-top: 2rem;
}
.hl-hero-photo img {
	width: 100%;
	height: auto;
	display: block;
	box-shadow: var(--hl-shadow);
}
.hl-hero-photo .hl-stripes--hero {
	position: absolute;
	right: -10%;
	bottom: -8%;
	width: 50%;
	height: 60%;
	z-index: 2;
}

.hl-hero-card {
	background: #fff;
	padding: 2rem 2.5rem;
	box-shadow: var(--hl-shadow);
	position: relative;
	z-index: 3;
}
.hl-card-title {
	font-family: var(--hl-serif);
	font-style: italic;
	font-size: clamp(1.7rem, 2.5vw, 2.2rem);
	margin: 0 0 1rem;
	font-weight: 400;
}
.hl-card-subtitle {
	font-family: var(--hl-sans);
	font-size: 1.1rem;
	font-weight: 600;
	margin: 1.5rem 0 0.75rem;
	color: var(--hl-text);
}
.hl-hero-middle { margin: 0.5rem 0; color: var(--hl-text-soft); }

@media (max-width: 800px) {
	.hl-hero {
		padding: 2rem 0 3rem;
	}
	.hl-hero-inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.hl-hero-photo { margin-top: 0; }
	.hl-hero-card { padding: 1.5rem; }
}

/* -------------------------------------------------------------- */
/* 7. Section 2: FOLGT MIR                                        */
/* -------------------------------------------------------------- */
.hl-insta {
	background: #fff;
	padding: 3rem 0;
	overflow: hidden;
}
.hl-insta-inner {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 2rem;
	align-items: center;
}
.hl-insta-text {
	display: flex;
	align-items: baseline;
	gap: 1rem;
	flex-wrap: wrap;
}
.hl-insta-label {
	font-family: var(--hl-sans);
	font-weight: 600;
	letter-spacing: 0.2em;
	font-size: 1rem;
	color: var(--hl-text);
}
.hl-insta-handle {
	font-family: var(--hl-sans);
	font-size: 1.2rem;
	color: var(--hl-text);
	text-decoration: underline;
	text-underline-offset: 4px;
}
.hl-insta-deco {
	position: relative;
	height: 240px;
}
.hl-insta-deco .hl-stripes--insta {
	position: absolute;
	inset: 0;
	background-color: var(--hl-peach-soft);
}
@media (max-width: 800px) {
	.hl-insta-inner { grid-template-columns: 1fr; }
	.hl-insta-deco { height: 120px; }
}

/* -------------------------------------------------------------- */
/* 8. Section 3: Quote                                            */
/* -------------------------------------------------------------- */
.hl-quote-section {
	background: var(--hl-peach-soft);
	padding: 4rem 0;
	overflow: hidden;
}
.hl-quote-inner {
	position: relative;
	max-width: 720px;
	margin: 0 auto;
	padding: 0 1.25rem;
}
.hl-quote {
	background: var(--hl-cream);
	padding: 2.5rem 2rem;
	margin: 0;
	text-align: center;
	box-shadow: var(--hl-shadow);
	position: relative;
	z-index: 2;
}
.hl-quote p {
	font-family: var(--hl-serif);
	font-style: italic;
	font-size: clamp(1.2rem, 2vw, 1.6rem);
	line-height: 1.5;
	color: var(--hl-text);
	margin: 0;
}
.hl-quote cite {
	display: block;
	font-style: normal;
	font-size: 0.95rem;
	margin-top: 1rem;
	color: var(--hl-text-muted);
}
.hl-stripes--quote-left,
.hl-stripes--quote-right {
	position: absolute;
	width: 30%;
	height: 100%;
	top: 0;
	z-index: 1;
	opacity: 0.5;
}
.hl-stripes--quote-left  { left: -10%; }
.hl-stripes--quote-right { right: -10%; }

/* -------------------------------------------------------------- */
/* 9. Section 4: Über uns                                         */
/* -------------------------------------------------------------- */
.hl-about {
	background: #fff;
	padding: 5rem 0 4rem;
	position: relative;
}
.hl-about-title {
	text-align: center;
	display: inline-block;
	position: relative;
}
.hl-about .hl-section-title {
	text-align: center;
	display: block;
	margin-bottom: 1rem;
	position: relative;
}
.hl-brush {
	position: absolute;
	width: 80px;
	display: inline-block;
}
.hl-brush svg { width: 100%; height: auto; }
.hl-brush-1 { right: -90px; top: 50%; transform: translateY(-50%); }

.hl-about-intro { text-align: center; max-width: 60ch; margin: 0 auto 3rem; color: var(--hl-text-soft); }

.hl-team { display: flex; flex-direction: column; gap: 4rem; position: relative; padding-bottom: 3rem; }
.hl-team-row {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 2rem;
	align-items: start;
}
.hl-team-photo { margin: 0; }
.hl-team-photo img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	display: block;
}
.hl-team-name {
	font-family: var(--hl-serif);
	font-style: italic;
	font-size: 1.5rem;
	margin: 0 0 0.5rem;
	font-weight: 400;
}
.hl-team-role {
	font-size: 0.9rem;
	color: var(--hl-text-muted);
	margin: 0 0 1rem;
	font-style: italic;
}
.hl-team-bio { font-size: 0.95rem; color: var(--hl-text-soft); }
.hl-team-bio p { margin: 0 0 1em; }

.hl-brush-2 {
	position: absolute;
	right: 5%;
	bottom: 0;
	width: 100px;
}

@media (max-width: 800px) {
	.hl-team-row { grid-template-columns: 1fr; }
	.hl-team-photo img { aspect-ratio: 1; max-width: 320px; margin: 0 auto; }
	.hl-team-row.is-reverse { /* same as normal on mobile */ }
	.hl-brush-1 { display: none; }
	.hl-brush-2 { display: none; }
}

/* -------------------------------------------------------------- */
/* 10. Section 5: Kontakt (Google Maps + Form)                    */
/* -------------------------------------------------------------- */
.hl-kontakt-section {
	background: var(--hl-cream);
	padding: 4rem 0;
}
.hl-kontakt-section .hl-section-title { text-align: center; }
.hl-kontakt-grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 2rem;
	margin-top: 2rem;
	align-items: start;
}
.hl-kontakt-info h3 { margin: 0 0 0.5rem; font-family: var(--hl-sans); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.hl-kontakt-info .hl-address { margin-bottom: 1rem; }
.hl-kontakt-contacts { margin: 1rem 0; display: flex; flex-direction: column; gap: 0.5rem; }

.hl-kontakt-map iframe,
.hl-kontakt-map > * {
	width: 100% !important;
	height: 400px;
	border: 0;
	display: block;
}
.hl-kontakt-map-placeholder {
	background: #fff;
	border: 1px dashed var(--hl-line);
	padding: 2rem;
	color: var(--hl-text-muted);
	font-style: italic;
	text-align: center;
	min-height: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hl-kontakt-form-wrap {
	max-width: 640px;
	margin: 3rem auto 0;
}
.hl-kontakt-form-wrap .hl-section-subtitle { text-align: center; }

@media (max-width: 800px) {
	.hl-kontakt-grid { grid-template-columns: 1fr; }
	.hl-kontakt-map iframe { height: 320px; }
}

/* -------------------------------------------------------------- */
/* 11. Footer                                                     */
/* -------------------------------------------------------------- */
.hl-site-footer {
	background: var(--hl-peach);
	color: var(--hl-text);
	padding: 3rem 0 0;
	margin-top: 0;
}
.hl-footer-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}
.hl-footer-col h3 {
	font-family: var(--hl-sans);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	margin: 0 0 1rem;
	color: var(--hl-text);
}
.hl-footer-contacts { display: flex; flex-direction: column; gap: 0.4rem; margin: 0.5rem 0 1rem; }
.hl-phone, .hl-email {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--hl-text);
}
.hl-address { font-style: normal; line-height: 1.7; margin: 0 0 0.5rem; }
.hl-socials {
	display: flex;
	gap: 0.6rem;
	margin: 0.5rem 0 0;
	padding: 0;
	list-style: none;
}
.hl-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--hl-text);
}
.hl-hours { margin: 0; }
.hl-hours-row {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 1rem;
	padding: 0.2rem 0;
}
.hl-hours-row.is-closed { color: var(--hl-text-soft); }
.hl-hours-row dt, .hl-hours-row dd { margin: 0; }
.hl-hours-note { font-size: 0.75rem; color: var(--hl-text-muted); padding: 0 0 0.3rem; }
.hl-hours-note dt { visibility: hidden; }

.hl-footer-bottom {
	margin-top: 2.5rem;
	padding: 1rem 0;
	border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.hl-footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	max-width: var(--hl-container);
	margin: 0 auto;
	padding: 0 1.25rem;
}
.hl-copyright { font-size: 0.85rem; color: var(--hl-text); }
.hl-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}
.hl-footer-menu a { font-size: 0.85rem; color: var(--hl-text); text-decoration: underline; }

@media (max-width: 700px) {
	.hl-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* -------------------------------------------------------------- */
/* 12. Diagonal stripes pattern                                   */
/* -------------------------------------------------------------- */
.hl-stripes {
	display: block;
	background-color: transparent;
	background-image: repeating-linear-gradient(
		-55deg,
		transparent 0,
		transparent 11px,
		var(--hl-text) 11px,
		var(--hl-text) 13px
	);
	pointer-events: none;
}

/* -------------------------------------------------------------- */
/* 13. Generic page templates (Galerie, Impressum etc.)           */
/* -------------------------------------------------------------- */
.hl-page { padding: 3rem 0 5rem; }
.hl-article-header { text-align: center; margin-bottom: 2rem; }
.hl-article-title { font-family: var(--hl-serif); font-style: italic; font-size: clamp(2rem, 3vw, 2.5rem); margin: 0; }

/* Gallery archive */
.hl-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 0.5rem;
	margin-top: 2rem;
}
.hl-gallery-item { margin: 0; }
.hl-gallery-item a { display: block; overflow: hidden; }
.hl-gallery-item img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	cursor: zoom-in;
	transition: transform 0.3s;
}
.hl-gallery-item a:hover img { transform: scale(1.05); opacity: 1; }

/* Gallery overview cards */
.hl-galerie-overview .hl-gallery-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1rem;
	margin-top: 2rem;
}
.hl-gallery-card {
	position: relative;
	aspect-ratio: 1;
	display: block;
	overflow: hidden;
	color: #fff;
}
.hl-gallery-card-img {
	position: absolute; inset: 0;
	background-size: cover;
	background-position: center;
	margin: 0;
	transition: transform 0.3s;
}
.hl-gallery-card:hover .hl-gallery-card-img { transform: scale(1.05); opacity: 1; }
.hl-gallery-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%); }
.hl-gallery-card-label {
	position: absolute;
	left: 0; right: 0; bottom: 1.5rem;
	z-index: 1;
	text-align: center;
	font-family: var(--hl-serif);
	font-style: italic;
	letter-spacing: 0.15em;
	margin: 0;
	color: #fff;
}

/* -------------------------------------------------------------- */
/* 14. Lightbox                                                    */
/* -------------------------------------------------------------- */
.hl-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.92);
	display: none;
	align-items: center;
	justify-content: center;
	touch-action: pan-y;
}
.hl-lightbox.is-open { display: flex; }
.hl-lightbox img {
	max-width: 92vw;
	max-height: 88vh;
	object-fit: contain;
	box-shadow: 0 0 60px rgba(0, 0, 0, 0.4);
}
.hl-lightbox button {
	position: absolute;
	background: transparent;
	border: 0;
	color: #fff;
	cursor: pointer;
	padding: 0.5rem 1rem;
	opacity: 0.85;
	transition: opacity 0.2s;
}
.hl-lightbox button:hover { opacity: 1; }
.hl-lightbox-close { top: 0.5rem; right: 0.5rem; font-size: 2.5rem; line-height: 1; }
.hl-lightbox-prev, .hl-lightbox-next { top: 50%; transform: translateY(-50%); font-size: 3rem; line-height: 1; }
.hl-lightbox-prev { left: 0.5rem; }
.hl-lightbox-next { right: 0.5rem; }
.hl-lightbox-counter {
	position: absolute;
	bottom: 1rem;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-size: 0.9rem;
	opacity: 0.7;
}
@media (max-width: 600px) {
	.hl-lightbox-prev, .hl-lightbox-next { font-size: 2.2rem; padding: 0.2rem 0.6rem; }
	.hl-lightbox-close { font-size: 2rem; }
}

/* -------------------------------------------------------------- */
/* 15. Contact form                                                */
/* -------------------------------------------------------------- */
.hl-contact-form .hl-field { margin-bottom: 1rem; }
.hl-contact-form label {
	display: block;
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	margin-bottom: 0.3rem;
	color: var(--hl-text-soft);
}
.hl-contact-form input,
.hl-contact-form textarea {
	width: 100%;
	padding: 0.75rem;
	font-family: var(--hl-sans);
	font-size: 1rem;
	border: 1px solid var(--hl-line);
	background: #fff;
	color: var(--hl-text);
}
.hl-contact-form input:focus,
.hl-contact-form textarea:focus { border-color: var(--hl-peach); outline: none; }
.hl-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.hl-form-status {
	margin-top: 1rem;
	padding: 0.75rem;
	display: none;
}
.hl-form-status.is-success { display: block; background: #d4edda; color: #155724; }
.hl-form-status.is-error   { display: block; background: #f8d7da; color: #721c24; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
