/* Open Sans lokal DSGVO-konform */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/open-sans-v40-latin-regular.woff2') format('woff2'),
       url('fonts/open-sans-v40-latin-regular.woff') format('woff');
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/open-sans-v40-latin-600.woff2') format('woff2'),
       url('fonts/open-sans-v40-latin-600.woff') format('woff');
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/open-sans-v40-latin-700.woff2') format('woff2'),
       url('fonts/open-sans-v40-latin-700.woff') format('woff');
}


:root {
--primary-red: #8e0a0d;
--warm-red: #8e0a0d;
--light-red: #F0A5A5;
--cream: #FDF8F5;
--warm-white: #FEFCFA;
--soft-gray: #F5F3F0;
--text-dark: #2C2C2C;
--text-warm: #5A4A4A;
--accent-gold: #D4AF37;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Open Sans', sans-serif;
line-height: 1.7;
color: var(--text-dark);
background: var(--warm-white);
}

/* Verhindere Scrollen wenn Menu offen ist */
body.menu-open {
overflow: hidden;
position: fixed;
width: 100%;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
font-family: 'Open Sans', sans-serif;
color: var(--primary-red);
}

h1 {
font-size: 3.2rem;
font-weight: 700;
line-height: 1.2;
color: #FFFFFF !important;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

h2 {
font-size: 2.8rem;
font-weight: 600;
margin-bottom: 15px;
}

h3 {
font-size: 1.8rem;
font-weight: 600;
margin-bottom: 12px;
}

/* Navigation - Liquid Design mit Logo Wechsel */
.navbar {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	border-bottom: 2px solid rgba(142, 10, 13, 0.1);
	transition: all 0.4s ease;
}

/* Navbar wird rot nach dem Hero */
.navbar.scrolled {
	background: rgba(142, 10, 13, 0.95);
	box-shadow: 0 12px 40px rgba(142, 10, 13, 0.4);
	border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 85px;
}

.logo img {
	height: 65px;
	width: auto;
	filter: none;
	transition: all 0.4s ease;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 35px;
}

.nav-menu a {
	color: #333333;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.05rem;
	transition: all 0.3s ease;
	position: relative;
	padding: 5px 0;
}

.nav-menu a:hover {
	color: var(--primary-red);
	transform: translateY(-2px);
}

.nav-menu a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 0;
	background: var(--primary-red);
	transition: width 0.3s ease;
}

.nav-menu a:hover::after {
	width: 100%;
}

/* Navbar scrolled - text wird weiß */
.navbar.scrolled .nav-menu a {
	color: white;
}

.navbar.scrolled .nav-menu a:hover {
	color: var(--cream);
	transform: translateY(-2px);
}

.navbar.scrolled .nav-menu a::after {
	background: white;
}

/* Für Seiten ohne Hero (Impressum, Datenschutz) - Navbar immer rot */
body.no-hero .navbar {
	background: rgba(142, 10, 13, 0.95) !important;
	box-shadow: 0 12px 40px rgba(142, 10, 13, 0.4);
}

body.no-hero .navbar .nav-menu a {
	color: white !important;
}

body.no-hero .navbar .nav-menu a:hover {
	color: var(--cream) !important;
}

body.no-hero .navbar .hamburger span {
	background: white !important;
}


/* Mobile Navigation */
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 8px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: #333333;
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
	opacity: 1;
}

.navbar.scrolled .hamburger span {
	background: white;
}

.hamburger:hover {
	background: rgba(255, 255, 255, 0.2);
}

.hamburger.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
background: linear-gradient(135deg, var(--primary-red) 0%, var(--warm-red) 50%, var(--primary-red) 100%);
color: white;
padding: 130px 0 80px;
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,');
pointer-events: none;
}

.hero-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
position: relative;
z-index: 2;
}

.hero-subtitle {
font-family: 'Open Sans', sans-serif;
font-size: 1.5rem;
margin-bottom: 20px;
opacity: 0.95;
font-weight: 600;
color: var(--cream);
}

.hero-description {
font-size: 1.15rem;
line-height: 1.8;
margin-bottom: 35px;
opacity: 0.9;
}

.hero-buttons {
display: flex;
gap: 20px;
margin-bottom: 40px;
}

.btn {
padding: 18px 35px;
text-decoration: none;
border-radius: 50px;
font-weight: 600;
font-size: 1.05rem;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 10px;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary {
background: white;
color: var(--primary-red);
}

.btn-primary:hover {
background: var(--cream);
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-secondary {
border: 2px solid white;
color: white;
background: rgba(255,255,255,0.1);
}

.btn-secondary:hover {
background: white;
color: var(--primary-red);
transform: translateY(-3px);
}

.btn-icon {
font-size: 1.2rem;
}

.hero-trust {
display: flex;
gap: 25px;
}

.trust-item {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.95rem;
opacity: 0.9;
}

.trust-icon {
font-size: 1.3rem;
}

/* Hero Visual */
.salon-atmosphere {
position: relative;
height: 400px;
display: flex;
align-items: center;
justify-content: center;
}

.atmosphere-circle {
position: absolute;
width: 80px;
height: 80px;
background: rgba(255,255,255,0.15);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
backdrop-filter: blur(10px);
/* animation: float 6s ease-in-out infinite; */
}

.circle-1 { top: 10%; left: 20%; animation-delay: 0s; }
.circle-2 { top: 20%; right: 10%; animation-delay: 2s; }
.circle-3 { bottom: 20%; left: 10%; animation-delay: 4s; }
.circle-4 { bottom: 10%; right: 20%; animation-delay: 1s; }

@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}

.main-visual {
background: rgba(255,255,255,0.2);
padding: 40px 30px;
border-radius: 20px;
text-align: center;
backdrop-filter: blur(15px);
border: 1px solid rgba(255,255,255,0.3);
}

.main-visual h3 {
color: white;
margin-bottom: 15px;
font-size: 1.5rem;
}

.main-visual p {
opacity: 0.9;
font-size: 1.05rem;
}

/* Section Headers */
.section-header {
text-align: center;
margin-bottom: 60px;
}

.section-header p {
font-size: 1.15rem;
color: var(--text-warm);
margin-top: 10px;
}

/* Services Section */
.services {
padding: 100px 0;
background: var(--soft-gray);
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 35px;
}

.service-card {
background: white;
padding: 40px 30px;
border-radius: 20px;
text-align: center;
box-shadow: 0 8px 30px rgba(196, 30, 58, 0.1);
transition: all 0.3s ease;
border: 2px solid transparent;
position: relative;
overflow: hidden;
}

.service-card::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(196, 30, 58, 0.05), transparent);
transition: left 0.5s ease;
}

.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(196, 30, 58, 0.2);
border-color: var(--light-red);
}

.service-card:hover::before {
left: 100%;
}

.service-icon {
font-size: 3.5rem;
margin-bottom: 25px;
display: block;
}

.service-card h3 {
margin-bottom: 20px;
font-size: 1.6rem;
}

.service-card p {
color: var(--text-warm);
margin-bottom: 25px;
line-height: 1.7;
}

.service-details {
display: flex;
flex-direction: column;
gap: 8px;
}

.service-details span {
font-size: 0.9rem;
color: var(--primary-red);
font-weight: 500;
}

/* Team Section */
.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team {
padding: 100px 0;
background: var(--cream);
}

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 40px;
max-width: 1200px;
margin: 0 auto;
}

.team-member {
background: white;
padding: 40px;
border-radius: 25px;
box-shadow: 0 10px 35px rgba(196, 30, 58, 0.1);
text-align: center;
position: relative;
border: 3px solid var(--light-red);
}

.team-member.coming-soon-member {
border: 3px dashed var(--light-red);
background: rgba(255, 255, 255, 0.7);
}

.member-photo {
position: relative;
margin-bottom: 30px;
}

.photo-placeholder {
width: 150px;
height: 150px;
margin: 0 auto;
border-radius: 50%;
background: linear-gradient(135deg, var(--primary-red), var(--warm-red));
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
border: 4px solid white;
}

.coming-soon-placeholder {
background: linear-gradient(135deg, #ccc, #999);
opacity: 0.7;
}

.member-initial {
font-size: 4rem;
color: white;
font-weight: bold;
font-family: 'Dancing Script', cursive;
}

.member-role {
color: var(--primary-red);
font-weight: 600;
font-size: 1.1rem;
margin-bottom: 20px;
}

.member-story {
font-style: italic;
color: var(--text-warm);
line-height: 1.8;
margin-bottom: 25px;
font-size: 1.05rem;
}

.member-specialties {
display: flex;
justify-content: center;
gap: 15px;
flex-wrap: wrap;
}

.member-specialties span {
background: var(--light-red);
color: var(--primary-red);
padding: 8px 15px;
border-radius: 20px;
font-size: 0.9rem;
font-weight: 500;
}

/* Gallery Section */
/* Der Salon Section */
.salon-space {
	padding: 100px 0;
	background: var(--warm-white);
}

.salon-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 50px;
}

.salon-photo {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 10px 35px rgba(196, 30, 58, 0.15);
	aspect-ratio: 4/3;
}

.salon-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.salon-photo:hover img {
	transform: scale(1.1);
}

/* Bei der Arbeit Section */
.work-gallery {
	padding: 100px 0;
	background: var(--cream);
}

.work-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 50px;
}

.work-item {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 10px 35px rgba(196, 30, 58, 0.15);
	aspect-ratio: 4/3;
	border: 3px solid white;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 45px rgba(196, 30, 58, 0.25);
}

.work-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.work-item:hover img {
	transform: scale(1.08);
}

/* Responsive für Salon und Work Gallery */
@media (max-width: 768px) {
	.salon-grid,
	.work-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery {
padding: 100px 0;
background: var(--soft-gray);
}

.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.gallery-item {
position: relative;
}

.gallery-placeholder-item {
background: white;
padding: 40px 25px;
border-radius: 15px;
text-align: center;
box-shadow: 0 5px 20px rgba(196, 30, 58, 0.1);
border: 2px dashed var(--light-red);
min-height: 250px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.placeholder-icon {
font-size: 4rem;
margin-bottom: 20px;
opacity: 0.6;
color: var(--primary-red);
}

.gallery-placeholder-item p {
color: var(--primary-red);
font-weight: 600;
margin-bottom: 10px;
font-size: 1.2rem;
}

.gallery-placeholder-item small {
color: var(--text-warm);
font-style: italic;
font-size: 0.9rem;
}

/* Contact Section */
.contact {
padding: 100px 0;
background: var(--cream);
}

.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
margin-bottom: 60px;
}

.contact-card, .hours-card {
background: white;
padding: 35px;
border-radius: 20px;
box-shadow: 0 8px 30px rgba(196, 30, 58, 0.1);
border: 2px solid var(--light-red);
margin-bottom: 30px;
}

.contact-card h3, .hours-card h3 {
margin-bottom: 20px;
font-size: 1.4rem;
}

.contact-detail p {
margin-bottom: 8px;
color: var(--text-dark);
}

.contact-detail strong {
color: var(--primary-red);
}

.contact-detail small {
color: var(--text-warm);
font-style: italic;
}

.phone-number a {
color: var(--primary-red);
text-decoration: none;
font-size: 1.3rem;
font-weight: 600;
}

.phone-number a:hover {
text-decoration: underline;
}

.payment-methods {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.payment-method {
background: var(--light-red);
color: var(--primary-red);
padding: 10px 15px;
border-radius: 20px;
font-size: 0.95rem;
font-weight: 500;
}

/* Opening Hours */
.hours-grid {
display: flex;
flex-direction: column;
gap: 12px;
}

.hours-day {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 0;
border-bottom: 1px solid var(--light-red);
position: relative;
}

.hours-day:last-child {
border-bottom: none;
}

.hours-day.weekend {
background: rgba(212, 175, 55, 0.1);
padding: 15px 10px;
border-radius: 10px;
border: none;
}

.hours-day.closed {
opacity: 0.7;
}

.day {
font-weight: 600;
color: var(--text-dark);
}

.time {
color: var(--primary-red);
font-weight: 600;
}

/* Map Section */
.map-section {
text-align: center;
}

.map-section h3 {
margin-bottom: 25px;
font-size: 1.8rem;
}

.map-container {
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 35px rgba(196, 30, 58, 0.2);
border: 4px solid var(--light-red);
}

/* Footer */
.footer {
background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
color: white;
padding: 50px 0;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
gap: 40px;
}

.footer-logo img {
height: 60px;
filter: brightness(0) invert(1);
}

.footer-message {
margin-top: 15px;
font-style: italic;
opacity: 0.9;
line-height: 1.6;
}

.footer-info {
text-align: right;
}

.footer-info p {
margin-bottom: 5px;
opacity: 0.8;
}

.footer-info a {
color: var(--light-red);
text-decoration: none;
}

.footer-info a:hover {
text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background: white !important;
        width: 100%;
        height: calc(100vh - 85px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
        padding: 20px 0;
        border-top: 2px solid var(--light-red);
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 8px 0;
        flex-shrink: 0;
    }

    .nav-menu a {
        color: var(--text-dark) !important;
        font-size: 1.1rem;
        padding: 15px 20px;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
        margin: 0 20px;
    }

    .nav-menu a:hover {
        background: var(--light-red);
        color: var(--primary-red) !important;
        transform: translateY(-1px);
    }

    .nav-menu a::after {
        background: var(--primary-red);
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero h1 {
        color: #FFFFFF !important;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-info {
        text-align: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .services, .team, .gallery, .contact {
        padding: 70px 0;
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 2.2rem; }
    
    .section-header {
        margin-bottom: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        padding: 15px 0;
    }
    
    .nav-menu li {
        margin: 5px 0;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 12px 15px;
    }

    .hero h1 {
        color: #FFFFFF !important;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 15px 25px;
        font-size: 0.95rem;
    }

    .service-card, .contact-card, .hours-card {
        padding: 25px 20px;
    }

    .team-member {
        padding: 30px 25px;
    }

    .photo-placeholder {
        width: 120px;
        height: 120px;
    }

    .member-initial {
        font-size: 3rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}