/* ==========================================
   VIVA LA HAIR - Stylesheet
   Farbschema: Gold, Creme, Beige & Weiß
   ========================================== */

/* CSS Variables */
:root {
    /* Dunkle Akzente - nur für Text */
    --dark: #3a302a;
    --dark-deep: #2c2420;
    --dark-soft: #4d4039;

    /* Helle Hauptfarben */
    --cream: #faf7f2;
    --cream-dark: #f0ebe3;
    --beige: #e8dfd3;
    --beige-dark: #d4c8b8;

    /* Akzent - Gold */
    --gold: #a88a5c;
    --gold-light: #b8976a;
    --gold-muted: #c4a87a;
    --white: #ffffff;
    --text-dark: #3a302a;
    --text-light: #7a6e65;

    /* Typography */
    --font-heading: 'Italiana', 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows - warm tinted */
    --shadow-sm: 0 2px 8px rgba(44, 36, 32, 0.06);
    --shadow-md: 0 4px 20px rgba(44, 36, 32, 0.10);
    --shadow-lg: 0 8px 40px rgba(44, 36, 32, 0.14);
}

/* ==========================================
   Reset & Base Styles
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--cream);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

/* ==========================================
   Typography
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

/* ==========================================
   Layout
   ========================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 20px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-muted), var(--gold-light));
    margin: 0 auto;
    border-radius: 2px;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary {
    background-color: var(--gold);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--dark);
    border: 2px solid var(--gold-muted);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background-color: var(--white);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

/* Anker-Sprünge: Sektion landet bündig unter der Navbar */
section[id] {
    scroll-margin-top: 56px;
}

.nav-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: color var(--transition-normal);
}

.navbar.scrolled .nav-logo {
    color: var(--dark);
}

.nav-menu {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    justify-content: center;      /* Navigation mittig (Option 2) */
    align-items: center;
    flex: 1;
    position: relative;
    padding-right: 150px;         /* Platz für rechts fixiertes "Studios ▾" */
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
    position: relative;
    padding: 5px 0;
    transition: color var(--transition-normal);
}

.navbar.scrolled .nav-link {
    color: var(--dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-light);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--dark);
    transition: all var(--transition-normal);
}

.navbar.scrolled .nav-toggle span {
    background-color: var(--dark);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(212, 175, 55, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 60%, rgba(201, 168, 108, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(184, 149, 47, 0.06) 0%, transparent 40%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a86c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 0 20px;
}

/* Gold decorative lines */
.hero-line {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
    margin: 0 auto;
}

/* Ornament waves */
.hero-ornament {
    width: 160px;
    margin: 0 auto;
    color: var(--gold-muted);
    opacity: 0.6;
    line-height: 0;
}

.hero-ornament-top {
    margin-bottom: 12px;
}

.hero-ornament-bottom {
    margin-top: 12px;
    margin-bottom: 30px;
}

.hero-ornament svg {
    width: 100%;
    height: auto;
}

.hero-title {
    color: var(--dark);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin: 15px 0;
    text-shadow: 0 2px 20px rgba(201, 168, 108, 0.25);
}

.hero-subtitle {
    color: var(--text-light);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 45px;
    font-style: italic;
}

.hero .btn-primary {
    background-color: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 25px rgba(184, 149, 47, 0.3);
}

.hero .btn-primary:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(184, 149, 47, 0.4);
}

/* Mittlerer Hero-Button: Gold-Abstufung zwischen Primary und Outline */
.hero .btn-primary-soft {
    background-color: var(--gold-muted);
    color: var(--white);
    box-shadow: 0 4px 25px rgba(196, 168, 122, 0.28);
}

.hero .btn-primary-soft:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(196, 168, 122, 0.38);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeIn 1.5s ease 1s both;
}

/* Mouse icon - visible on desktop */
.scroll-mouse {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--beige-dark);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--gold-muted);
    border-radius: 2px;
    animation: scroll-wheel 2s ease-in-out infinite;
}

/* Touch indicator - same capsule shape as mouse but smaller, with dot sliding down */
.scroll-touch {
    display: none;
    width: 24px;
    height: 44px;
    border: 2px solid var(--beige-dark);
    border-radius: 12px;
    position: relative;
}

.scroll-touch span {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--gold-muted);
    border-radius: 50%;
    animation: touch-scroll 2s ease-in-out infinite;
}

/* Touch devices: show touch indicator, hide mouse */
@media (hover: none) {
    .scroll-mouse {
        display: none;
    }

    .scroll-touch {
        display: block;
    }
}

@keyframes scroll-wheel {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

@keyframes touch-scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(20px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ==========================================
   About Section
   ========================================== */
.about {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-height: 500px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-slider-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-height: 500px;
}

.about-slider {
    position: relative;
    width: 100%;
    height: 500px;
    background-color: var(--dark);
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-slide.active {
    opacity: 1;
}

.about-slide img,
.about-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(58, 48, 42, 0.5);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    backdrop-filter: blur(4px);
}

.about-slider-nav:hover {
    background: rgba(168, 138, 92, 0.8);
}

.about-slider-prev {
    left: 12px;
}

.about-slider-next {
    right: 12px;
}

.about-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.about-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.about-dot.active {
    background: var(--gold);
    width: 20px;
    border-radius: 4px;
}

.about-slider-wrapper.single-slide .about-slider-nav,
.about-slider-wrapper.single-slide .about-slider-dots {
    display: none;
}

@media (max-width: 768px) {
    .about-slider,
    .about-slider-wrapper {
        max-height: 500px;
        height: 500px;
    }
}

.about-right p {
    color: var(--text-light);
}

.about-right p:last-child {
    margin-bottom: 0;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature {
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-template-areas:
        "icon title"
        "icon desc";
    column-gap: 20px;
    row-gap: 5px;
    align-items: start;
}

.feature .feature-icon { grid-area: icon; }
.feature h3 { grid-area: title; }
.feature p { grid-area: desc; }

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cream);
    border-radius: 50%;
    color: var(--gold);
    transition: all var(--transition-normal);
}

@media (hover: hover) {
    .feature:hover .feature-icon {
        background-color: var(--gold);
        color: var(--white);
        transform: scale(1.1);
    }
}

.feature h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.feature p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==========================================
   Gallery Section
   ========================================== */
.gallery {
    background-color: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 400px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 18px;
    background: linear-gradient(transparent, rgba(58, 48, 42, 0.85));
    opacity: 1;
    transition: padding var(--transition-normal);
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    padding-bottom: 22px;
}

.gallery-overlay span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ==========================================
   Services Section
   ========================================== */
.services {
    background-color: var(--cream);
}

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

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
    border-radius: 50%;
    color: var(--gold);
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
    color: var(--gold);
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ==========================================
   Prices Section
   ========================================== */
.prices {
    background-color: var(--white);
}

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

.price-category {
    background-color: var(--cream);
    padding: 40px;
    border-radius: 8px;
    transition: all var(--transition-normal);
}

.price-category:hover {
    box-shadow: var(--shadow-md);
}

.price-category h3 {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--beige);
}

/* Optionaler Untertitel + Beschreibung je Preis-Block (im Kalender pflegbar) */
.price-category-sub {
    text-align: center;
    margin-top: -20px;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.price-category-desc {
    text-align: center;
    margin-top: -14px;
    margin-bottom: 22px;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.65;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--beige-dark);
    font-size: 0.95rem;
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list li span:first-child {
    color: var(--text-dark);
}

.price-list li span:last-child {
    font-weight: 700;
    color: var(--gold);
}

.prices-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.price-list-sml li {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 0;
}

.price-list-sml li span:first-child {
    font-size: 0.9rem;
    padding-right: 10px;
}

.price-list-sml li span:not(:first-child) {
    text-align: right;
    font-weight: 700;
    color: var(--gold);
    font-size: 0.9rem;
    white-space: nowrap;
    min-width: 55px;
}

.price-header-row {
    border-bottom: none !important;
    padding: 5px 0 !important;
}

.price-header-row span:not(:first-child) {
    font-size: 0.75rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

.price-span-3 {
    grid-column: 2 / 5;
    text-align: right;
    font-style: italic;
    opacity: 0.85;
}

.prices-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.prices-coming-soon {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 30px;
    background-color: var(--cream);
    border-radius: 8px;
}

.prices-coming-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.prices-coming-subtext {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    background: linear-gradient(135deg, var(--beige) 0%, var(--cream-dark) 100%);
    color: var(--text-dark);
}

.contact .section-title {
    color: var(--dark);
}

.contact .section-divider {
    background: linear-gradient(90deg, var(--gold-muted), var(--gold-light));
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

a.contact-card-link {
    display: block;
    cursor: pointer;
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cream);
    border-radius: 50%;
    color: var(--gold);
    transition: all var(--transition-normal);
}

.contact-card:hover .contact-card-icon {
    background-color: var(--gold);
    color: var(--white);
}

.contact-card h4 {
    color: var(--dark);
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.contact-card p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-card a {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    align-items: center;
}

.contact-card .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--cream);
    border: 1px solid var(--beige);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    transition: all var(--transition-fast);
}

.contact-card .contact-link:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.contact-card .contact-link svg {
    flex-shrink: 0;
}

/* Form Success Message */
.form-success {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    border-radius: 8px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    color: var(--gold);
    margin-bottom: 20px;
}

.form-success h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background-color: var(--beige);
    color: var(--text-dark);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--beige-dark);
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.footer-brand p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50%;
    color: var(--gold);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a:hover {
    color: var(--gold);
}

/* ==========================================
   Events Section
   ========================================== */
.events {
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
}

.events-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.events-image-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    flex: 0 0 calc((100% - 40px) / 3);
    height: 400px;
}

.events-image-item img,
.events-image-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.events-image-item:hover img,
.events-image-item:hover video {
    transform: scale(1.05);
}

.events-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.events-text p {
    color: var(--text-light);
}

.events-text p:last-child {
    margin-bottom: 0;
}

.events-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.event-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-template-areas:
        "icon title"
        "icon desc";
    column-gap: 20px;
    row-gap: 8px;
    align-items: start;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.event-card .event-icon { grid-area: icon; }
.event-card h3 { grid-area: title; }
.event-card p { grid-area: desc; }

@media (hover: hover) {
    .event-card:hover {
        transform: translateX(10px);
        box-shadow: var(--shadow-md);
    }
}

.event-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    color: var(--white);
}

.event-card h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.event-card p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.events-cta {
    text-align: center;
    margin-top: 50px;
}

/* ==========================================
   Instagram Section
   ========================================== */
.instagram-section {
    background-color: var(--white);
}

.instagram-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 20px;
    font-weight: 300;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.instagram-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-muted);
    transition: all var(--transition-slow);
}

.instagram-item:hover .instagram-placeholder {
    transform: scale(1.05);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(58, 48, 42, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity var(--transition-normal);
    color: var(--white);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay span {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Instagram CTA Card (last grid item) */
.instagram-cta-card {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.instagram-cta-card .instagram-cta-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    transition: all var(--transition-normal);
}

.instagram-cta-card:hover .instagram-cta-content {
    transform: scale(1.05);
}

.instagram-handle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.instagram-follow {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.instagram-cta-card:hover .instagram-follow {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
}

/* Instagram Profile Link Button */
.instagram-profile-link {
    text-align: center;
    margin-top: 40px;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid var(--gold);
    border-radius: 3px;
    color: var(--gold);
    background: transparent;
    transition: all var(--transition-normal);
}

.btn-instagram:hover {
    background-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   Floating Social Buttons
   ========================================== */
.floating-socials {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: float-entrance 0.6s ease 1.5s both;
}

.floating-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.whatsapp-float {
    background-color: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(168, 138, 92, 0.4);
}

.whatsapp-float:hover {
    background-color: var(--gold-light);
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(168, 138, 92, 0.5);
}

.instagram-float {
    background-color: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(168, 138, 92, 0.4);
}

.instagram-float:hover {
    background-color: var(--gold-light);
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(168, 138, 92, 0.5);
}

@keyframes float-entrance {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .floating-socials {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .floating-btn {
        width: 46px;
        height: 46px;
    }
}

/* Navigation CTA Button */
.nav-cta {
    background-color: var(--gold) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 4px;
    margin-left: 10px;
    white-space: nowrap;
}

.nav-cta:hover {
    background-color: var(--gold-light) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Logo nie umbrechen */
.nav-logo { white-space: nowrap; }

/* "Studios ▾" Dropdown (Desktop) — rechts fixiert, Navigation bleibt mittig */
.nav-dropdown { position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
.nav-studios-toggle {
    background-color: var(--gold) !important;
    color: var(--white) !important;
    padding: 10px 18px !important;
    border-radius: 4px;
    margin-left: 10px;
    white-space: nowrap;
    font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; user-select: none;
}
.nav-studios-toggle:hover { background-color: var(--gold-light) !important; }
.nav-dropdown-menu {
    list-style: none; margin: 0;
    position: absolute; top: calc(100% + 12px); right: 0;
    background: var(--white); border: 1px solid var(--beige);
    border-radius: 10px; box-shadow: var(--shadow-md);
    padding: 8px; min-width: 220px;
    display: flex; flex-direction: column; gap: 2px;
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    z-index: 1002;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu li { margin: 0; }
.nav-dropdown-menu .nav-dd-link {
    display: block; padding: 11px 14px; border-radius: 6px;
    font-size: 0.88rem; letter-spacing: 0.3px; text-transform: none; font-weight: 600;
    color: var(--dark); white-space: nowrap;
    transition: background .15s ease, color .15s ease;
}
.nav-dropdown-menu .nav-dd-link::after { display: none !important; }
.nav-dropdown-menu .nav-dd-link:hover { background: var(--cream); }
.nav-dd-link[data-brand="salon"]:hover   { color: #a88a5c; }
.nav-dd-link[data-brand="kosmetik"]:hover { color: #79a59c; }
.nav-dd-link[data-brand="headspa"]:hover { color: #5f86a8; }

/* ==========================================
   Reveal — Einblenden beim Scrollen (Bereichsseiten Kosmetik/Spa)
   Gegenstück zu js/reveal.js. Der Startzustand hängt an der Klasse
   `reveal-js` auf <html>: fehlt sie (kein JS, Ladefehler, Sicherheits-
   Timer abgelaufen), ist der Inhalt ganz normal sichtbar.
   Die Selektorliste muss mit SELECTOR in js/reveal.js übereinstimmen.
   ========================================== */
.reveal-js .nails-tech-text > *,
.reveal-js .nails-tech-image,
.reveal-js .nails-gallery > .container > *,
.reveal-js .nails-tile,
.reveal-js .nails-prices > .container > *,
.reveal-js .price-card,
.reveal-js .nails-cta-strip .container > *,
.reveal-js .nails-contact-card {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .3, 1);
    will-change: opacity, transform;
}

.reveal-js .is-revealed {
    opacity: 1 !important;
    transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-js .nails-tech-text > *,
    .reveal-js .nails-tech-image,
    .reveal-js .nails-gallery > .container > *,
    .reveal-js .nails-tile,
    .reveal-js .nails-prices > .container > *,
    .reveal-js .price-card,
    .reveal-js .nails-cta-strip .container > *,
    .reveal-js .nails-contact-card {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* „Alle Bereiche" — Rücksprung auf die Dachseite, optisch abgesetzt vom Rest */
.nav-dropdown-menu .nav-dd-overview {
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid var(--beige);
    font-weight: 500;
    color: var(--text-light);
}
.nav-dropdown-menu .nav-dd-overview:hover { color: var(--gold); }

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 350px;
    }

    .gallery-item-tall {
        grid-row: span 1;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prices-grid,
    .prices-grid-2 {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-images {
        gap: 15px;
    }
    .events-image-item {
        flex: 0 0 calc((100% - 15px) / 2);
        height: 350px;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }

    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right var(--transition-normal);
    }

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

    .nav-menu .nav-link {
        font-size: 1.25rem;
        color: var(--dark);
    }

    .navbar.scrolled .nav-menu .nav-link {
        color: var(--dark);
    }

    /* Studios-Dropdown im Burger-Menü flach + immer sichtbar zeigen */
    .nav-studios-toggle { display: none !important; }
    .nav-menu { padding-right: 0; }
    .nav-dropdown { position: static; transform: none; top: auto; right: auto; width: auto; }
    .nav-dropdown-menu {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: none; background: transparent;
        padding: 0; margin: 0; gap: 30px; min-width: 0;
        flex-direction: column; align-items: center;
    }
    .nav-dropdown-menu .nav-dd-link { font-size: 1.25rem; text-align: center; padding: 0; }

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

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

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .service-card {
        padding: 25px 15px;
    }
    .service-card h3 {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }
    .service-card p {
        font-size: 0.85rem;
        line-height: 1.55;
    }
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    .service-icon svg {
        width: 32px;
        height: 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
        gap: 10px;
    }
    .gallery-overlay {
        padding: 20px 12px 12px;
    }
    .gallery-overlay span {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .events-image-item {
        flex: 0 0 100%;
        height: 450px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.85rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .price-category {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }
}

/* ==========================================
   Animation Enhancements
   ========================================== */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Smooth hover effects */
.service-card,
.price-category,
.feature-icon,
.social-link,
.btn {
    will-change: transform;
}

/* ==========================================
   Lightbox
   ========================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 36, 32, 0.92);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    margin-top: 16px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    opacity: 0.9;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 2;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.lightbox-close:hover {
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: none;
    border: none;
    color: var(--white);
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-normal);
    -webkit-user-select: none;
    user-select: none;
}

.lightbox-nav:hover {
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-prev {
    left: 16px;
}

.lightbox-next {
    right: 16px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 2.2rem;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }

    .lightbox-close {
        top: 12px;
        right: 12px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }

    .lightbox-img {
        max-width: 94vw;
        max-height: 75vh;
    }

    .lightbox-caption {
        font-size: 0.95rem;
    }
}

/* ==========================================
   Cookie Consent Banner
   ========================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: rgba(44, 36, 32, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner-text {
    flex: 1;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--gold-light);
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: var(--gold-muted);
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 24px;
    border-radius: 3px;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
}

.cookie-btn-accept:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
}

.cookie-btn-necessary {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(250, 247, 242, 0.4);
}

.cookie-btn-necessary:hover {
    border-color: var(--cream);
    color: var(--white);
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-text {
        font-size: 0.85rem;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        padding: 10px 18px;
        font-size: 0.75rem;
    }
}

@media (max-width: 400px) {
    .cookie-banner-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================
   Custom Sections (Admin-erstellt)
   ========================================== */
.custom-section {
    background: var(--white);
}
.custom-section:nth-of-type(even) {
    background: var(--cream);
}
.custom-section .custom-text {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}
.custom-section .custom-text p {
    margin-bottom: 1.2rem;
}
.custom-section .custom-image-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.custom-section .custom-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}
.custom-section .custom-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 320px));
    gap: 20px;
    justify-content: center;
}

/* Modus: Zugeschnitten (default) — alle gleich groß, Bild beschnitten */
.custom-section .custom-gallery.display-cropped .custom-gallery-item img,
.custom-section .custom-gallery.display-cropped .custom-gallery-item video {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

/* Modus: Komplett — Bild in voller Größe, natürliche Aspect-Ratio */
.custom-section .custom-gallery.display-full {
    grid-template-columns: repeat(auto-fit, minmax(240px, 340px));
    gap: 24px;
    align-items: start;
}
.custom-section .custom-gallery.display-full .custom-gallery-item {
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    min-height: 280px;
}
.custom-section .custom-gallery.display-full .custom-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.custom-section .custom-gallery.display-full .custom-gallery-item img,
.custom-section .custom-gallery.display-full .custom-gallery-item video {
    width: 100%;
    height: auto;
    display: block;
}

.custom-section .custom-gallery.with-text {
    margin-top: 40px;
}
@media (max-width: 768px) {
    .custom-section .custom-image-text {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================
   Smooth image loading (vermeidet "Ploppen" bei HDR-Fotos)
   ========================================== */
.gallery-item img,
.gallery-item video,
.events-image-item img,
.events-image-item video,
.about-slide img,
.about-slide video,
.custom-section img,
.custom-section video,
.about-img {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}
.gallery-item img.loaded,
.gallery-item video.loaded,
.events-image-item img.loaded,
.events-image-item video.loaded,
.about-slide img.loaded,
.about-slide video.loaded,
.custom-section img.loaded,
.custom-section video.loaded,
.about-img.loaded {
    opacity: 1;
}

/* ==========================================
   Nails by Nella - Feature-Sektion auf Hauptseite
   ========================================== */
/* Cross-Sell-Sektionen auf der Hauptseite je Marke einfärben
   (Button + Eyebrow nutzen --gold) — Nails Rosa, Cosmetics Türkis, Headspa Salbei */
#nails-feature    { --gold: #c98fa6; --gold-light: #d4a5b8; }
#kosmetik-feature { --gold: #79a59c; --gold-light: #8fb4ac; }
#headspa-feature  { --gold: #5f86a8; --gold-light: #759aba; }

.nails-feature {
    background:
        radial-gradient(ellipse at 20% 30%, rgba(196,168,122,0.10), transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(232,223,211,0.30), transparent 55%),
        var(--cream);
}
.nails-feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    border-radius: 16px;
    padding: 60px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}
.nails-feature-card::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(168,138,92,0.10), transparent 70%);
    pointer-events: none;
}
.nails-feature-eyebrow {
    font-family: var(--font-body);
    letter-spacing: 3px;
    font-size: 0.74rem;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    font-weight: 600;
}
.nails-feature-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 3px;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.1;
}
.nails-feature-lead {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 14px;
    font-weight: 500;
}
.nails-feature-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}
.nails-feature-btn {
    margin-top: 14px;
}
.nails-feature-collage {
    position: relative;
    aspect-ratio: 1/1;
    min-height: 360px;
}
.nfc-img {
    position: absolute;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
    transition: transform 0.4s ease;
}
.nfc-1 {
    width: 65%; height: 65%;
    top: 0; left: 0;
    z-index: 1;
}
.nfc-2 {
    width: 60%; height: 60%;
    bottom: 0; right: 0;
    z-index: 3;
    border: 4px solid var(--white);
}
.nfc-3 {
    width: 45%; height: 45%;
    top: 38%; left: 35%;
    z-index: 2;
    border: 4px solid var(--white);
}
.nails-feature-card:hover .nfc-1 { transform: translate(-4px, -4px) rotate(-1deg); }
.nails-feature-card:hover .nfc-2 { transform: translate(4px, 4px) rotate(1deg); }
.nails-feature-card:hover .nfc-3 { transform: scale(1.04); }

@media (max-width: 900px) {
    .nails-feature-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 28px;
    }
    .nails-feature-collage { min-height: 320px; order: -1; }
}
@media (max-width: 480px) {
    .nails-feature-card { padding: 32px 20px; }
    .nails-feature-collage { min-height: 260px; }
}

/* ==========================================
   Hero: Nails-Banner unter den Buttons
   ========================================== */
.hero-sister-banners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}
.hero-sister-banners .hero-nails-banner { margin-top: 0; }
.hero-kosmetik-badge {
    background: linear-gradient(135deg, #8fb4ac, #79a59c) !important;
}
.hero-headspa-badge {
    background: linear-gradient(135deg, #759aba, #5f86a8) !important;
}
.hero-nails-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding: 10px 18px 10px 12px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(168, 138, 92, 0.35);
    border-radius: 999px;
    color: var(--dark);
    font-size: 0.92rem;
    box-shadow: 0 6px 20px rgba(44, 36, 32, 0.10);
    transition: all 0.25s ease;
    text-decoration: none;
    cursor: pointer;
    max-width: 95%;
}
.hero-nails-banner:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(44, 36, 32, 0.15);
    border-color: var(--gold);
}
.hero-nails-badge {
    background: linear-gradient(135deg, #d4a5b8, #c89aab);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}
.hero-nails-text {
    color: var(--dark);
}
.hero-nails-text strong {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.hero-nails-arrow {
    color: var(--gold);
    font-size: 1.3rem;
    line-height: 1;
    transition: transform 0.25s ease;
}
.hero-nails-banner:hover .hero-nails-arrow {
    transform: translateX(3px);
}
@media (max-width: 600px) {
    .hero-sister-banners {
        flex-direction: column;
        align-items: center;
    }
    .hero-nails-banner {
        font-size: 0.9rem;
        padding: 9px 16px 9px 10px;
        gap: 10px;
        max-width: 100%;
    }
    .hero-nails-badge { font-size: 0.62rem; padding: 3px 8px; }
    /* Beschreibungs-Zusatz auf Mobil ausblenden → kompakte Ein-Zeilen-Pille */
    .hnb-desc { display: none; }
}

/* ==========================================
   Brautstyling-Pakete
   ========================================== */
.bridal {
    background:
        radial-gradient(ellipse at 20% 20%, rgba(196, 168, 122, 0.10), transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(232, 223, 211, 0.40), transparent 55%),
        var(--cream);
}
.bridal-lead {
    max-width: 600px;
    margin: 18px auto 0;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}
.bridal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 50px auto 0;
}
@media (max-width: 768px) {
    .bridal-grid { grid-template-columns: 1fr; gap: 24px; }
}

.bridal-card {
    position: relative;
    background: var(--white);
    border-radius: 14px;
    padding: 40px 32px 36px;
    border: 1px solid var(--beige);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}
.bridal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.bridal-card.featured {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(168, 138, 92, 0.15);
    background:
        linear-gradient(180deg, rgba(168, 138, 92, 0.03), transparent 30%),
        var(--white);
}
.bridal-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.bridal-card-head {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--beige);
}
.bridal-eyebrow {
    display: block;
    font-size: 0.74rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}
.bridal-card h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    letter-spacing: 2px;
    color: var(--dark);
    text-transform: uppercase;
    line-height: 1.2;
}

.bridal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    flex: 1;
}
.bridal-list li {
    position: relative;
    padding: 9px 0 9px 30px;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px dashed rgba(168, 138, 92, 0.18);
}
.bridal-list li:last-child { border-bottom: none; }
.bridal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 16px;
    height: 9px;
    border-left: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(-45deg);
    border-radius: 1px;
}

.bridal-meta {
    margin-bottom: 18px;
}
.bridal-time {
    display: inline-block;
    background: var(--cream);
    color: var(--text-light);
    font-size: 0.82rem;
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: 0.5px;
}

.bridal-price {
    text-align: center;
    margin-bottom: 22px;
    padding: 18px 0;
    border-top: 1px solid var(--beige);
    border-bottom: 1px solid var(--beige);
}
.bridal-amount {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.6rem;
    color: var(--gold);
    letter-spacing: 0.5px;
    font-weight: 700;
}
.bridal-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: 1.55rem;
    letter-spacing: 1.5px;
}

.bridal-cta {
    margin-top: auto;
    text-align: center;
    width: 100%;
}


.bridal-footnote {
    display: block !important;
    max-width: 700px;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 30px;
    margin-bottom: 0;
    text-align: center !important;
    padding: 14px 20px;
    background: var(--white);
    border: 1px dashed var(--gold-muted);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
}
.bridal-footnote strong { color: var(--gold); }

/* ==========================================
   Umzugs-Hinweis (dezenter, schließbarer Banner)
   Zeigt den Standortwechsel ab 01.07.2026 an.
   ========================================== */
.move-notice {
    position: fixed;
    z-index: 1200;
    left: 50%;
    bottom: 24px;
    bottom: calc(24px + env(safe-area-inset-bottom));
    transform: translateX(-50%) translateY(140%);
    width: calc(100% - 32px);
    max-width: 440px;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
    border: 1px solid var(--beige);
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 18px 44px 18px 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, visibility 0.5s;
}
.move-notice.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}
.move-notice .mn-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.move-notice .mn-icon svg { width: 22px; height: 22px; }
.move-notice .mn-body { flex: 1; min-width: 0; }
.move-notice .mn-title {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    letter-spacing: 0.5px;
    color: var(--dark);
    margin-bottom: 4px;
}
.move-notice .mn-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-light);
}
.move-notice .mn-text strong { color: var(--gold); font-weight: 700; }
.move-notice .mn-address {
    display: block;
    margin-top: 4px;
    color: var(--dark);
    font-weight: 600;
}
.move-notice .mn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    color: var(--text-light);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast), color var(--transition-fast);
}
.move-notice .mn-close:hover { background: var(--beige); color: var(--dark); }

@media (max-width: 480px) {
    .move-notice {
        left: 12px;
        right: 12px;
        transform: translateX(0) translateY(140%);
        width: auto;
        max-width: none;
        padding: 16px 42px 16px 16px;
    }
    .move-notice.is-visible { transform: translateX(0) translateY(0); }
    .move-notice .mn-title { font-size: 1.05rem; }
}

/* ── Feinschliff 2026-07-02: dezente Modernisierung (gilt für alle Seiten) ──
   color-mix nutzt die jeweils aktive Markenfarbe (--gold wird auf den
   Schwester-Seiten überschrieben: Rosa/Türkis/Blau). */
html { scroll-padding-top: 84px; }
::selection { background: color-mix(in srgb, var(--gold) 28%, transparent); color: var(--dark-deep); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
h1, h2, h3, h4 { text-wrap: balance; }
p, li { text-wrap: pretty; }
input[type="checkbox"], input[type="radio"] { accent-color: var(--gold); }
button:disabled { opacity: .55; cursor: not-allowed; }
