:root {
    /* Die Hauptfarben (Hintergrund & große Flächen) */
    --hair-bg-dark: #141414;      /* Ein sehr tiefes, edles Anthrazit-Schwarz */
    --hair-bg-light: #fbf9f6;     /* Ein ultra-cleaner, leicht warmer Cremeweiß-Ton */
    
    /* Der Akzent (Für Buttons, Rahmen, Highlights) */
    --hair-accent-gold: #c5a880;  /* Ein mattes, modernes Champagner-Gold */
    
    /* Die Textfarben */
    --hair-text-main: #1f1f1f;    /* Fast Schwarz für perfekten Kontrast */
    --hair-text-muted: #6e6e6e;   /* Ein dezentes Grau für Beschreibungen */
    
    /* Für Schriften */
    --hair-font-headline: 'Playfair Display', serif; 
    --hair-font-body: 'Outfit', sans-serif;         
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: var(--hair-font-body);
    background-color: var(--hair-bg-dark);
    overflow-x: hidden; /* Verhindert seitliches Scrollen am Handy */
}

section, h1, h2, h3 {
    scroll-margin-top: 70px;
}

/* --- NAVBAR STYLING (RESPONSIVE) --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    box-sizing: border-box;
    background-color: rgba(20, 20, 20, 0.85); /* Etwas dunkler für bessere Lesbarkeit beim Scrollen */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(197, 168, 128, 0.15); 
}

.logo a {
    font-family: var(--hair-font-headline), serif;
    font-size: 2rem; /* Minimal kompakter für Mobilgeräte */
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: var(--hair-bg-light);
}

.navbar ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar ul li a {
    text-decoration: none;
    font-size: 1.2rem; 
    color: var(--hair-accent-gold);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.navbar ul li a:hover {
    color: var(--hair-bg-light);
    text-shadow: 0 0 10px rgba(251, 249, 246, 0.3);
}

/* --- HERO STYLING --- */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px); 
    background: linear-gradient(rgba(20, 20, 20, 0.7), rgba(20, 20, 20, 0.7)), url('hero.jpg') no-repeat center center/cover;
    color: var(--hair-bg-light);
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.hero-content h1 {
    font-family: var(--hair-font-headline), serif;
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--hair-text-muted);
}

.hero-content .btn {
    display: inline-block;
    background-color: var(--hair-accent-gold);
    color: var(--hair-bg-dark);
    padding: 12px 28px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-content .btn:hover {
    background-color: var(--hair-bg-light);
    color: var(--hair-text-main);
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.5);
}

/* --- ABOUT STYLING --- */
.about {
    color: var(--hair-bg-light);
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 0;
}

.about-content h2 {
    font-family: var(--hair-font-headline), serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.about-content h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--hair-accent-gold);
    margin: 15px auto 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--hair-text-muted);
    text-align: center;
}

/* Kompakte, zentrierte Bilder-Galerie */
.about-gallery {
    display: flex;
    justify-content: center;
    gap: 30px; 
    max-width: 650px; 
    margin: 40px auto 0 auto;
    padding: 0 15px;
}

.gallery-item {
    flex: 1;
    max-width: 260px; /* Schön kompakt */
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.gallery-item img {
    width: 100%;
    height: 180px; /* Elegant geschrumpft */
    object-fit: cover; 
    border-radius: 8px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover img {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(197, 168, 128, 0.25);
}

.gallery-item h3 {
    margin-top: 12px;
    font-family: var(--hair-font-body);
    font-size: 1.1rem;
    color: var(--hair-bg-light);
    font-weight: 500;
}

/* --- SERVICES STYLING --- */
.services {
    background-color: var(--hair-bg-light);
    color: var(--hair-text-main);
    padding: 60px 0;
}

.services h2 {
    font-family: var(--hair-font-headline), serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.services h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--hair-accent-gold);
    margin: 15px auto 0 auto;
}

/* Responsive Grid für die Service-Boxen */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Automatisches Nebeneinanderstellen */
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto 0 auto;
    padding: 0 20px;
}

.service-item {
    background-color: #ffffff; /* Reines Weiß für die Boxen */
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    font-family: var(--hair-font-headline), serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--hair-text-main);
}

.service-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--hair-text-muted);
}

/* --- CONTACT STYLING --- */
.contact {
    background-color: var(--hair-bg-dark);
    color: var(--hair-bg-light);
    padding: 60px 0;
}

.contact h2 {
    font-family: var(--hair-font-headline), serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.contact h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--hair-accent-gold);
    margin: 15px auto 0 auto;
}

.contact p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--hair-text-muted);
    text-align: center;
    padding: 0 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 500px;
    margin: 30px auto 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    font-size: 1rem;
    background-color: #1c1c1c;
    color: var(--hair-bg-light);
    font-family: var(--hair-font-body);
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--hair-accent-gold);
    outline: none;
}

.contact-form button {
    background-color: var(--hair-accent-gold);
    color: var(--hair-bg-dark);
    padding: 12px 30px;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: var(--hair-bg-light);
    color: var(--hair-text-main);
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.5);
}

/* --- FOOTER STYLING --- */
footer {
    background-color: #0c0c0c;
    color: var(--hair-text-muted);
    text-align: center;
    padding: 30px 20px;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
    margin: 5px 0;
}

footer a {
    color: var(--hair-accent-gold);
    text-decoration: none;
}

/* --- MEDIA QUERIES (HANDY & TABLET ANPASSUNGEN) --- */

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
        gap: 10px;
    }

    .navbar ul {
        gap: 15px;
    }

    .logo .logo-text a {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .about-gallery {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .gallery-item {
        max-width: 280px; /* Perfekte Größe für mobile Screens */
    }
}