/* ============================================
   CSS RESET & BASE STYLES
============================================ */
:root {
    --primary: #f8a5c2;
    --primary-dark: #f78fb3;
    --primary-light: #ffd6e7;
    --primary-glow: rgba(248, 165, 194, 0.1);
    --secondary: #a29bfe;
    --secondary-dark: #8c7df8;
    --dark: #2d3436;
    --dark-light: #4a4f51;
    --light: #f9f9f9;
    --gray: #dfe6e9;
    --gray-dark: #b2bec3;
    
    /* Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 30px;
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --transition-slower: all 0.8s ease;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-dark));
    --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    --gradient-overlay: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    
    /* Status Colors */
    --success: #00b894;
    --error: #d63031;
    --warning: #fdcb6e;
    --info: #0984e3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.25px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   LAYOUT & CONTAINERS
============================================ */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

/* ============================================
   COMPONENTS: BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-xl);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(248, 165, 194, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 48px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    opacity: 0;
    transition: var(--transition-base);
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(248, 165, 194, 0.4);
}

.btn:hover::before {
    opacity: 1;
}

.btn:active {
    transform: translateY(-1px);
}

.btn:focus {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.btn-secondary {
    background: var(--gradient-secondary);
    box-shadow: 0 4px 15px rgba(162, 155, 254, 0.3);
}

.btn-secondary::before {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
}

.btn-secondary:hover {
    box-shadow: 0 8px 20px rgba(162, 155, 254, 0.4);
}

.btn-secondary:focus {
    outline-color: var(--secondary);
}

.btn-success {
    background: var(--success);
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.btn-error {
    background: var(--error);
    box-shadow: 0 4px 15px rgba(214, 48, 49, 0.3);
}

/* ============================================
   COMPONENTS: SECTION TITLE
============================================ */
.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--dark);
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-md);
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* ============================================
   HEADER & NAVIGATION
============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    will-change: transform, background-color;
}

header.scrolled {
    padding: 0;
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    font-weight: 600;
    color: var(--dark);
    background: linear-gradient(90deg, var(--dark) 70%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.2em;
    font-weight: 600;
}

.logo-sub {
    font-size: 0.6em;
    font-weight: 400;
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
}

nav {
    transition: var(--transition-base);
}

nav ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

nav ul li a {
    font-weight: 500;
    position: relative;
    padding: var(--spacing-xs) 0;
    color: var(--dark-light);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    bottom: 0;
    left: 0;
    transition: var(--transition-base);
    border-radius: 1px;
}

nav ul li a:hover {
    color: var(--dark);
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a.active {
    color: var(--dark);
}

nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.mobile-menu-btn:hover,
.mobile-menu-btn:focus {
    background-color: var(--primary-glow);
    outline: none;
}

.mobile-menu-btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ============================================
   HERO SECTION - ENHANCED ANIMATIONS
============================================ */
.hero {
    height: 100vh;
    min-height: 600px;
    background: var(--gradient-overlay), url('https://images.unsplash.com/photo-1596462502278-27bfdc403348?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    opacity: 0;
    animation: fadeInHeroBg 1.5s 0.2s ease-out forwards;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpContent 1.2s 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Smooth text animation with character-by-character effect */
.hero h1 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpText 1s 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpText 1s 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpButton 1s 1.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Enhanced animations */
@keyframes fadeInHeroBg {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUpContent {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpText {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpButton {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Loading state */
.hero.loading .hero-content,
.hero.loading h1,
.hero.loading p,
.hero.loading .btn {
    animation: none;
    opacity: 0;
}

/* ============================================
   ABOUT SECTION
============================================ */
.about-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.about-img {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: translateZ(0);
    will-change: transform;
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
    transform: scale(1);
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: var(--spacing-md);
    color: var(--dark);
}

.about-text p {
    margin-bottom: var(--spacing-md);
    color: var(--dark-light);
    font-size: 1.05rem;
}

.signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-top: var(--spacing-md);
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 500;
    position: relative;
    padding-left: var(--spacing-lg);
}

.signature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateY(-50%);
}

/* ============================================
   SERVICES & PRICING SECTION
============================================ */
.services {
    background-color: #f8f9fa;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-glow), transparent 50%);
    pointer-events: none;
}

.services-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-intro {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-intro p {
    color: var(--dark-light);
    font-size: 1.05rem;
}

.pricing-table {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-bottom: var(--spacing-lg);
}

.pricing-header {
    background: var(--gradient-primary);
    color: white;
    padding: var(--spacing-md);
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
}

.pricing-header p {
    margin-top: var(--spacing-xs);
    opacity: 0.9;
}

.pricing-items {
    padding: 0;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--gray);
    transition: var(--transition-base);
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-item:hover {
    background-color: var(--primary-glow);
}

.service-name {
    flex: 1;
}

.service-name h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--spacing-xs);
}

.service-name p {
    color: var(--dark-light);
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-left: var(--spacing-md);
}

.services-note {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary);
}

.services-note p {
    color: var(--dark-light);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.services-note strong {
    color: var(--dark);
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

/* ============================================
   GALLERY SECTION
============================================ */
.gallery {
    background-color: #f8f9fa;
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-glow), transparent 50%);
    pointer-events: none;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: var(--shadow-lg);
    transform: translateZ(0);
    will-change: transform;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
}

/* Instagram Gallery Item */
.instagram-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    transition: var(--transition-base);
    cursor: pointer;
    text-decoration: none;
    color: white;
}

.instagram-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.instagram-content {
    text-align: center;
    padding: var(--spacing-md);
    z-index: 2;
}

.instagram-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.instagram-text {
    text-align: center;
}

.instagram-text h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.instagram-text p {
    font-size: 0.9rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* ============================================
   CONTACT SECTION - SEHR KOMPAKT
============================================ */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    padding: var(--spacing-md);
}

.contact-form {
    padding: var(--spacing-md);
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
}

.contact-info p {
    margin-bottom: var(--spacing-md);
    color: var(--dark-light);
    font-size: 0.95rem;
}

/* Kompakte Kontakt-Items */
.contact-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--spacing-sm);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
}

.instagram-contact .contact-icon {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

.contact-text h4 {
    margin-bottom: 4px;
    font-size: 0.95rem;
    color: var(--dark);
}

.contact-text p {
    color: var(--dark-light);
    margin: 0;
    line-height: 1.4;
    font-size: 0.85rem;
}

.contact-text a {
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition-base);
    font-size: 0.9rem;
}

.contact-text a:hover {
    color: var(--primary-dark);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-base);
    z-index: -1;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Sehr kompaktes Formular */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.form-group {
    margin-bottom: var(--spacing-xs);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 2px;
    font-weight: 500;
    color: var(--dark);
    font-size: 0.85rem;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition-base);
    background-color: white;
    color: var(--dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary-glow);
}

.form-control.error {
    border-color: var(--error);
    box-shadow: 0 0 0 2px rgba(214, 48, 49, 0.1);
}

.form-control.success {
    border-color: var(--success);
    box-shadow: 0 0 0 2px rgba(0, 184, 148, 0.1);
}

.form-control::placeholder {
    color: var(--gray-dark);
    font-size: 0.85rem;
}

textarea.form-control {
    min-height: 80px;
    resize: vertical;
    line-height: 1.4;
}

/* Datum und Uhrzeit nebeneinander */
.datetime-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

/* ============================================
   MULTIPLE CHOICE SERVICE SELECTION - KOMPAKT
============================================ */
.services-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-top: 6px;
}

.service-option {
    position: relative;
}

.service-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.service-checkbox + label {
    display: flex;
    flex-direction: column;
    padding: 10px;
    background-color: white;
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-checkbox + label:hover {
    border-color: var(--primary-light);
    background-color: var(--primary-glow);
}

.service-checkbox:checked + label {
    border-color: var(--primary);
    background-color: var(--primary-glow);
}

.service-checkbox:checked + label::before {
    content: '✓';
    position: absolute;
    top: 6px;
    right: 6px;
    width: 16px;
    height: 16px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

.service-checkbox:focus + label {
    outline: 2px solid var(--primary);
    outline-offset: 1px;
}

.service-checkbox:focus:not(:focus-visible) + label {
    outline: none;
}

.service-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.service-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.service-description {
    font-size: 0.75rem;
    color: var(--dark-light);
    line-height: 1.3;
}

/* Error and Success Messages */
.error-message {
    color: var(--error);
    font-size: 0.75rem;
    margin-top: 2px;
    display: block;
    min-height: 16px;
}

.success-message {
    color: var(--success);
    font-size: 0.85rem;
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm);
    background-color: rgba(0, 184, 148, 0.1);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--success);
    display: none;
    text-align: center;
}

.success-message.show {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   FOOTER
============================================ */
footer {
    background-color: var(--dark);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    background: linear-gradient(90deg, white 70%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo span {
    -webkit-text-fill-color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ============================================
   UTILITY CLASSES
============================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-error { color: var(--error); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }

/* ============================================
   LOADING STATES & ANIMATIONS
============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVE STYLES
============================================ */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: var(--spacing-xl);
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .about-img {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: var(--spacing-lg);
        --spacing-lg: var(--spacing-md);
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: var(--shadow-lg);
        padding: var(--spacing-md) 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-base);
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-md);
    }
    
    nav ul li {
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        padding: var(--spacing-sm);
        font-size: 1.1rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    .service-price {
        margin-left: 0;
        align-self: flex-start;
    }
    
    /* Kontaktseite responsive */
    .contact-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .contact-items-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .services-checkboxes {
        grid-template-columns: 1fr;
    }
    
    .datetime-group {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
        padding: 0 var(--spacing-xs);
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-height: 40px;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .contact-item {
        padding: var(--spacing-xs);
    }
    
    .service-checkbox + label {
        padding: 8px;
    }
    
    .service-name {
        font-size: 0.8rem;
    }
    
    .service-price {
        font-size: 0.85rem;
    }
    
    .service-description {
        font-size: 0.7rem;
    }
}

/* ============================================
   REDUCED MOTION PREFERENCES
============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .hero-content,
    .hero h1,
    .hero p,
    .hero .btn {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

/* ============================================
   DARK MODE SUPPORT - LIGHT THEME OVERRIDE
============================================ */
/* Force light theme - bright color scheme */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #f9f9f9 !important;
        color: #2d3436 !important;
    }
    
    header {
        background-color: rgba(255, 255, 255, 0.98) !important;
    }
    
    .logo {
        color: #2d3436 !important;
    }
    
    .section-title h2 {
        color: #2d3436 !important;
    }
    
    .about-text h3 {
        color: #2d3436 !important;
    }
    
    .contact-text h4 {
        color: #2d3436 !important;
    }
    
    .service-checkbox + label {
        background-color: white !important;
        border-color: #dfe6e9 !important;
    }
    
    .form-control {
        background-color: white !important;
        border-color: #dfe6e9 !important;
        color: #2d3436 !important;
    }
    
    .form-control:focus {
        border-color: #f8a5c2 !important;
        background-color: white !important;
    }
    
    .gallery, .services {
        background-color: #f8f9fa !important;
    }
    
    .pricing-table, .services-note {
        background-color: white !important;
    }
    
    .contact-item {
        background-color: white !important;
    }
}