/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --gold: #d4af37;
    --gold-light: #f1dfa1;
    --dark: #1a1a1a;
    --dark-bg: #121212;
    --cream: #faf9f6;
    --text-muted: #888888;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

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

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header .container {
    max-width: 1400px; /* Weiter gefasst für Hamburger-Position */
    padding: 0 40px;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0; /* Standardmäßig unsichtbar */
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

header.scrolled .logo {
    opacity: 1; /* Sichtbar beim Scrollen */
    pointer-events: auto;
}

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

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 1.5s ease, visibility 1.5s ease;
    display: flex;
    flex-wrap: wrap; /* For mobile collapse */
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.hero-left {
    flex: 0 0 var(--hero-left-width, 50%);
    min-width: var(--hero-left-width, 50%);
    height: 100%;
    background: #ffffff var(--accent-bg) center/cover no-repeat;
    background-blend-mode: normal;
    position: relative;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.hero-right {
    flex: 0 0 var(--hero-right-width, 50%);
    min-width: var(--hero-right-width, 50%);
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-content {
    color: var(--white);
    text-align: left;
    max-width: 600px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

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

@media (max-width: 991px) {
    .hero-left {
        min-width: 100%;
        background: transparent !important;
        background-image: none !important;
        position: absolute;
        z-index: 10;
        padding: 40px;
        text-align: center;
        align-items: flex-start;
        padding-top: 15vh;
    }
    
    .hero-right {
        min-width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .hero-content {
        text-align: center;
        background: rgba(0,0,0,0.3);
        padding: 30px;
        border-radius: 20px;
        backdrop-filter: blur(5px);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gold);
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-cta:hover {
    background: var(--dark);
    transform: translateY(-5px);
}

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

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

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.section-title .line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
}

/* Price List */
.price-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.price-category h3 {
    font-size: 1.8rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: var(--gold);
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 5px;
}

.price-name { font-weight: 500; }
.price-val { font-weight: 600; color: var(--gold); }

/* Staff */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    justify-content: center;
}

.staff-card {
    text-align: center;
}

.staff-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    margin-bottom: 15px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.staff-card:hover .staff-img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* Footer */
footer {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), var(--accent-bg) center/cover no-repeat;
    color: var(--white);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 1.4rem;
}

/* Spezifische Footer-Farben */
.footer-hours h4, .footer-social h4, .footer-social a i {
    color: var(--gold) !important;
}

.footer-contact p, .footer-hours p, .footer-bottom, .footer-bottom a {
    color: var(--white) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    margin-top: 40px;
}

.footer-col p {
    font-size: 0.95rem;
    margin-top: 10px;
}

/* Gold Card System */
.gold-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gold-card {
    position: relative;
    background-color: #ffffff; /* Weißer Hintergrund lässt das Gold strahlen */
    background-image: var(--accent-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: normal; /* Normaler Modus für maximale Helligkeit */
    padding: 60px 40px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    transition: var(--transition);
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.gold-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0, var(--card-darkness));
    z-index: 1;
    transition: var(--transition);
}

.gold-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--hover-img);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: multiply; /* Optional: for a cooler blend effect */
}

.gold-card:hover::after {
    opacity: 0.25; /* "Schwach angezeigt" */
}

.gold-card-content {
    position: relative;
    z-index: 5;
}

.gold-card h2, .gold-card h3 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1;
    letter-spacing: 2px;
}

.gold-card p {
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.4;
}

.gold-card .price-item {
    border-bottom: 1px solid rgba(255,255,255,0.3);
    margin-bottom: 10px;
    padding-bottom: 5px;
    font-size: 1rem;
    font-weight: 500;
}

.gold-card .price-val {
    color: var(--white);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .gold-card-grid {
        grid-template-columns: 1fr;
    }
    .gold-card {
        padding: 40px 20px;
        min-height: 300px;
    }
    .gold-card h2, .gold-card h3 {
        font-size: 2.5rem;
    }
}

/* Hamburger Menu Toggle */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 22px;
    cursor: pointer;
    z-index: 2005;
    transition: var(--transition);
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--dark);
    transition: var(--transition);
}

#header.scrolled .hamburger span {
    background: var(--dark);
}

.hamburger.active {
    opacity: 0;
    pointer-events: none;
}

/* Fullscreen Menu Overlay */
#menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transform: translateY(-100%);
    background: var(--accent-bg) center/cover no-repeat;
    z-index: 2000;
    visibility: hidden;
    transition: transform 1.2s cubic-bezier(0.86, 0, 0.07, 1), visibility 0.1s linear 1.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden; /* Verhindert horizontales Scrollen */
    overflow-y: auto;
}

#menu-overlay.active {
    transform: translateY(0);
    visibility: visible;
    transition: transform 1.2s cubic-bezier(0.86, 0, 0.07, 1), visibility 0s linear;
}

.menu-container {
    width: 100%;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px;
    padding-top: calc(60px + env(safe-area-inset-top));
    display: flex;
    align-items: center;
}

.menu-content-split {
    display: flex;
    width: 100%;
    gap: 100px;
}

.menu-left-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease 0.6s;
}

#menu-overlay.active .menu-left-info {
    opacity: 1;
    transform: translateX(0);
}

.menu-right-nav {
    flex: 1;
    border-left: 1px solid rgba(0,0,0,0.1);
    padding-left: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-logo img {
    height: 120px;
    width: auto;
}

.menu-info-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark);
    max-width: 500px;
}

.menu-right-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-right-nav ul li {
    margin-bottom: 25px;
    position: relative;
    padding-left: 60px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

#menu-overlay.active .menu-right-nav ul li {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered Delay for Menu Items */
#menu-overlay.active .menu-right-nav ul li:nth-child(1) { transition-delay: 0.6s; }
#menu-overlay.active .menu-right-nav ul li:nth-child(2) { transition-delay: 0.7s; }
#menu-overlay.active .menu-right-nav ul li:nth-child(3) { transition-delay: 0.8s; }
#menu-overlay.active .menu-right-nav ul li:nth-child(4) { transition-delay: 0.9s; }
#menu-overlay.active .menu-right-nav ul li:nth-child(5) { transition-delay: 1.0s; }
#menu-overlay.active .menu-right-nav ul li:nth-child(6) { transition-delay: 1.1s; }

.menu-right-nav ul li::before {
    content: attr(data-num);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: var(--dark);
    opacity: 0.5;
    font-family: serif;
}

.menu-right-nav a {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-block;
}

.menu-right-nav a:hover {
    color: var(--white);
    transform: translateX(10px);
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 6rem;
    cursor: pointer;
    color: var(--dark);
    transition: var(--transition);
    line-height: 1;
}

.menu-close:hover {
    transform: rotate(90deg);
}

.no-scroll { overflow: hidden; }

@media (max-width: 991px) {
    .menu-content-split {
        flex-direction: column;
        gap: 50px;
    }
    
    .menu-left-info {
        display: none; /* Hide left info on mobile for simplicity, or re-stack */
    }
    
    .menu-right-nav {
        border-left: none;
        padding-left: 0;
        align-items: flex-start;
        text-align: left;
    }

    .menu-right-nav ul li {
        padding-left: 40px;
        margin-bottom: 20px;
    }
    
    .menu-right-nav a {
        font-size: 2.2rem;
    }

    .menu-info-text {
        text-align: left;
    }
}
/* Gallery Carousel */
.gallery-carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 0;
    margin-top: 20px;
}

.gallery-carousel {
    overflow: hidden;
    width: 100%;
}

.gallery-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    gap: 15px;
    padding: 0 15px;
}

.gallery-slide {
    flex: 0 0 calc(33.333% - 13.333px); /* 3 Bilder auf Desktop */
    min-width: calc(33.333% - 13.333px);
    aspect-ratio: 4/5; /* Portrait Modus */
    overflow: hidden;
    border-radius: 4px;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-slide:hover img {
    transform: scale(1.05);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.gallery-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev { left: 20px; }
.gallery-nav.next { right: 20px; }

@media (max-width: 991px) {
    .gallery-slide {
        flex: 0 0 calc(50% - 7.5px); /* 2 Bilder auf Tablet */
        min-width: calc(50% - 7.5px);
    }
}

@media (max-width: 600px) {
    .gallery-slide {
        flex: 0 0 100%; /* 1 Bild auf Smartphone */
        min-width: 100%;
    }
    .gallery-track {
        padding: 0 10px;
    }
}
/* Global Button Styles */
.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid white;
    color: white;
    background: transparent;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.btn-outline:hover {
    background: white;
    color: var(--dark, #1a1a1a);
}

/* Scroll Animations (AOS) */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays */
[data-aos][data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos][data-aos-delay="400"] { transition-delay: 400ms; }
[data-aos][data-aos-delay="600"] { transition-delay: 600ms; }
