/*
Theme Name: Hot Gold Club
Theme URI: https://example.com/hot-gold-theme
Description: Ein elegantes schwarzes Theme mit goldenen Akzenten für exklusive FKK-Saunaclubs und Nachtclubs
Author: Ihr Name
Author URI: https://example.com
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hot-gold
Tags: black, gold, dark, responsive-layout, custom-background, custom-colors, custom-header, custom-menu
*/

/* ---------- CORE VARIABLES ---------- */
:root {
    /* Colors */
    --gold-primary: #D4AF37;
    --gold-light: #F8D568;
    --gold-dark: #AA8C2C;
    --black: #000000;
    --dark-gray: #0A0A0A;
    --dark-gray-2: #121212;
    --medium-gray: #222222;
    --light-gray: #333333;
    --white: #FFFFFF;
    --white-dim: rgba(255, 255, 255, 0.85);
    --transparent-black: rgba(0, 0, 0, 0.7);
    --transparent-gold: rgba(212, 175, 55, 0.2);
    
    /* Shadows */
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.8);
    --shadow-gold: 0 0 15px rgba(212, 175, 55, 0.5);
    --text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    
    /* Transitions */
    --transition-fast: all 0.2s ease-out;
    --transition-normal: all 0.3s ease-out;
    --transition-slow: all 0.5s ease-out;
    --transition-very-slow: all 0.8s ease-out;
    
    /* Z-indexes */
    --z-background: -1;
    --z-normal: 1;
    --z-menu: 100;
    --z-overlay: 200;
    --z-modal: 300;
    --z-max: 9999;
}

/* ---------- RESET & BASE STYLES ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-primary) var(--dark-gray);
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 0;
    animation: fadeIn 1.5s forwards;
    background-image: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)),
        url('../images/texture-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
}

/* Custom scrollbar for WebKit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-shadow: var(--text-shadow);
}

h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--gold-primary);
    background: linear-gradient(90deg, var(--gold-primary), transparent);
    box-shadow: var(--shadow-gold);
}

h2.centered::after {
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: var(--transition-normal);
    position: relative;
}

a:hover {
    color: var(--gold-light);
}

a.animated::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--gold-light);
    box-shadow: var(--shadow-gold);
    transition: var(--transition-normal);
}

a.animated:hover::after {
    width: 100%;
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

ul li, ol li {
    margin-bottom: 0.5rem;
}

button, .btn {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--gold-primary);
    padding: 0.8rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    z-index: var(--z-normal);
}

button::before, .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-primary);
    transition: var(--transition-normal);
    z-index: -1;
}

button:hover::before, .btn:hover::before {
    left: 0;
}

button:hover, .btn:hover {
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

.btn-filled {
    background-color: var(--gold-primary);
    color: var(--black);
}

.btn-filled::before {
    background: var(--gold-light);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-normal);
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-sm {
    padding: 3rem 0;
}

.section-lg {
    padding: 8rem 0;
}

.section-dark {
    background-color: var(--dark-gray-2);
}

.section-pattern {
    background-image: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)),
        url('../images/pattern-bg.jpg');
    background-size: 200px;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-gold {
    color: var(--gold-primary);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.py-1 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-2 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-3 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-4 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 100% 0; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ---------- HEADER & NAVIGATION ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: var(--z-menu);
    transition: var(--transition-normal);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header.scrolled {
    padding: 0.8rem 0;
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    transition: var(--transition-normal);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.header.scrolled .logo img {
    height: 45px;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: var(--z-max);
}

.nav-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    margin: 6px;
    background-color: var(--white);
    transition: var(--transition-normal);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--gold-primary);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--gold-primary);
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0 1.2rem;
}

.main-nav a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a:hover {
    color: var(--gold-primary);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-primary);
    transition: var(--transition-normal);
}

.main-nav a:hover::after,
.main-nav .active a::after {
    width: 100%;
    box-shadow: var(--shadow-gold);
}

.header-cta {
    margin-left: 2rem;
}

.header-cta .btn {
    padding: 0.6rem 1.5rem;
}

/* ---------- HERO SECTION ---------- */
.hero {
    height: 100vh;
    min-height: 700px;
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--black);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: var(--z-background);
    opacity: 0.6;
    animation: fadeIn 1.5s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    z-index: var(--z-background);
}

.hero-content {
    width: 100%;
    max-width: 1000px;
    padding: 0 2rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: var(--z-normal);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: slideInUp 1s 0.3s forwards;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideInUp 1s 0.6s forwards;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: slideInUp 1s 0.9s forwards;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    animation: slideInUp 1s 1.2s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: pulse 2s infinite;
    cursor: pointer;
    opacity: 0;
    animation: 
        fadeIn 1s 1.5s forwards,
        pulse 2s 1.5s infinite;
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.3), transparent);
    z-index: 1;
    transition: var(--transition-normal);
}

.about-image:hover::before {
    opacity: 0.7;
}

.about-image img {
    width: 100%;
    height: auto;
    transform: scale(1.01);
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    opacity: 0;
    transform: translateX(30px);
    transition: var(--transition-slow);
}

.about-content.animated {
    opacity: 1;
    transform: translateX(0);
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.feature-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-right: 1rem;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.feature-item:hover .feature-icon {
    background-color: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

/* ---------- SERVICES & PRODUCTS SECTION ---------- */
.services-section {
    background-color: var(--dark-gray-2);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--medium-gray);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.service-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
    transition: var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    background-color: var(--light-gray);
}

.service-card:hover::before {
    width: 100%;
}

.service-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--gold-primary);
    transition: var(--transition-normal);
}

.service-card:hover .service-title::after {
    width: 80px;
}

.service-description {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--gold-primary);
    display: block;
    margin-bottom: 1rem;
}

/* ---------- GALLERY SECTION ---------- */
.gallery-section {
    overflow: hidden;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery-filter {
    padding: 0.5rem 1.5rem;
    background-color: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-normal);
    border-radius: 50px;
    font-size: 0.9rem;
}

.gallery-filter:hover,
.gallery-filter.active {
    background-color: var(--gold-primary);
    color: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    height: 300px;
    opacity: 0;
    transform: scale(0.9);
    transition: var(--transition-slow);
    cursor: pointer;
}

.gallery-item.animated {
    opacity: 1;
    transform: scale(1);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-icon {
    color: var(--white);
    font-size: 2rem;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-icon {
    transform: translateY(0);
}

/* ---------- TESTIMONIALS SECTION ---------- */
.testimonials-section {
    background-color: var(--dark-gray-2);
    position: relative;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    background-color: var(--medium-gray);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    margin: 1rem;
    transition: var(--transition-normal);
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: var(--gold-primary);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-content {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: var(--z-normal);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold-primary);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-gold);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.author-title {
    font-size: 0.9rem;
    color: var(--gold-primary);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 1rem;
    z-index: var(--z-normal);
}

.testimonial-button {
    background-color: transparent;
    border: none;
    color: var(--gold-primary);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-normal);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.testimonial-button:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.testimonial-dot.active {
    background-color: var(--gold-primary);
    transform: scale(1.2);
    box-shadow: var(--shadow-gold);
}

/* ---------- EVENTS SECTION ---------- */
.events-section {
    position: relative;
}

.events-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.event-tab {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
}

.event-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--gold-primary);
    transition: var(--transition-normal);
}

.event-tab:hover,
.event-tab.active {
    color: var(--gold-primary);
}

.event-tab.active::after {
    width: 100%;
}

.events-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.event-card {
    background-color: var(--medium-gray);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    width: calc(33.33% - 1.34rem);
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
    opacity: 0;
    transform: translateY(30px);
}

.event-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.event-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--gold-primary);
    color: var(--black);
    padding: 0.5rem 1rem;
    font-weight: bold;
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
}

.event-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.event-description {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.event-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-time {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.event-time i {
    color: var(--gold-primary);
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
    background-color: var(--dark-gray-2);
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    opacity: 0;
    transform: translateX(-30px);
    transition: var(--transition-slow);
}

.contact-info.animated {
    opacity: 1;
    transform: translateX(0);
}

.contact-heading {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-right: 1rem;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.contact-item:hover .contact-icon {
    background-color: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.contact-text h4 {
    margin-bottom: 0.3rem;
}

.contact-map {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 300px;
    margin-top: 2rem;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--medium-gray);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.social-link:hover {
    background-color: var(--gold-primary);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.contact-form {
    background-color: var(--medium-gray);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateX(30px);
    transition: var(--transition-slow);
}

.contact-form.animated {
    opacity: 1;
    transform: translateX(0);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: var(--dark-gray);
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition-normal);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-button {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

/* ---------- FOOTER ---------- */
.footer {
    background-color: var(--dark-gray);
    padding-top: 5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 70px;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.footer-about {
    margin-bottom: 2rem;
}

.footer-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white);
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-links a i {
    margin-right: 0.5rem;
    color: var(--gold-primary);
    font-size: 0.8rem;
}

.footer-newsletter p {
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-input {
    flex-grow: 1;
    padding: 0.8rem 1rem;
    background-color: var(--medium-gray);
    border: 1px solid var(--light-gray);
    border-radius: 4px 0 0 4px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition-normal);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.newsletter-button {
    padding: 0 1.5rem;
    background-color: var(--gold-primary);
    color: var(--black);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition-normal);
}

.newsletter-button:hover {
    background-color: var(--gold-light);
}

.footer-bottom {
    background-color: var(--black);
    padding: 1.5rem 0;
    margin-top: 5rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer-copyright {
    margin-bottom: 0.5rem;
}

.footer-policy {
    margin-top: 0.5rem;
    color: var(--light-gray);
}

.footer-policy a {
    color: var(--light-gray);
    margin: 0 0.5rem;
}

.footer-policy a:hover {
    color: var(--gold-primary);
}

/* ---------- MODAL ---------- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 900px;
    background-color: var(--dark-gray);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: var(--transition-normal);
}

.modal.open .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--light-gray);
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.modal-close:hover {
    color: var(--gold-primary);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.modal-image {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.modal-footer {
    padding: 1.5rem;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid var(--light-gray);
}

/* ---------- PRELOADER ---------- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    z-index: var(--z-max);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-slow);
}

.preloader.fade-out {
    opacity: 0;
}

.loader {
    width: 80px;
    height: 80px;
    position: relative;
}

.loader:before, .loader:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--gold-primary);
}

.loader:before {
    animation: rotate 1.5s linear infinite;
    z-index: 2;
}

.loader:after {
    border: 3px solid rgba(212, 175, 55, 0.1);
    z-index: 1;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--gold-primary);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-normal);
    opacity: 0;
    visibility: hidden;
    z-index: var(--z-overlay);
    box-shadow: var(--shadow-md);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--gold-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ---------- MENU & PRICING ---------- */
.menu-section {
    position: relative;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 0.7rem 1.5rem;
    background-color: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--white);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 0.9rem;
}

.menu-tab:hover,
.menu-tab.active {
    background-color: var(--gold-primary);
    color: var(--black);
}

.menu-content {
    display: none;
}

.menu-content.active {
    display: block;
    animation: fadeIn 0.5s;
}

.menu-list {
    margin-bottom: 3rem;
}

.menu-category {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.menu-category::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.menu-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 4px;
    background-color: var(--medium-gray);
    transition: var(--transition-normal);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-slow);
}

.menu-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.menu-item:hover {
    box-shadow: var(--shadow-md);
    background-color: var(--light-gray);
    transform: translateY(-5px);
}

.menu-item-content {
    flex-grow: 1;
}

.menu-item-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.menu-item-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-primary);
    transition: var(--transition-normal);
}

.menu-item:hover .menu-item-title::after {
    width: 100%;
}

.menu-item-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.menu-item-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--gold-primary);
    min-width: 80px;
    text-align: right;
    position: relative;
}

.menu-item-price::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--gold-primary);
    transform: translateY(-50%);
}

.menu-item-badge {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    font-size: 0.75rem;
    font-weight: bold;
    background-color: var(--gold-primary);
    color: var(--black);
    border-radius: 20px;
    margin-left: 0.5rem;
    text-transform: uppercase;
}

.menu-item-special {
    position: relative;
    overflow: hidden;
}

.menu-item-special::before {
    content: 'Special';
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--gold-primary);
    color: var(--black);
    padding: 0.2rem 3rem;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

/* ---------- PRICING TABLES ---------- */
.pricing-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    background-color: var(--medium-gray);
    border-radius: 4px;
    overflow: hidden;
    width: 300px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.pricing-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.pricing-header {
    background-color: var(--dark-gray);
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent 50%);
    z-index: 1;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.pricing-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.pricing-price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    text-shadow: var(--shadow-gold);
}

.pricing-price span {
    font-size: 1rem;
    vertical-align: super;
}

.pricing-duration {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
}

.pricing-features {
    padding: 2rem;
}

.pricing-feature {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.pricing-feature i {
    color: var(--gold-primary);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.pricing-feature.disabled {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-feature.disabled i {
    color: rgba(255, 255, 255, 0.3);
}

.pricing-cta {
    padding: 0 2rem 2rem;
    text-align: center;
}

.pricing-button {
    width: 100%;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 1px solid var(--gold-primary);
}

.pricing-card.featured .pricing-header {
    background-color: var(--gold-primary);
    color: var(--black);
}

.pricing-card.featured .pricing-price {
    color: var(--black);
    text-shadow: none;
}

.pricing-card.featured .pricing-subtitle,
.pricing-card.featured .pricing-duration {
    color: rgba(0, 0, 0, 0.7);
}

.pricing-card.featured .pricing-header::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 50%);
}

.pricing-card.featured .pricing-button {
    background-color: var(--gold-primary);
    color: var(--black);
    border-color: var(--gold-primary);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--black);
    color: var(--gold-primary);
    padding: 0.3rem 3rem;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    z-index: 3;
}

/* ---------- RESPONSIVE STYLES ---------- */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .about-container,
    .contact-container {
        gap: 3rem;
    }
    
    .event-card {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .header {
        padding: 1rem 0;
    }
    
    .header.scrolled {
        padding: 0.7rem 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--dark-gray);
        border-left: 1px solid rgba(212, 175, 55, 0.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        overflow-y: auto;
        transition: var(--transition-normal);
        z-index: var(--z-menu);
    }
    
    .main-nav.open {
        right: 0;
        box-shadow: var(--shadow-lg);
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    .main-nav li {
        margin: 0 0 1.5rem;
        width: 100%;
    }
    
    .main-nav a {
        display: block;
        padding: 0.7rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .header-cta {
        margin-left: 1rem;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .testimonial-nav {
        display: none;
    }
    
    .event-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 350px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-lg {
        padding: 6rem 0;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-bottom {
        margin-top: 3rem;
    }
    
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .menu-item {
        grid-template-columns: 1fr;
    }
    
    .menu-item-price {
        text-align: left;
        margin-top: 0.5rem;
    }
    
    .menu-item-price::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .testimonial-item {
        padding: 1.5rem;
    }
    
    .menu-tabs,
    .gallery-filters,
    .events-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.7rem;
    }
    
    .menu-tab,
    .gallery-filter,
    .event-tab {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* ---------- LIGHT THEME (OPTIONAL) ---------- */
body.light-theme {
    background-color: #f8f8f8;
    color: #333;
    background-image: 
        linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)),
        url('../images/texture-bg-light.jpg');
}

body.light-theme h1,
body.light-theme h2,
body.light-theme h3,
body.light-theme h4,
body.light-theme h5,
body.light-theme h6 {
    color: #222;
    text-shadow: none;
}

body.light-theme .header {
    background-color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

body.light-theme .header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
}

body.light-theme .main-nav a {
    color: #333;
}

body.light-theme .nav-toggle span {
    background-color: #333;
}

body.light-theme .nav-toggle.active span {
    background-color: var(--gold-primary);
}

body.light-theme .section-dark {
    background-color: #f0f0f0;
}

body.light-theme .section-pattern {
    background-image: 
        linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)),
        url('../images/pattern-bg-light.jpg');
}

body.light-theme .service-card,
body.light-theme .event-card,
body.light-theme .testimonial-item,
body.light-theme .contact-form,
body.light-theme .menu-item,
body.light-theme .pricing-card {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

body.light-theme .service-card:hover,
body.light-theme .event-card:hover,
body.light-theme .testimonial-item:hover,
body.light-theme .menu-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 15px rgba(212, 175, 55, 0.3);
}

body.light-theme .form-control {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #333;
}

body.light-theme .menu-item-description {
    color: #666;
}

body.light-theme .footer {
    background-color: #222;
    color: #fff;
}

body.light-theme .footer h3,
body.light-theme .footer h4 {
    color: #fff;
}

body.light-theme .footer-bottom {
    background-color: #111;
}

/* ---------- THEME TOGGLE ---------- */
.theme-toggle {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--gold-primary);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: var(--z-overlay);
    box-shadow: var(--shadow-md);
}

.theme-toggle:hover {
    background-color: var(--gold-light);
    transform: rotate(30deg);
    box-shadow: var(--shadow-lg);
}

.light-theme .theme-toggle .fa-sun {
    display: none;
}

.light-theme .theme-toggle .fa-moon {
    display: block;
}

.theme-toggle .fa-sun {
    display: block;
}

.theme-toggle .fa-moon {
    display: none;
}

/* ---------- ADDITIONAL EFFECTS & ANIMATIONS ---------- */
/* Text shimmer effect */
.text-shimmer {
    background: linear-gradient(to right, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* Gradient border */
.gradient-border {
    position: relative;
    background: var(--medium-gray);
    background-clip: padding-box;
    border: 2px solid transparent;
    border-radius: 4px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: -2px;
    border-radius: 4px;
    background: linear-gradient(45deg, var(--gold-primary), transparent, var(--gold-primary));
    z-index: -1;
}

/* Glow effect on hover */
.glow-on-hover {
    transition: var(--transition-normal);
}

.glow-on-hover:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* Rotating element */
.rotate-element {
    animation: rotate 10s linear infinite;
}

/* Parallax elements */
.parallax-element {
    transition: transform 0.2s cubic-bezier(0.2, 0.49, 0.32, 0.99);
}

/* Gold gradient background */
.gold-gradient {
    background: linear-gradient(45deg, var(--gold-dark), var(--gold-primary), var(--gold-light), var(--gold-primary), var(--gold-dark));
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

/* Typewriter effect for headings */
.typewriter h1 {
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 3.5s steps(40, end);
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

/* Spotlight effect for hero section */
.spotlight {
    position: relative;
    overflow: hidden;
}

.spotlight::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
}

.spotlight:hover::after {
    opacity: 1;
}

/* Reveal on scroll animations */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal-down {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.8s ease;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.reveal-rotate {
    opacity: 0;
    transform: rotate(10deg) scale(0.9);
    transition: all 0.8s ease;
}

.reveal-left.active,
.reveal-right.active,
.reveal-up.active,
.reveal-down.active,
.reveal-scale.active,
.reveal-rotate.active {
    opacity: 1;
    transform: translate(0) scale(1) rotate(0);
}

/* Gold text shadow */
.gold-text-shadow {
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

/* Custom cursor for special elements */
.custom-cursor {
    cursor: url('../images/custom-cursor.png'), auto;
}

/* Gold hover underline effect */
.gold-underline {
    position: relative;
    display: inline-block;
}

.gold-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--gold-primary);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.gold-underline:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* 3D card flip effect */
.card-3d {
    perspective: 1000px;
    transform-style: preserve-3d;
    position: relative;
    height: 400px;
    cursor: pointer;
}

.card-3d-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.card-3d:hover .card-3d-inner {
    transform: rotateY(180deg);
}

.card-3d-front, .card-3d-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
}

.card-3d-front {
    background-color: var(--medium-gray);
    color: var(--white);
}

.card-3d-back {
    background-color: var(--gold-primary);
    color: var(--black);
    transform: rotateY(180deg);
}

/* Distortion effect on hover */
.distort-on-hover {
    transition: all 0.5s;
}

.distort-on-hover:hover {
    transform: perspective(500px) rotateX(10deg) scale(1.05);
}

/* Smooth gradient animation */
.gradient-animation {
    background: linear-gradient(-45deg, var(--gold-dark), var(--gold-primary), var(--gold-light), var(--gold-primary));
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

/* Loading bar animations */
.loading-bar {
    height: 3px;
    width: 0;
    background-color: var(--gold-primary);
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-max);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
    transition: width 0.4s ease;
}

/* Image hover zoom effect */
.zoom-effect {
    overflow: hidden;
}

.zoom-effect img {
    transition: transform 0.5s ease;
}

.zoom-effect:hover img {
    transform: scale(1.1);
}

/* Gold decoration shapes */
.gold-decoration {
    position: absolute;
    z-index: -1;
    opacity: 0.1;
    pointer-events: none;
}

.gold-circle {
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
}

.gold-square {
    border: 2px solid var(--gold-primary);
    transform: rotate(45deg);
}

.gold-line {
    height: 2px;
    background-color: var(--gold-primary);
}

/* Special styles for the menu page */
.menu-special-header {
    padding: 3rem 0;
    background-color: var(--dark-gray-2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.menu-special-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/menu-pattern.png');
    background-size: 200px;
    opacity: 0.05;
    z-index: 0;
}

.menu-special-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.menu-special-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Table styles for pricing */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-table th {
    background-color: var(--dark-gray-2);
    font-weight: bold;
    color: var(--gold-primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.pricing-table tr:hover td {
    background-color: rgba(212, 175, 55, 0.05);
}

.price-value {
    font-weight: bold;
    color: var(--gold-primary);
}

/* Night club specific elements */
.vip-badge {
    display: inline-block;
    background-color: var(--gold-primary);
    color: var(--black);
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 0.5rem;
    box-shadow: var(--shadow-gold);
}

.special-event-banner {
    background-color: var(--dark-gray-2);
    padding: 2rem;
    border-radius: 4px;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.special-event-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), transparent);
}

.special-event-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold-primary);
}

.special-event-date {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 3px;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.special-event-date i {
    color: var(--gold-primary);
    margin-right: 0.5rem;
}

/* Club amenities section */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.amenity-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--medium-gray);
    border-radius: 4px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.amenity-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background-color: var(--gold-primary);
    transition: var(--transition-normal);
}

.amenity-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.amenity-item:hover::before {
    left: 0;
}

.amenity-icon {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.amenity-item:hover .amenity-icon {
    transform: scale(1.1);
}

.amenity-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.amenity-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Club gallery masonry layout */
.gallery-masonry {
    column-count: 3;
    column-gap: 1.5rem;
    margin: 3rem 0;
}

.gallery-masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.gallery-masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-normal);
}

.gallery-masonry-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .gallery-masonry {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .gallery-masonry {
        column-count: 1;
    }
    
    .theme-toggle {
        bottom: 1.5rem;
        left: 1.5rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Music player styling */
.music-player {
    position: fixed;
    bottom: -80px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: var(--z-overlay);
    transition: var(--transition-normal);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.music-player.show {
    bottom: 0;
}

.music-player-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.music-info {
    display: flex;
    align-items: center;
}

.music-thumbnail {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.music-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.music-details {
    line-height: 1.3;
}

.music-title {
    font-weight: bold;
    font-size: 1rem;
}

.music-artist {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.music-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.music-control-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.music-control-btn:hover {
    color: var(--gold-primary);
    transform: scale(1.1);
}

.music-play-btn {
    width: 40px;
    height: 40px;
    background-color: var(--gold-primary);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.music-play-btn:hover {
    background-color: var(--gold-light);
    transform: scale(1.1);
}

.music-progress {
    flex-grow: 1;
    margin: 0 2rem;
    position: relative;
}

.music-progress-bar {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.music-progress-current {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--gold-primary);
    border-radius: 2px;
}

.music-times {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.music-volume {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.music-volume-icon {
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
}

.music-volume-slider {
    width: 80px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.music-volume-level {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--gold-primary);
    border-radius: 2px;
}

.music-toggle-btn {
    position: absolute;
    top: -40px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--gold-primary);
    color: var(--black);
    border-radius: 50% 50% 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
}

.music-toggle-btn:hover {
    background-color: var(--gold-light);
}

@media (max-width: 992px) {
    .music-player-container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .music-info {
        margin-bottom: 1rem;
    }
    
    .music-progress {
        width: 100%;
        margin: 1rem 0;
    }
    
    .music-controls {
        width: 100%;
        justify-content: center;
    }
    
    .music-volume {
        display: none;
    }
}

/* Age verification modal */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-verification-content {
    background-color: var(--dark-gray);
    border-radius: 4px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.age-verification-logo {
    margin-bottom: 2rem;
}

.age-verification-logo img {
    height: 80px;
    margin: 0 auto;
}

.age-verification-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.age-verification-text {
    margin-bottom: 2rem;
}

.age-verification-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.age-verification-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

/* Gold sparkle animation */
.gold-sparkle {
    position: absolute;
    pointer-events: none;
    width: 10px;
    height: 10px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px 2px var(--gold-primary);
    opacity: 0;
    animation: sparkle 2s ease-in-out forwards;
}

@keyframes sparkle {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    20% {
        opacity: 1;
        transform: scale(1);
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}
.page-header {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    margin-bottom: 50px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    z-index: var(--z-background);
}

.page-header-content {
    position: relative;
    z-index: var(--z-normal);
    max-width: 1000px;
    padding: 0 20px;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInDown 1s ease-out forwards;
}

.breadcrumbs {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeIn 1s 0.3s forwards;
    opacity: 0;
}

.breadcrumbs a {
    color: var(--gold-primary);
    transition: var(--transition-normal);
}

.breadcrumbs a:hover {
    color: var(--gold-light);
}

/* ---------- CONTENT ENHANCEMENTS ---------- */
.page-content-container {
    position: relative;
    background-color: rgba(18, 18, 18, 0.5);
    padding: 30px;
    border-radius: 5px;
    box-shadow: var(--shadow-md);
    margin-bottom: 50px;
    overflow: hidden;
}

.page-content-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0.7;
}

/* Verbesserte Stile für WordPress-Blöcke */
.wp-block-heading {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.wp-block-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.wp-block-heading + p {
    margin-top: -10px;
}

.wp-block-table {
    margin: 30px 0;
    overflow: hidden;
    border-radius: 5px;
}

.wp-block-table table {
    width: 100%;
    border-collapse: collapse;
}

.wp-block-table th {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.wp-block-table td, .wp-block-table th {
    padding: 12px 15px;
    text-align: left;
}

.wp-block-table tr {
    transition: var(--transition-normal);
}

.wp-block-table tr:hover {
    background-color: rgba(212, 175, 55, 0.05);
}

.wp-block-list {
    margin-left: 20px;
    margin-bottom: 25px;
}

.wp-block-list li {
    position: relative;
    padding-left: 10px;
    margin-bottom: 8px;
}

.wp-block-list li::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--gold-primary);
    border-radius: 50%;
}

.wp-block-separator {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: 40px 0;
}

.wp-block-quote {
    position: relative;
    font-style: italic;
    border-left: 3px solid var(--gold-primary);
    padding: 10px 20px;
    margin: 30px 0;
    background-color: rgba(212, 175, 55, 0.05);
}

.wp-block-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.2);
    font-family: 'Playfair Display', serif;
}

.wp-block-image {
    margin: 30px 0;
}

.wp-block-image img {
    border-radius: 5px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.wp-block-image:hover img {
    box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.wp-block-image figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

/* ---------- SPECIFIC PAGE STYLES ---------- */
/* Events Page */
.page-id-18 .wp-block-heading {
    color: var(--gold-primary);
    margin-top: 40px;
}

.page-id-18 strong {
    color: var(--gold-primary);
    font-weight: 600;
}

.page-id-18 .wp-block-heading + p {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 15px;
}

/* Menu Page */
.menu-item {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    background-color: rgba(18, 18, 18, 0.5);
}

.menu-item:hover {
    background-color: rgba(33, 33, 33, 0.5);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.menu-item strong {
    color: var(--gold-primary);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

.menu-item-price {
    font-weight: bold;
    color: var(--gold-primary);
    font-size: 1.1rem;
}

/* Gallery/Ambiente Page */
.zoom-effect {
    overflow: hidden;
    border-radius: 5px;
}

.zoom-effect img {
    transition: transform 0.5s ease;
}

.zoom-effect:hover img {
    transform: scale(1.05);
}

/* ---------- PARTICLE STYLES ---------- */
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background-color: var(--gold-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* ---------- UTILITY CLASSES ---------- */
.text-gold {
    color: var(--gold-primary) !important;
}

.gold-text-shadow {
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.gold-underline {
    position: relative;
    display: inline-block;
}

.gold-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--gold-primary);
    transition: var(--transition-normal);
}

.gold-underline:hover::after {
    width: 100%;
}

.gradient-border {
    position: relative;
    background-clip: padding-box;
    border: 2px solid transparent;
    border-radius: 5px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: -2px;
    border-radius: 5px;
    background: linear-gradient(45deg, var(--gold-primary), transparent, var(--gold-primary));
    z-index: -1;
    opacity: 0.5;
}

.glow-on-hover {
    transition: var(--transition-normal);
}

.glow-on-hover:hover {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* ---------- ANIMATION CLASSES ---------- */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.text-shimmer {
    background: linear-gradient(to right, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 100% 0; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from { 
        opacity: 0;
        transform: translateY(-20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- RESPONSIVE ADJUSTMENTS ---------- */
@media (max-width: 992px) {
    .page-header {
        height: 250px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-content-container {
        padding: 20px;
    }
    
    .wp-block-table {
        overflow-x: auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 200px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-content-container {
        padding: 15px;
    }
    
    .wp-block-heading {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        height: 150px;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
}
/* CSS-Fixes für das Menü und responsives Design */

/* --- Hauptmenü-Fixes --- */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation ul li {
    position: relative;
    margin: 0 15px;
}

.main-navigation ul li a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
    display: block;
}

.main-navigation ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-primary);
    transition: width 0.3s ease;
}

.main-navigation ul li a:hover::before,
.main-navigation ul li.current-menu-item a::before,
.main-navigation ul li a.active::before {
    width: 100%;
}

/* Mobiles Menü-Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--gold-primary);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--gold-primary);
}

/* Header Rechts */
.header-right {
    display: flex;
    align-items: center;
}

.search-icon {
    color: var(--white);
    font-size: 1.2rem;
    margin-left: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-icon:hover {
    color: var(--gold-primary);
}

.social-icons {
    display: flex;
    margin-left: 20px;
}

.social-icon {
    color: var(--white);
    font-size: 1.1rem;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--gold-primary);
}

/* Responsive Anpassungen */
@media (max-width: 1100px) {
    .main-navigation ul li {
        margin: 0 10px;
    }
    
    .main-navigation ul li a {
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
        margin-left: auto;
        z-index: 1001;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 80px 20px 20px;
        overflow-y: auto;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-navigation.open {
        right: 0;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .main-navigation ul {
        flex-direction: column;
        width: 100%;
    }
    
    .main-navigation ul li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-navigation ul li a {
        padding: 15px 0;
        display: block;
        width: 100%;
    }
    
    .header-right {
        margin-left: 20px;
    }
}

@media (max-width: 576px) {
    .header-container {
        padding: 0 15px;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
    
    .header-right {
        margin-left: 10px;
    }
    
    .search-icon,
    .social-icon {
        margin-left: 10px;
    }
    
    .social-icons {
        display: none;
    }
}

/* Fix für Suchoverlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 80%;
    max-width: 600px;
    position: relative;
}

.search-form {
    display: flex;
    overflow: hidden;
    border-radius: 5px;
}

.search-field {
    width: 100%;
    padding: 15px;
    background: var(--dark-gray);
    border: 1px solid var(--gold-primary);
    color: var(--white);
    font-size: 1.2rem;
    outline: none;
}

.search-submit {
    background: var(--gold-primary);
    color: var(--black);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-submit:hover {
    background: var(--gold-light);
}

.close-search {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-search:hover {
    color: var(--gold-primary);
}

/* Fix für die Navigationsleiste bei sticky */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    max-width: 1400px;
    margin: 0 auto;
    height: 80px;
    transition: height 0.3s ease;
}

.site-header.scrolled .header-container {
    height: 60px;
}

.site-content {
    margin-top: 80px; /* Abstand für fixed header */
}

/* Admin Bar Anpassung */
.admin-bar .site-header {
    top: 32px;
}

.admin-bar .main-navigation {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
    
    .admin-bar .main-navigation {
        top: 46px;
    }
}

/* Content-Bereich Anpassungen */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-area {
    padding: 50px 0;
}

.site-main {
    position: relative;
}

/* Animationen und visuelle Verbesserungen */
.site-title a {
    position: relative;
    display: inline-block;
    color: var(--gold-primary);
    transition: all 0.3s ease;
}

.site-title a:hover {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Gold Sparkle Effekt */
.gold-sparkle {
    position: fixed;
    pointer-events: none;
    z-index: 2000;
    border-radius: 50%;
    background-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

/**
 * Header Menu Enhancements
 * Improves the styling and effects for the main navigation
 */

/* Enhanced Header Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.site-header.scrolled {
    padding: 5px 0;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.site-branding {
    display: flex;
    align-items: center;
}

.custom-logo-link {
    transition: all 0.3s ease;
}

.site-header.scrolled .custom-logo-link img {
    transform: scale(0.9);
}

/* Main Navigation Enhancement */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
    margin: 0 15px;
}

.main-navigation a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 0;
    display: block;
    position: relative;
    transition: color 0.3s ease;
}

/* Gold underline animation */
.main-navigation a .gold-underline {
    position: relative;
    display: inline-block;
    padding: 0 5px;
}

.main-navigation a .gold-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
    box-shadow: 0 0 8px var(--gold-primary);
}

.main-navigation a:hover .gold-underline::after,
.main-navigation .current-menu-item a .gold-underline::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.main-navigation a:hover {
    color: var(--gold-primary);
}

/* Current menu item styling */
.main-navigation .current-menu-item a {
    color: var(--gold-primary);
}

.main-navigation .current-menu-item a::before {
    content: '●';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    color: var(--gold-primary);
    opacity: 0.7;
}

/* Submenu styling */
.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: rgba(0, 0, 0, 0.9);
    min-width: 200px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.main-navigation .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .sub-menu li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.main-navigation .sub-menu li:last-child {
    border-bottom: none;
}

.main-navigation .sub-menu a {
    padding: 12px 20px;
    font-size: 0.85rem;
}

.main-navigation .sub-menu a::after {
    display: none;
}

.main-navigation .sub-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Menu toggle styling */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle .bar {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--white);
    margin: 6px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle:hover .bar {
    background-color: var(--gold-primary);
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--gold-primary);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--gold-primary);
}

/* Search icon styling */
.search-icon {
    font-size: 1.2rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.search-icon:hover {
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.1);
}

/* Social icons styling */
.social-icons {
    display: flex;
    margin-left: 20px;
}

.social-icon {
    color: var(--white);
    width: 36px;
    height: 36px;
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    color: var(--black);
    background: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.8) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover::before {
    opacity: 0.4;
}

/* Header layout */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    max-width: 1400px;
    margin: 0 auto;
    height: 80px;
    transition: height 0.3s ease;
}

.site-header.scrolled .header-container {
    height: 60px;
}

/* Header right section */
.header-right {
    display: flex;
    align-items: center;
}

/* Medium screens */
@media (max-width: 1200px) {
    .main-navigation li {
        margin: 0 10px;
    }
    
    .main-navigation a {
        font-size: 0.85rem;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
}

/* Mobile menu */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.97), rgba(20, 20, 20, 0.97));
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 20px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        overflow-y: auto;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .main-navigation.open {
        right: 0;
    }
    
    .main-navigation ul {
        flex-direction: column;
        width: 100%;
    }
    
    .main-navigation li {
        margin: 0;
        width: 100%;
    }
    
    .main-navigation a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .main-navigation .sub-menu {
        position: relative;
        left: 0;
        top: 0;
        background: transparent;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        box-shadow: none;
        border: none;
        padding-left: 15px;
    }
    
    .main-navigation .menu-item-has-children:hover > .sub-menu {
        max-height: 500px;
    }
    
    .main-navigation .menu-item-has-children > a::after {
        content: '+';
        position: absolute;
        right: 0;
        top: 15px;
    }
    
    .main-navigation .menu-item-has-children:hover > a::after {
        content: '-';
    }
}

/* Small screens */
@media (max-width: 576px) {
    .header-container {
        padding: 0 15px;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
    
    .social-icons {
        display: none;
    }
}

/**
 * Footer Enhancements
 * Improved styling and visual effects for the footer area
 */

/* Main Footer Styling */
.site-footer {
    position: relative;
    padding-top: 80px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(20, 20, 20, 0.9) 100%);
    color: var(--white);
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

/* Decorative top border */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0.7;
}

/* Footer Widgets Area */
.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px 60px;
    position: relative;
}

.footer-widget-area {
    position: relative;
}

.footer-widget-area .widget {
    background: rgba(30, 30, 30, 0.4);
    border-radius: 8px;
    padding: 25px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.footer-widget-area .widget:hover {
    background: rgba(40, 40, 40, 0.5);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.footer-widget-area .widget-title {
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-widget-area .widget-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 2px;
}

/* Widget Content Styling */
.footer-widget-area .widget_nav_menu ul,
.footer-widget-area .widget_recent_entries ul,
.footer-widget-area .widget_categories ul,
.footer-widget-area .widget_archive ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget-area .widget_nav_menu li,
.footer-widget-area .widget_recent_entries li,
.footer-widget-area .widget_categories li,
.footer-widget-area .widget_archive li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.footer-widget-area .widget li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.footer-widget-area .widget li a {
    color: var(--white);
    transition: all 0.3s ease;
    display: block;
    padding-left: 20px;
    position: relative;
}

.footer-widget-area .widget li a::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold-primary);
    opacity: 0.7;
    font-size: 18px;
    line-height: 1;
    transition: all 0.3s ease;
}

.footer-widget-area .widget li a:hover {
    color: var(--gold-primary);
    padding-left: 25px;
}

.footer-widget-area .widget li a:hover::before {
    opacity: 1;
    left: 5px;
}

/* Footer Text Widget */
.footer-widget-area .widget_text p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-widget-area .textwidget img {
    margin-bottom: 15px;
    border-radius: 4px;
}

/* Footer Contact Info */
.footer-contact-info {
    margin-top: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    color: var(--gold-primary);
    transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
    background: var(--gold-primary);
    color: var(--black);
    transform: scale(1.1);
}

.footer-contact-text {
    font-size: 0.95rem;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.footer-social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-social-icon:hover {
    background: var(--gold-primary);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer Newsletter */
.footer-newsletter form {
    display: flex;
    margin-top: 20px;
}

.footer-newsletter input[type="email"] {
    flex-grow: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 10px 15px;
    color: var(--white);
    border-radius: 4px 0 0 4px;
}

.footer-newsletter button {
    background: var(--gold-primary);
    color: var(--black);
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background: var(--gold-light);
}

/* Footer Bottom Area */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 25px 0;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Footer Menu */
.footer-menu {
    margin-bottom: 20px;
}

.footer-menu ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-menu li {
    margin: 0 15px;
    position: relative;
}

.footer-menu li:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -18px;
    top: 2px;
    color: var(--gold-primary);
    opacity: 0.5;
    font-size: 10px;
}

.footer-menu a {
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: block;
}

.footer-menu a .gold-underline {
    position: relative;
    display: inline-block;
}

.footer-menu a .gold-underline::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--gold-primary);
}

.footer-menu a:hover .gold-underline::after {
    width: 100%;
}

/* Copyright */
.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.gold-text-shadow {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Footer Decorations */
.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.gold-decoration {
    position: absolute;
}

.gold-line {
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0.2;
}

.gold-circle {
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
}

.gold-square {
    border: 2px solid var(--gold-primary);
    transform: rotate(45deg);
}

/* Add gold sparkles */
.footer-sparkle {
    width: 6px;
    height: 6px;
    background-color: var(--gold-primary);
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0;
    animation: sparkleAnimation 3s infinite ease-in-out;
}

@keyframes sparkleAnimation {
    0% { opacity: 0; transform: scale(0); }
    50% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 0; transform: scale(0); }
}

/* Add responsive styles */
@media (max-width: 992px) {
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px 50px;
    }
}

@media (max-width: 768px) {
    .footer-widgets {
        grid-template-columns: 1fr;
    }
    
    .site-footer {
        padding-top: 60px;
    }
    
    .footer-menu ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-menu li {
        margin: 0;
    }
    
    .footer-menu li:not(:last-child)::after {
        display: none;
    }
}

/**
 * CSS for Enhanced Visual Effects
 * Advanced styling for premium animations and visual effects
 */

/* Gold Glow and Light Effects */
.gold-glow-layer {
    position: absolute;
    width: 50%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.section-light-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Particle and Sparkle Effects */
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background-color: var(--gold-primary);
    border-radius: 50%;
}

/* Enhanced Button Effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.3);
    border-radius: inherit;
    pointer-events: none;
    z-index: -1;
}

.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.btn:hover::after {
    opacity: 1;
}

/* Spotlight Effect */
.card-spotlight {
    position: absolute;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 0;
    z-index: 1;
}

/* Enhanced Reveal Animations */
.enhanced-reveal {
    animation: enhancedReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes enhancedReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        filter: blur(10px);
    }
    60% {
        opacity: 1;
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.reveal-child {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.enhanced-reveal .reveal-child {
    opacity: 1;
    transform: translateY(0);
}

/* 3D Card Effects */
.service-card, .event-card, .pricing-card {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, box-shadow;
}

/* Advanced Text Effects */
.text-shimmer {
    background: linear-gradient(
        to right,
        var(--gold-dark) 0%,
        var(--gold-light) 30%,
        var(--gold-dark) 60%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textShimmer 5s linear infinite;
}

@keyframes textShimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 100% 0; }
}

/* Text Split Animation */
.split-text .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: charReveal 0.5s forwards;
}

@keyframes charReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Footer Sparkles */
.footer-sparkle {
    position: absolute;
    background: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-primary);
    animation: footerSparkle 3s infinite ease-in-out;
}

@keyframes footerSparkle {
    0% { opacity: 0; transform: scale(0); }
    50% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 0; transform: scale(0); }
}

/* Cursor Glow Effect */
.cursor-glow {
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
}

/* Enhanced Menu Animations */
.main-navigation a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
    border-radius: 4px;
}

.main-navigation a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Advanced Hover States */
.hover-float {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-float:hover {
    transform: translateY(-5px);
}

.hover-scale {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Glowing Border Effect */
.glow-border {
    position: relative;
}

.glow-border::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--gold-primary);
    border-radius: inherit;
    opacity: 0;
    transition: all 0.3s ease;
}

.glow-border:hover::after {
    opacity: 1;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
}

/* Enhanced Image Hover Effects */
.zoom-glow {
    overflow: hidden;
    position: relative;
}

.zoom-glow img {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.zoom-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.zoom-glow:hover img {
    transform: scale(1.1);
}

.zoom-glow:hover::after {
    opacity: 1;
}

/* Age Verification Enhancements */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.age-verification.active {
    opacity: 1;
    visibility: visible;
}

.age-verification.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.age-verification-content {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.7), rgba(15, 15, 15, 0.7));
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: contentReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes contentReveal {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.age-verification-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulseGlow 3s infinite alternate ease-in-out;
    pointer-events: none;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.gradient-border {
    position: relative;
    background-clip: padding-box;
    border: 3px solid transparent;
    border-radius: 10px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;

    bottom: 0;
    left: 0;
    margin: -3px;
    border-radius: inherit;
    background: linear-gradient(45deg, var(--gold-primary), transparent, var(--gold-primary));
    animation: borderRotate 4s linear infinite;
    z-index: -1;
}

@keyframes borderRotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.age-verification-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.age-verification-buttons .btn {
    min-width: 150px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.accept-age {
    background: var(--gold-primary);
    color: var(--black);
    font-weight: bold;
}

.accept-age:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(212, 175, 55, 0.5);
}

.reject-age {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.reject-age:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

.age-verification-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.age-verification-text {
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive styles */
@media (max-width: 768px) {
    .age-verification-content {
        padding: 30px;
    }
    
    .age-verification-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .age-verification-buttons .btn {
        min-width: 100%;
    }
}
/**
 * CSS-Anpassungen für die Untermenü-Funktionalität
 * Für das Hot Gold Club Theme
 */

/* ----- Desktop/Tablet Submenu Styles ----- */
.main-navigation .menu-item-has-children {
    position: relative;
}

.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Aktiver Status für Submenu */
.main-navigation .sub-menu.active,
.main-navigation .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .sub-menu li {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.main-navigation .sub-menu li:last-child {
    border-bottom: none;
}

.main-navigation .sub-menu a {
    padding: 12px 20px;
    font-size: 0.9rem;
    display: block;
    color: var(--white);
    transition: all 0.3s ease;
}

.main-navigation .sub-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    padding-left: 25px;
}

/* Dropdown-Icon */
.dropdown-icon {
    margin-left: 6px;
    font-size: 0.8rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.menu-item-has-children:hover .dropdown-icon {
    opacity: 1;
    transform: rotate(180deg);
}

/* ----- Mobile Submenu Styles ----- */
@media (max-width: 992px) {
    .main-navigation .sub-menu {
        position: static;
        width: 100%;
        background: rgba(20, 20, 20, 0.5);
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0 0 0 15px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-top: 5px;
        margin-bottom: 5px;
    }
    
    .main-navigation .sub-menu.active {
        display: block;
        animation: fadeInDown 0.3s forwards;
    }
    
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .main-navigation .sub-menu a {
        padding: 10px 15px;
        font-size: 0.85rem;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .main-navigation .menu-item-has-children > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .dropdown-icon {
        padding: 10px;
        margin-left: 0;
        margin-right: -10px;
    }
    
    .submenu-open > a .dropdown-icon {
        transform: rotate(90deg);
    }
    
    .main-navigation .menu-item-has-children:hover .dropdown-icon {
        transform: none;
    }
    
    .submenu-open > a {
        color: var(--gold-primary);
    }
}

/* Sicherstellen, dass verschachtelte Submenüs korrekt angezeigt werden */
.main-navigation .sub-menu .menu-item-has-children > .sub-menu {
    top: 0;
    left: 100%;
    margin-top: -10px;
}

@media (max-width: 992px) {
    .main-navigation .sub-menu .menu-item-has-children > .sub-menu {
        left: 0;
        margin-top: 0;
    }
}

/* Untermenu-Indikatoren für bessere Benutzerführung */
.main-navigation .menu-item-has-children > a::after {
    content: '';
    display: none; /* wird durch das Dropdown-Icon ersetzt */
}

/* Verbesserte Zugänglichkeit - Fokus-Stile */
.main-navigation a:focus-visible {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
}

/* Keyboard-Navigation */
.main-navigation .menu-item-has-children > a:focus + .sub-menu,
.main-navigation .sub-menu:focus-within {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Unterstützung für RTL-Sprachen */
.rtl .main-navigation .sub-menu {
    left: auto;
    right: 0;
}

.rtl .main-navigation .sub-menu .menu-item-has-children > .sub-menu {
    left: auto;
    right: 100%;
}

/* Animation für das Dropdown-Icon */
.dropdown-icon i {
    transition: transform 0.3s ease;
}

.menu-item-has-children:hover > a .dropdown-icon i {
    transform: rotate(180deg);
}

@media (max-width: 992px) {
    .menu-item-has-children:hover > a .dropdown-icon i {
        transform: none;
    }
    
    .submenu-open > a .dropdown-icon i {
        transform: rotate(90deg);
    }
}