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

/* Cookie-Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--footer-bg);
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

/* Versteckt das Banner sofort bei bereits erteilter Einwilligung (vermeidet Layout-Shift) */
.cookie-consent-given .cookie-banner {
    transform: translateY(100%);
    visibility: hidden;
    pointer-events: none;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.cookie-banner-content p {
    flex: 1;
    min-width: 250px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-banner-content a {
    color: #f5e6d3;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-btn-accept {
    background: var(--accent-on-white);
    color: white;
}

.cookie-btn-accept:hover {
    background: #9a4d0c;
}

.cookie-btn-decline {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.5);
}

.cookie-btn-decline:hover {
    background: rgba(255,255,255,0.3);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

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

.lightbox-img {
    max-width: 95%;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 44px;
    height: 44px;
}

.lightbox-close:hover {
    opacity: 0.8;
}

:root {
    --primary-color: #8b5e3b;
    --secondary-color: #f0d9c2;
    --accent-color: #e08a3f;
    --accent-on-white: #b85c0f;
    --text-dark: #2d1b12;
    --text-light: #7b5b47;
    --bg-light: #fff8f2;
    --bg-card: #ffffff;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.12);
    --border-subtle: rgba(139, 94, 59, 0.08);
    --border-hover: rgba(184, 92, 15, 0.25);
    --price-note-bg: #F3F4F6;
    --payment-note-bg: #FEF3C7;
    --price-request-bg: #E8F5E9;
    --contact-hover-bg: rgba(255, 248, 242, 0.6);
    --footer-bg: #2d1b12;
    --bg-navbar: rgba(255, 255, 255, 0.95);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    z-index: 10001;
    transition: width 0.05s linear;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--bg-navbar);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    padding: 0 env(safe-area-inset-right, 0) 0 env(safe-area-inset-left, 0);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 56px;
    width: auto;
    border-radius: 10px;
    display: block;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link:hover {
    color: var(--primary-color);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.3)),
        url("start-hintergrund.jpeg") center center / cover no-repeat;
    position: relative;
    overflow: hidden;
    padding-top: calc(80px + env(safe-area-inset-top, 0px));
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-note {
    font-size: 1.15rem !important;
    margin-bottom: 20px !important;
    opacity: 0.85;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-on-white);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(184, 92, 15, 0.5);
}

/* Button Shine (schwebender Lichteffekt) */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: left 0.6s ease;
}

.btn-shine:hover::before {
    left: 100%;
}

.hero-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Aurora-Gradient (sanft animierter Hintergrund) */
.aurora-bg {
    position: absolute;
    inset: -50%;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(184, 92, 15, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(240, 217, 194, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 50% 80%, rgba(139, 94, 59, 0.1) 0%, transparent 50%);
    animation: aurora-shift 15s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes aurora-shift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-5%, -3%) scale(1.05); }
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: white;
    top: 10%;
    left: 10%;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    top: 60%;
    right: 15%;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: white;
    bottom: 20%;
    left: 20%;
}

/* Sections */
.section {
    padding: 100px 0;
}

/* Scroll Reveal – sanftes Einblenden */
.reveal-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* About Section */
.about-section {
    background: var(--bg-light);
}

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

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-image {
    display: flex;
    justify-content: flex-end;
}

.about-image .image-placeholder {
    width: fit-content;
    max-width: 100%;
    height: auto;
    padding: 0;
    box-shadow: none;
}

.about-image .image-placeholder.has-image {
    background: transparent;
}

.about-image .image-placeholder .image-preview {
    position: relative;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 450px;
    display: block;
    object-fit: contain;
    border-radius: 20px;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder.has-image {
    background: transparent;
}

/* Gallery Section */
.gallery-section {
    background: var(--bg-card);
}

.gallery-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.2rem;
}

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

.gallery-item {
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item.magic-card,
.contact-item.magic-card {
    border: none;
}

.gallery-item.magic-card:hover {
    box-shadow: 0 15px 40px rgba(139, 94, 59, 0.2);
}

.contact-item.magic-card {
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.4s ease, background 0.3s ease;
}

.contact-item.magic-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 94, 59, 0.12);
    background: var(--contact-hover-bg);
}

.gallery-item .lightbox-trigger {
    cursor: pointer;
}

.gallery-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gallery-item .gallery-placeholder.has-image {
    background: transparent;
    width: fit-content;
    max-width: 100%;
    height: auto;
    padding: 0;
    box-shadow: none;
}

.gallery-item .gallery-placeholder.has-image .image-preview {
    position: relative;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 450px;
    display: block;
    object-fit: contain;
    border-radius: 20px;
}

/* Prices Section */
.prices-section {
    background: var(--bg-light);
}

.prices-content {
    max-width: 800px;
    margin: 50px auto 0;
}

.price-item {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Magic Card – Hover-Glow (dezent, wie im Video) */
.magic-card {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.4s ease, border-color 0.3s ease;
    border: 1px solid var(--border-subtle);
}

.magic-card:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px var(--shadow),
        0 0 0 1px var(--border-hover);
    border-color: var(--border-hover);
}

.price-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price-amount {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 15px;
}

.price-note {
    background: var(--price-note-bg);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid var(--accent-color);
    font-style: italic;
    color: var(--text-light);
}

.payment-note {
    background: var(--payment-note-bg);
}

.price-request-note {
    background: var(--price-request-bg);
    border-left-color: var(--primary-color);
}

.payment-note p {
    color: var(--text-dark);
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-card);
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 0;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 600px;
}

.faq-answer p,
.faq-answer ul {
    padding: 0 0 20px 0;
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer ul {
    padding-left: 1.5rem;
    padding-bottom: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* Contact Section */
.contact-section {
    background: var(--bg-card);
}

.contact-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-action {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Runde Kontakt-Buttons (Kreise) mit Logo */
.contact-buttons-round {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    gap: 36px;
    padding-bottom: 8px;
}

.contact-btn-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    color: inherit;
}

.contact-btn-circle:hover {
    transform: translateY(-4px);
}

.contact-btn-circle-inner {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(139, 94, 59, 0.18);
    background: var(--bg-light);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1), 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.contact-btn-circle:hover .contact-btn-circle-inner {
    box-shadow: var(--shadow-lg);
}

.contact-btn-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.contact-btn-label {
    margin-top: 10px;
    white-space: nowrap;
    font-size: 0.8rem;
}

/* WhatsApp – grün */
.whatsapp-button.contact-btn-circle {
    color: #0d6b5c;
}

.whatsapp-button.contact-btn-circle .contact-btn-icon {
    color: #0d6b5c;
}

.whatsapp-button.contact-btn-circle:hover .contact-btn-circle-inner {
    background: #128C7E;
    border-color: #128C7E;
}

.whatsapp-button.contact-btn-circle:hover .contact-btn-icon,
.whatsapp-button.contact-btn-circle:hover .contact-btn-label {
    color: white;
}

/* Instagram – pink/lila */
.instagram-button.contact-btn-circle {
    color: #a0285a;
}

.instagram-button.contact-btn-circle .contact-btn-icon {
    color: #a0285a;
}

.instagram-button.contact-btn-circle:hover .contact-btn-circle-inner {
    background: #C13584;
    border-color: #C13584;
}

.instagram-button.contact-btn-circle:hover .contact-btn-icon,
.instagram-button.contact-btn-circle:hover .contact-btn-label {
    color: white;
}

/* Google – blau */
.google-review-button.contact-btn-circle {
    color: #1557b0;
}

.google-review-button.contact-btn-circle .contact-btn-icon {
    color: #1557b0;
}

.google-review-button.contact-btn-circle:hover .contact-btn-circle-inner {
    background: #1a73e8;
    border-color: #1a73e8;
}

.google-review-button.contact-btn-circle:hover .contact-btn-icon,
.google-review-button.contact-btn-circle:hover .contact-btn-label {
    color: white;
}

.google-review-block {
    margin-top: 10px;
}

.google-review-text {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 300px;
    position: relative;
}

.map-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 15px;
}

.map-placeholder.hidden {
    display: none;
}

.load-map-btn {
    margin-top: 15px;
    padding: 12px 30px;
    background: var(--accent-on-white);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-map-btn:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer a.footer-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.footer a.footer-link:hover {
    color: var(--secondary-color);
}

.footer-ai-notice {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 15px;
}

/* Scroll Buttons */

/* Legal Pages (Impressum, Datenschutz) */
.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: var(--bg-light);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.legal-content h1 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2rem;
}

.legal-content h2 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-content h3 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 1.5rem;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    color: var(--accent-color);
}

/* Reduzierte Bewegung für Barrierefreiheit */
@media (prefers-reduced-motion: reduce) {
    .aurora-bg {
        animation: none;
    }
    .reveal-section {
        opacity: 1 !important;
        transform: none !important;
        transition: none;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
    }

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

    .nav-menu {
        background: var(--bg-card);
    }

    .hamburger {
        display: flex;
    }

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

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

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .legal-content {
        padding: 30px 20px;
    }
}
