:root {
    --gold: #D4AF37;
    --light-gold: #F4E4BC;
    --primary: #1e293b;    /* Replaces turquoise - elegant dark blue */
    --primary-light: #334155;
    --white: #ffffff;
    --off-white: #F9F9F9;
    --light-gray: #E8E8E8;
    --dark: #1A1A1A;
    --dark-gold: #B4941F;
}

/* Custom Utility Classes */
.text-gold { color: var(--gold) !important; }
.bg-gold { background-color: var(--gold) !important; }
.btn-primary {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #fff;
}
.btn-primary:hover {
    background-color: var(--dark-gold);
    border-color: var(--dark-gold);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background-color: var(--off-white);
    font-weight: 300;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navbar Styles */
.navbar {
    background-color: var(--dark) !important;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar.scrolled {
    background-color: var(--dark) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo-img {
    height: 50px;
    transition: height 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.phone-button {
    background: var(--gold);
    color: var(--white) !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 30px;
    transition: transform 0.3s ease !important;
}

.phone-button:hover {
    transform: translateY(-2px);
}

.parallax-header {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('images/hero-bg.jpg') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero {
    text-align: center;
    color: var(--white);
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

h1, h2, h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.menu-section {
    background-color: var(--off-white);
    color: var(--dark);
    padding: 2rem 0;
}

.menu-category {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
}

.menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    margin-bottom: 1rem;
}

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

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.menu-item-name {
    color: var(--dark);
    font-weight: 500;
    font-size: 1.1rem;
}

.menu-item-price {
    color: var(--gold);
}

.menu-item-description {
    color: var(--dark);
    font-size: 0.9rem;
}

.menu-category-title {
    color: var(--dark);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.rules-container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    margin-top: 1rem;
}

.rules-container ul ul {
    margin-left: 2rem;
    margin-top: 0.5rem;
    list-style-type: disc;
}

.rules-container li {
    margin-bottom: 0.5rem;
}

.contact-section {
    padding: 5rem 0;
}

.google-map {
    height: 400px;
    margin-top: 2rem;
    border-radius: 8px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--gold);
    color: var(--anthracite);
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

footer {
    background-color: var(--turquoise);
    padding: 2rem 0;
    text-align: center;
}

.social-media a {
    color: var(--gold);
    font-size: 1.5rem;
    margin: 0 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    /* Mobile Styles... */
    html {
        font-size: 16px;
    }
    .display-1 {
        font-size: 3.5rem;
    }
    .lead {
        font-size: 1.1rem;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('images/hero-bg.jpg') center/cover no-repeat;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

/* Navbar Customization */
.navbar-light .navbar-nav .nav-link {
    font-weight: 500;
    padding: 1rem 1.25rem;
}

/* Custom Animations */
.gsap-fade-up {
    opacity: 0;
    transform: translateY(30px);
}

/* Swiper Customization */
.swiper-pagination-bullet-active {
    background-color: var(--gold) !important;
}

/* Custom Bootstrap Overrides */
.btn-gold {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--anthracite);
}

.btn-gold:hover {
    background-color: var(--dark-gold);
    border-color: var(--dark-gold);
    color: white;
}

/* Custom Components */
.py-7 { 
    padding: clamp(3rem, 8vw, 5rem) 0; 
}

.hover-lift {
    transition: transform 0.3s ease;
}

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

/* Hero Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Menu Cards */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

/* Replace Tailwind utilities */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
                0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.rounded-3 {
    border-radius: 0.5rem !important;
}

/* Add missing Bootstrap overrides */
.btn-outline-light:hover {
    color: var(--dark);
    background-color: var(--white);
}

/* Info Card */
.info-card {
    transition: transform 0.3s ease;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
}

/* Icon Circle */
.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fw-500 {
    font-weight: 500 !important;
}

.contact-list, .location-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-list a:hover {
    color: var(--gold) !important;
}

.info-card {
    height: 100%;
    transition: transform 0.3s ease;
}

.py-7 {
    padding: 1rem 0!important;
}

.info-card:hover {
    transform: translateY(-5px);
}

.bg-light-gold {
    background-color: var(--light-gold);
}

/* Hours Grid */
.hours-grid {
    display: grid;
    gap: 0.5rem;
}

.hours-grid p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.hours-grid p:last-child {
    border-bottom: none;
}

/* Add new styles */
.features-slider {
    padding: 2rem 0;
}

.feature-card {
    background: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pdf-container {
    width: 100%;
    height: 800px;
    margin: 2rem 0;
}

.reels-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    padding: 2rem 0;
}

.reel-container {
    aspect-ratio: 9/16;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: var(--dark);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-container:hover {
    transform: translateY(-5px);
}

/* Custom Alert Style */
.alert-turquoise {
    background-color: var(--dark);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
}

.alert-turquoise .text-gold {
    text-shadow: none;
}

.alert-turquoise .rules-container {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
}

.alert-turquoise .list-unstyled li {
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.alert-turquoise ul ul li {
    color: var(--light-gray);
    margin: 0.5rem 0;
}

/* Menu Card Styles */
.menu-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: auto;
    min-height: 200px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.menu-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.menu-card p {
    color: var(--dark);
    margin-bottom: 0;
    line-height: 1.6;
}

.menu-swiper {
    padding: 1rem;
}

.menu-swiper .swiper-button-next,
.menu-swiper .swiper-button-prev {
    color: var(--gold);
}

.menu-swiper .swiper-pagination-bullet-active {
    background: var(--gold);
}

/* Menu Categories Slider Styles */
.menu-categories-slider {
    position: relative;
    padding: 0 2rem;
}

.menu-card {
    background: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    height: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.menu-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 500;
}

.menu-card p {
    color: var (--dark);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.menu-swiper {
    position: static;
    padding: 1rem 0;
}

.menu-swiper .swiper-button-next,
.menu-swiper .swiper-button-prev {
    color: var(--gold);
    top: 50%;
    width: 40px;
    height: 40px;
}

.menu-swiper .swiper-button-next {
    right: -10px;
}

.menu-swiper .swiper-button-prev {
    left: -10px;
}

.menu-swiper .swiper-button-next::after,
.menu-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.menu-swiper .swiper-pagination {
    position: relative;
    margin-top: 1rem;
}

/* ...existing code... */

/* Updated Navbar Styles */
.navbar {
    background-color: var(--dark) !important;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    height: 100px!important;
}

.navbar.scrolled {
    background-color: var(--dark) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--light-gray) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--gold) !important;
}

.navbar-light .navbar-toggler {
    border-color: rgba(255,255,255,0.1);
}

.navbar-light .navbar-toggler-icon {
    filter: brightness(10);
}

/* Fix Button Alignment */
.navbar .btn-primary {
    padding: 0.5rem 1.5rem !important;
    margin-top: -1px;
    display: flex;
    align-items: center;
    height: 38px;
}

@media (max-width: 991.98px) {
    .navbar .btn-primary {
        margin-top: 0.5rem;
        justify-content: center;
    }
}

/* Fix for mobile navbar */
@media (max-width: 768px) {
    .navbar {
        background: var(--dark) !important;
    }
    
    .navbar-toggler {
        border-color: rgba(255,255,255,0.5) !important;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }
    
    .navbar-collapse {
        background-color: var(--dark);
        padding: 1rem;
        border-radius: 0.5rem;
    }

    .navbar-nav .nav-link {
        color: var(--light-gray) !important;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        color: var(--gold) !important;
    }
}

/* ...existing code... */

/* Fix Navbar Button Alignment */
.navbar-nav {
    align-items: center;
}

.navbar .btn-primary {
    padding: 0.5rem 1.5rem !important;
    height: auto;
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.nav-item:last-child {
    display: flex;
    align-items: center;
}

@media (max-width: 991.98px) {
    .navbar-nav {
        align-items: flex-start;
    }
    
    .nav-item:last-child {
        margin-top: 0.5rem;
    }
    
    .navbar .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* ...existing code... */

/* Instagram Icon Style */
.navbar-nav .fa-instagram {
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.navbar-nav .fa-instagram:hover {
    color: var(--gold);
}

/* ...existing code... */

.about-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: black;
}

.about-content p {
    opacity: 0.9;
    color: black;
}

/* ...existing code... */

.logo-container {
    background-color: var(--dark); /* oder die Farbe aus dem Logo */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.logo-img-blur {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    position: relative;
    z-index: 2;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(20px);
    margin: -30px;
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.reel-container {
    position: relative;
    min-height: 400px;
}

/* Improved Alert Styles */
.alert-primary {
    background-color: var(--primary);
    border-color: var(--primary-light);
}

/* Accessibility Improvements */
.nav-link:focus, 
.btn:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Loading Optimization */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* ...existing code... */

/* Updated Reels Section Styles */
.reels-section .container {
    max-width: 1200px;
    padding: 0 15px;
}

.reels-section .row {
    justify-content: center;
    gap: 2rem;
}

.reels-section .col-md-4 {
    width: 300px;
    flex: 0 0 auto;
}

.reel-container {
    aspect-ratio: 9/16;
    height: 500px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

/* Remove outline from nav links */
.nav-link:focus {
    outline: none !important;
    box-shadow: none !important;
}

.navbar-nav .nav-link {
    position: relative;
    transition: color 0.3s ease;
}

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

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

/* ...existing code... */

/* Updated Section Spacing */
.py-7 {
    padding: 3rem 0;  /* Default for mobile */
}

/* Contact Cards Mobile Spacing */
@media (max-width: 768px) {
    .info-card {
        margin-bottom: 1.5rem;
    }
    
    .row.mb-4 {
        margin-bottom: 0 !important;
    }
    
    #contact .col-md-4:last-child .info-card {
        margin-bottom: 2rem;
    }
}

/* Desktop Spacing */
@media (min-width: 769px) {
    .py-7 {
        padding: 4rem 0;
    }
}

/* ...existing code... */

/* Section Spacing */
.py-7 {
    padding: 2rem 0;  /* Reduced spacing for mobile */
}

/* Section and Card Spacing Adjustments */
@media (max-width: 768px) {
    .py-7 {
        padding: 2.5rem 0;
    }

    .info-card {
        margin-bottom: 1rem;
    }

    #contact .row > [class*='col-'] {
        margin-bottom: 1rem;
    }

    #contact .row > [class*='col-']:last-child {
        margin-bottom: 1.5rem;
    }

    .menu-section,
    .features-slider,
    .reels-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

@media (min-width: 769px) {
    .py-7 {
        padding: 3.5rem 0;  /* Slightly reduced spacing for desktop */
    }

    #contact .row {
        margin-bottom: 2rem;
    }
}

/* ...existing code... */

/* Footer & Modal Styles */
.modal-content {
    border-radius: 12px;
    border: none;
}

.modal-header {
    border-bottom: 1px solid var(--light-gray);
    padding: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-body h6 {
    color: var(--gold);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body h6:first-child {
    margin-top: 0;
}

.privacy-content {
    font-size: 0.95rem;
    line-height: 1.7;
}

.privacy-content p {
    margin-bottom: 1rem;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--gold) !important;
}

/* ...existing code... */

h1, h2, h3, h4, h5, h6, 
.nav-link,
.btn,
.menu-card h3,
.fw-500 {
    font-family: 'Montserrat', sans-serif;
}

.display-1 {
    font-weight: 600;
}

.lead {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.nav-link {
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ...existing code... */

/* Spacing fixes for sections */
section {
    scroll-margin-top: 100px; /* Ensures smooth scrolling stops at the right spot */
}

@media (max-width: 768px) {
    section#about {
        padding-top: 100px !important;
        margin-top: 40px !important;
    }
    
    .navbar {
        background: var(--white) !important; /* Ensures navbar is always visible on mobile */
    }
}

/* ...existing code... */

/* Fix navbar colors and mobile menu */
.navbar-light {
    background-color: var(--dark) !important;
}

.navbar-light .navbar-toggler {
    border-color: rgba(255,255,255,0.5) !important;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--light-gray) !important;
}

.navbar-light .navbar-collapse {
    background-color: var(--dark);
}

@media (max-width: 768px) {
    .navbar {
        background-color: var(--dark) !important;
    }
    
    .navbar-collapse {
        background-color: var(--dark);
        padding: 1rem;
        border-radius: 0.5rem;
    }
}

/* ...existing code... */

/* Grundstil für das Cookie-Banner */
/* Grundstil für das Cookie-Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: auto;
  max-width: 400px;
  font-size: 14px;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Schatten hinzufügen */
}

/* Stil für den Text */
.cookie-banner p {
  margin: 0;
  max-width: 250px;
  font-size: 14px;
}

/* Stil für die Buttons */
.cookie-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 16px;
  margin-left: 10px;
  cursor: pointer;
  border-radius: 3px;
}

.cookie-btn:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 600px) {
  .cookie-banner {
    width: 90%;
    bottom: 15px;
    right: 10px;
    font-size: 12px;
  }

  .cookie-btn {
    font-size: 12px;
  }

  .cookie-banner p {
    max-width: 200px;
  }
}
