/* ==========================================================================
   1. Variables & Root
   ========================================================================== */
:root {
    --gold: #D4AF37;
    --gold-light: #F9E0A2;
    --gold-dark: #C0A34E;
    --dark: #0a0a0a;
    --silver: #C0C0C0;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   2. Base & Reset
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--dark);
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ==========================================================================
   3. Particles
   ========================================================================== */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    will-change: transform; /* Informiert Browser über erwartete Änderungen */
    transform: translateZ(0); /* Hardware-Acceleration aktivieren */
}

/* ==========================================================================
   4. Preloader
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.preloader-text {
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 0.2em;
}

/* ==========================================================================
   5. Navigation
   ========================================================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 1000;
    transition: var(--transition-medium);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
	height: 60px !important;
}

.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: var(--silver);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    transition: var(--transition-medium);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Submenu Styling */
.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.70);
    backdrop-filter: blur(10px);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 0;
    margin-top: 1rem;
    list-style: none;
}

.submenu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(10, 10, 10, 0.95);
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.submenu li {
    padding: 0;
    transition: all 0.3s ease;
}

.submenu li:hover {
    background-color: var(--gold);
}

.submenu a {
    color: var(--silver);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    white-space: nowrap;
    padding: 1rem 1.5rem;
}

.submenu li:hover a {
    color: var(--dark);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        transition: var(--transition-medium);
        z-index: 1000;
    }

    .nav-list.active {
        right: 0;
    }

    .nav-list > li {
        width: 100%;
        text-align: center;
    }

    /* Cursor für Submenu-Toggles */
    .has-submenu > .nav-link {
        cursor: s-resize;
    }

    .submenu {
        position: static;
        transform: none;
        background: transparent;
        width: 100%;
        margin: 0.5rem 0;
        padding: 0;
        display: none;
        opacity: 1;
        visibility: visible;
    }

    .has-submenu.active .submenu {
        display: block;
		transform: none;
    }
	
	.has-submenu:hover .submenu {
        transform: none;
    }

    .submenu li {
        padding: 0.5rem 0;
    }

    .submenu a {
        display: block;
        text-align: center;
        padding: 0.5rem 0;
    }

    .submenu::before {
        display: none;
    }

    .nav-overlay.active {
        display: block;
    }

    .hamburger.active span:first-child {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:last-child {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* Logo Styling */
.nav-logo {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.nav-logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition-medium);
	filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2)); /* Subtiler Schatten */
}

/* Größenanpassung bei Scroll */
.nav.scrolled .nav-logo-img {
    height: 40px;
}

/* Logo Animationen */
@keyframes logoFloat {
    0% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(2deg); }
    75% { transform: translateY(3px) rotate(-1deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.3)); }
    50% { filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5)); }
    100% { filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.3)); }
}

@keyframes logoScale {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-logo {
		top: 2rem;
        left: 1rem; /* Platz für Hamburger-Menü */
    }
    
    .nav-logo-img {
        height: 40px;
    }
    
    .nav.scrolled .nav-logo-img {
        height: 40px;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    position: fixed;
    right: 1.5rem;
    top: 1.5rem;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-medium);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

/* ==========================================================================
   6. Header
   ========================================================================== */
.header {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.header-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    z-index: 3;
}

.logo {
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    opacity: 0;
    background: linear-gradient(
        90deg,
        var(--gold) 0%,
        var(--gold-light) 25%,
        var(--gold) 50%,
        var(--gold-dark) 75%,
        var(--gold) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: goldGradient 8s linear infinite;
}

.tagline {
    font-size: 1.5rem;
    color: var(--silver);
    letter-spacing: 0.2em;
    opacity: 0;
    transform: translateY(30px);
}

/* ==========================================================================
   7. Sections
   ========================================================================== */
.section {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 21, 21, 0.9); /* Transparenter Hintergrund */
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    transition: opacity 3s ease; /* Längere Überblendung */
}

.section-background.animate {
    opacity: 1;
}

/* Goldene Lichtwelle */
.section-background.effect-wave::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.02) 25%,
        rgba(212, 175, 55, 0.05) 50%, /* Stärkerer Effekt */
        rgba(249, 224, 162, 0.03) 75%,
        transparent 100%
    );
    animation: lightWave 12s ease-in-out; /* Längere Animation */
}

/* Goldene Partikel */
.section-background.effect-particles::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: 
        radial-gradient(circle, var(--gold) 1px, transparent 1px),
        radial-gradient(circle, var(--gold) 1.5px, transparent 1.5px),
        radial-gradient(circle, var(--gold) 0.8px, transparent 0.8px);
    background-size: 
        80px 80px,
        60px 60px,
        40px 40px;
    background-position: 
        0 0,
        20px 20px,
        -10px -10px;
    opacity: 0.05;
    animation: particleFloat 12s linear; /* "infinite" entfernt */
}

/* Goldener Nebel */
.section-background.effect-mist::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(212, 175, 55, 0.04) 25%, /* Stärkerer Effekt */
        transparent 50%
    );
    animation: mistFlow 12s ease; /* Längere Animation */
}

/* Animationen */
@keyframes lightWave {
    0% { 
        transform: translateX(-50%) skewX(-15deg);
        opacity: 0;
    }
    30% { opacity: 1; }
    70% { opacity: 1; }
    100% { 
        transform: translateX(0%) skewX(-15deg);
        opacity: 0;
    }
}

@keyframes particleFloat {
    0% {
        transform: translate(-10%, -10%) rotate(0deg) scale(0.9);
        opacity: 0;
    }
    15% {
        opacity: 0.05;
    }
    25% {
        transform: translate(5%, 5%) rotate(90deg) scale(1);
        opacity: 0.05;
    }
    50% {
        transform: translate(10%, -5%) rotate(180deg) scale(1.1);
        opacity: 0.05;
    }
    75% {
        transform: translate(-5%, 10%) rotate(270deg) scale(1);
        opacity: 0.05;
    }
    85% {
        opacity: 0.05;
    }
    100% {
        transform: translate(-10%, -10%) rotate(360deg) scale(0.9);
        opacity: 0;
    }
}

@keyframes mistFlow {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0;
    }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% {
        transform: scale(1.2) rotate(360deg);
        opacity: 0;
    }
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    background: linear-gradient(
        90deg,
        var(--gold) 0%,
        var(--gold-light) 25%,
        var(--gold) 50%,
        var(--gold-dark) 75%,
        var(--gold) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: goldGradient 8s linear infinite;
}

.title-icon {
    margin-right: 1rem;
    color: var(--gold);
}

/* ==========================================================================
   8. Gallery Section
   ========================================================================== */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    opacity: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: var(--gold);
    font-size: 1.5rem;
    letter-spacing: 0.2em;
}

/* ==========================================================================
   9. Menu Section
   ========================================================================== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.menu-item {
    position: relative;
    padding: 2.5rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-color: var(--gold);
}

.menu-item-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.menu-item-details ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.menu-item-details li {
    margin: 0.8rem 0;
    color: var(--silver);
}

.menu-item-details i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 0.9em;
}

.availability-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 3px;
    margin-top: 1rem;
}

.menu-item-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--dark);
    padding: 0.5rem 1rem;
}

.menu-item-title {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ==========================================================================
   10. Parallax Section
   ========================================================================== */
.parallax-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    opacity: 0.4;
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    opacity: 0;
}

.parallax-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(
        90deg,
        var(--gold) 0%,
        var(--gold-light) 25%,
        var(--gold) 50%,
        var(--gold-dark) 75%,
        var(--gold) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: goldGradient 8s linear infinite;
}

/* ==========================================================================
   11. Events Section
   ========================================================================== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.event-card {
    position: relative;
    padding: 3rem 2rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.event-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.event-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.8rem;
    border-radius: 3px;
}

.event-price {
    font-size: 1.8rem;
    color: var(--gold);
    margin: 1rem 0;
    font-weight: bold;
}

.event-date {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.event-title {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* ==========================================================================
   12. Contact Form
   ========================================================================== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gold);
    color: white;
    font-size: 1rem;
    transition: var(--transition-medium);
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   13. Buttons
   ========================================================================== */
.submit-btn {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: var(--transition-medium);
}

.submit-btn:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

/* ==========================================================================
   14. Footer
   ========================================================================== */
.footer {
    background: #111111;
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.footer-section p {
    color: var(--silver);
    line-height: 1.8;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--silver);
}

/* ==========================================================================
   15. Animations
   ========================================================================== */
@keyframes goldGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ==========================================================================
   16. Responsive Design
   ========================================================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        transition: var(--transition-medium);
        z-index: 1000;
    }

    .nav-list.active {
        right: 0;
    }

    .nav-overlay.active {
        display: block;
    }

    .hamburger.active span:first-child {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:last-child {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .logo {
        font-size: 2.5rem;
        letter-spacing: 0.3em;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Fortsetzung der Media Queries */
    .parallax-title {
        font-size: 2.5rem;
    }

    .menu-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .menu-item,
    .event-card {
        margin-bottom: 2rem;
		height:360px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
        letter-spacing: 0.2em;
    }

    .section {
        padding: 4rem 1rem;
    }

    .menu-item,
    .event-card {
        padding: 1.5rem;
    }

    .parallax-title {
        font-size: 2rem;
    }

    .submit-btn {
        width: 100%;
        padding: 1rem;
    }
}

/* ==========================================================================
   17. Modal
   ========================================================================== */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 11000;
}

.modal-content {
    background: #151515;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 1px solid var(--gold);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-modal:hover {
    transform: rotate(90deg);
}

/* ==========================================================================
   18. Utility Classes
   ========================================================================== */
.hidden {
    display: none;
}

.no-scroll {
    overflow: hidden;
}

/* ==========================================================================
   19. Z-Index Management
   ========================================================================== */
:root {
    --z-particles: 1;
    --z-content: 5;
    --z-nav: 1000;
    --z-modal: 2000;
    --z-preloader: 3000;
}

.particles-container { z-index: var(--z-particles); }
.section-content { z-index: var(--z-content); }
.nav { z-index: var(--z-nav); }
.booking-modal { z-index: var(--z-modal); }
.preloader { z-index: var(--z-preloader); }

/* ==========================================================================
   20. Initial States for Animations
   ========================================================================== */
.section-title,
.menu-item,
.event-card,
.gallery {
    opacity: 1; /* Ändern von 0 auf 1 */
    visibility: visible;
}

.logo,
.tagline {
    opacity: 0;
}

/* 3D Icon Container Styles */
.icon-3d {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    perspective: 1000px;
}

.icon-3d-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-3d i {
    font-size: 2rem;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Glasmorphism Background */
.icon-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateZ(-20px);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* 3D Hover Animation */
.menu-item:hover .icon-3d-inner,
.event-card:hover .icon-3d-inner {
    transform: rotateY(180deg);
}

/* Animation für Icons */
@keyframes iconFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

.menu-item-icon i,
.event-icon i {
    animation: iconFloat 3s ease-in-out infinite;
}

/* ==========================================================================
   20. Whatsapp und ScrolltoTop
   ========================================================================== */

/* Floating Buttons */
.float-whatsapp {
    position: fixed;
    width: 43px;
    height: 43px;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    animation: pulse 2s infinite;
}

.float-whatsapp i {
    font-size: 40px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    width: 43px;
    height: 43px;
    bottom: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    z-index: 100;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .float-whatsapp {
        width: 40px;
        height: 40px;
        bottom: 20px;
        left: 20px;
    }
    
    .float-whatsapp i {
        font-size: 32px;
    }
    
    .scroll-top {
        width: 40px;
        height: 40px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
}

/* ==========================================================================
   20. Cookie Managment
   ========================================================================== */

/* Cookie Management Styles */
.cookie-banner {
    display: none; /* Standard: versteckt */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: var(--z-modal);
    border-top: 1px solid var(--gold);
    transform: translateY(100%);
    transition: var(--transition-medium);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner.visible {
    display: block;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: var(--silver);
}

.cookie-title {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cookie-text {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: var(--z-modal);
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.cookie-settings-content {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--gold);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
}

.cookie-category {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.cookie-category:last-child {
    border-bottom: none;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.category-title {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Custom Switch Styling */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: var(--transition-medium);
    border-radius: 34px;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition-medium);
    border-radius: 50%;
}

input:checked + .switch-slider {
    background-color: var(--gold);
}

input:disabled + .switch-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

input:checked + .switch-slider:before {
    transform: translateX(26px);
}

/* Cookie Settings Button */
.cookie-settings-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    transition: var(--transition-medium);
}

.cookie-settings-btn:hover {
    background: var(--gold);
    color: var(--dark);
}

/* Accept All Button */
.cookie-accept-all {
    background: var(--gold);
    border: none;
    color: var(--dark);
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    transition: var(--transition-medium);
}

.cookie-accept-all:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}


/* Cookie Details Styling */
.cookie-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
}

.cookie-details h5 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.cookie-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-item {
    color: var(--silver);
}

.cookie-name {
    font-weight: bold;
    display: inline-block;
}

.cookie-duration {
    font-size: 0.9rem;
    color: var(--silver);
    opacity: 0.8;
    display: inline-block;
    margin-left: 0.5rem;
}

.cookie-description {
    font-size: 0.9rem;
    margin-top: 0.3rem;
    line-height: 1.4;
}

/* Footer Cookie Settings Link */
.cookie-settings-footer {
    text-align: center;
    padding: 0.5rem 0;
}

.cookie-settings-link {
    background: none;
    border: none;
    color: var(--gold-dark);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.5rem;
    text-decoration: none;
    transition: var(--transition-medium);
    width: auto;
    display: inline-block;
}

.cookie-settings-link:hover {
    color: var(--gold) !important;
    text-decoration: none;
}

/* Modal Footer ohne doppelte Linie */
.modal-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.cookie-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner-content {
        padding: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-settings-content {
        width: 95%;
        padding: 1.5rem;
    }
	.cookie-settings-link {
        padding: 0.8rem;
        width: 100%;
        text-align: center;
    }

    .cookie-settings-footer {
        padding: 0;
    }
}

/* ==========================================================================
   20. Toast Managment
   ========================================================================== */

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    min-width: 300px;
    padding: 15px;
    border-radius: 4px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--silver);
}

.toast i {
    font-size: 1.2rem;
}

/* Toast Types */
.toast-success i {
    color: #4CAF50;
}

.toast-error i {
    color: #F44336;
}

.toast-warning i {
    color: #FFC107;
}

.toast-info i {
    color: #2196F3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .toast-container {
        top: auto;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .toast {
        min-width: auto;
        width: 100%;
    }
}

/* ==========================================================================
   20. Age Verification
   ========================================================================== */

/* Age Verification Modal */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.3s ease;
}

.age-verification-modal .modal-content {
    background: var(--dark);
    border: 2px solid var(--gold);
    max-width: 600px;
    width: 90%;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
}

.age-verification-modal .modal-header {
    margin-bottom: 2rem;
}

.age-verification-modal h2 {
    color: var(--gold);
    font-size: 2rem;
    margin: 0;
}

.age-verification-modal .warning-text {
    font-size: 1.2rem;
    color: var(--silver);
    margin-bottom: 2rem;
}

.age-verification-modal .legal-notice {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.age-verification-modal .legal-notice p {
    color: var(--gold);
    margin-bottom: 1rem;
}

.age-verification-modal .legal-notice ul {
    color: var(--silver);
    margin-left: 1.5rem;
}

.age-verification-modal .legal-notice ul ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.age-verification-modal .modal-footer {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.age-verification-modal .leave-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.8rem 2rem;
    cursor: pointer;
    transition: var(--transition-medium);
}

.age-verification-modal .leave-btn:hover {
    background: var(--gold);
    color: var(--dark);
}

.age-verification-modal .enter-btn {
    background: var(--gold);
    border: none;
    color: var(--dark);
    padding: 0.8rem 2rem;
    cursor: pointer;
    transition: var(--transition-medium);
}

.age-verification-modal .enter-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .age-verification-modal .modal-content {
        padding: 0.5rem;
    }
    
    .age-verification-modal h2 {
        font-size: 1rem;
    }
    
    .age-verification-modal .warning-text {
        font-size: 1rem;
    }
    
    .age-verification-modal .modal-footer {
        flex-direction: column;
    }
    
    .age-verification-modal .leave-btn,
    .age-verification-modal .enter-btn {
        width: 100%;
    }
}



/* ==========================================================================
   Block Components
   ========================================================================== */

.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 2rem 0;
}

.price-item {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(var(--gold-rgb), 0.3);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-medium);
    backdrop-filter: blur(10px);
    will-change: transform;
}

.price-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.price-title {
    color: var(--gold);
    font-size: 1.8rem;
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: bold;
    margin: 1rem 0;
}

.price-features {
    margin: 2rem 0;
}

.price-features ul {
    list-style: none;
    padding: 0;
}

.price-features li {
    margin: 0.8rem 0;
    color: var(--silver);
}

.price-features i {
    color: var(--gold);
    margin-right: 10px;
}

.price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(var(--gold-rgb), 0.1);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 3px;
    font-size: 0.9rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 2rem 0;
}

.service-item {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(var(--gold-rgb), 0.3);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-medium);
    backdrop-filter: blur(10px);
}

.service-title {
    color: var(--gold);
    font-size: 1.8rem;
    margin: 1.5rem 0;
}

.service-description {
    color: var(--silver);
    line-height: 1.6;
    margin: 1rem 0;
}

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.category-title {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-item {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(var(--gold-rgb), 0.3);
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gold);
    font-weight: bold;
}

.faq-question i {
    transition: var(--transition-medium);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: var(--silver);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-medium);
    padding: 2rem;
    text-align: center;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.gallery-description {
    color: var(--silver);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Modal Styles */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.gallery-navigation button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(var(--gold-rgb), 0.2);
    border: none;
    color: var(--gold);
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-navigation button:hover {
    background: rgba(var(--gold-rgb), 0.4);
}

.prev-image {
    left: 2rem;
}

.next-image {
    right: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .prices-grid,
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .price-item,
    .service-item {
        padding: 2rem 1.5rem;
    }

    .gallery-navigation button {
        padding: 0.5rem;
        font-size: 1.5rem;
    }

    .prev-image {
        left: 1rem;
    }

    .next-image {
        right: 1rem;
    }
}

/* ==========================================================================
   Contact und Newsletter Grid Layout
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-subtitle {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Newsletter Container */
.newsletter-container {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
}

.newsletter-content {
    width: 100%;
}

.newsletter-text {
    color: var(--silver);
    margin-bottom: 2rem;
    text-align: center;
}

.newsletter-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.newsletter-benefits li {
    color: var(--silver);
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.newsletter-benefits i {
    color: var(--gold);
    font-size: 1.2rem;
}

.newsletter-input-group {
    position: relative;
    margin-bottom: 1rem;
}

.newsletter-input-group input {
    width: 100%;
    padding: 1rem;
    padding-right: 4rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gold);
    color: white;
    border-radius: 4px;
}

.newsletter-submit {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    border: none;
    color: var(--dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-medium);
}

.newsletter-submit:hover {
    background: var(--gold-light);
    transform: translateY(-50%) scale(1.1);
}

.newsletter-privacy {
    font-size: 0.8rem;
    color: var(--silver);
    text-align: center;
}

.newsletter-privacy a {
    color: var(--gold);
    text-decoration: none;
}

.newsletter-privacy a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .newsletter-container {
        padding: 2rem 1.5rem;
    }
}
.confirmation-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.confirmation-box {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--gold);
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 8px;
}

.confirmation-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.confirmation-icon.success { color: var(--gold); }
.confirmation-icon.error { color: #f44336; }

.back-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-medium);
}

.back-home:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}
/* Button Loading State */
.submit-btn.loading, 
.newsletter-submit.loading {
    position: relative;
    color: transparent;
}

.submit-btn.loading::after,
.newsletter-submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--dark);
    border-top-color: transparent;
    border-radius: 50%;
    animation: button-loading 0.6s linear infinite;
}

@keyframes button-loading {
    to { transform: rotate(360deg); }
}

.newsletter-verification {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.newsletter-logo {
    margin-bottom: 3rem;
}

.newsletter-logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.confirmation-box {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--gold);
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 100%;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.confirmation-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.confirmation-box.success .confirmation-icon {
    color: var(--gold);
}

.confirmation-box.error .confirmation-icon {
    color: #f44336;
}

.confirmation-box h2 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.confirmation-message {
    color: var(--silver);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition-medium);
}

.back-home:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .newsletter-verification {
        padding: 1rem;
    }
    
    .confirmation-box {
        padding: 2rem 1.5rem;
    }
    
    .confirmation-icon {
        font-size: 3rem;
    }
    
    .confirmation-box h2 {
        font-size: 1.5rem;
    }
}