:root {
    --bg-dark: #0e0e0e;
    --bg-glass: rgba(255, 255, 255, 0.05);
    --gold: #d4af37;
    --gold-light: #f5d76e;
    --text-light: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: 0.4s ease;
}

.navbar.scrolled {
    padding: 15px 0;
}

.nav-inner {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(30, 30, 30, 0.55);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    padding: 12px 30px;

    box-shadow: 0 0 30px rgba(212, 175, 55, 0.08);
}

.navbar.scrolled .nav-inner {
    width: 92%;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.nav-logo {
    height: 45px;
}

.nav-center {
    display: flex;
    gap: 15px;
}

.nav-item {
    position: relative;
    background: transparent;
    border: none;
    color: var(--gold);
    padding: 10px 20px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-item span {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: 0.4s ease;
}

.nav-item:hover span,
.nav-item.active span {
    max-width: 140px;
}

.nav-item:hover {
    background: rgba(212, 175, 55, 0.12);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}

.nav-item.active {
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    color: black;
    font-weight: 600;
}

.nav-right {
    display: none;
}

.mobile-toggle {
    display: none;
    font-size: 1.4rem;
    color: var(--gold);
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(212, 175, 55, 0.4);
    display: flex;
    flex-direction: column;
    padding: 120px 30px;
    gap: 20px;
    transition: 0.4s ease;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu button,
.mobile-menu a {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 15px;
    border-radius: 12px;
    color: var(--gold);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.mobile-menu button:hover,
.mobile-menu a:hover {
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.mobile-menu button.active,
.mobile-menu a.active {
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    color: black;
    font-weight: 600;
}

.hero {
    height: 100vh;
    background: url('../assets/images/hero.png') center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7), #0e0e0e);
}

.hero::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 70%);
    top: -200px;
    right: -200px;
    animation: heroGlow 6s infinite alternate ease-in-out;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    animation: heroFadeIn 1.5s ease forwards;
    opacity: 0;
}

.hero-logo {
    width: 250px;
    margin-bottom: 30px;
    animation: floatLogo 4s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 40px;
    color: #ddd;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.hero-social {
    margin-top: 40px;
    text-align: center;
}

.hero-social p {
    color: #bbb;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.hero-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-social-icons a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    font-size: 0.9rem;
    transition: 0.3s;
}

.hero-social-icons a:hover {
    background: var(--gold);
    color: black;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
}

.btn-gold {
    position: relative;
    padding: 14px 35px;
    border-radius: 50px;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    cursor: pointer;
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    color: black;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
    overflow: hidden;
}

.btn-gold::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.btn-gold:hover::before {
    transform: translateX(100%);
}

.btn-gold:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.9);
    transform: translateY(-3px);
}

.btn-outline {
    padding: 14px 35px;
    border-radius: 50px;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.btn-outline:hover {
    background: var(--gold);
    color: black;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    transform: translateY(-3px);
}

button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

section {
    padding: 120px 10%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.dark-glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.slider-section {
    padding-bottom: 50px;
}

.slider-container {
    position: relative;
    width: 90%;
    margin: 80px auto;
}

.slider {
    position: relative;
}

.slide {
    display: none;
    opacity: 0;
    transform: translateX(50px);
    transition: 0.6s ease;
}

.slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.slide-content {
    display: flex;
    gap: 50px;
    align-items: center;
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--gold);
    padding: 40px;
    border-radius: 20px;
}

.slide-text {
    flex: 1;
    text-align: center;
}

.slide-text h3 {
    color: var(--gold);
    margin-bottom: 15px;
}

.slide-image {
    flex: 1.5;
}

.slide-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 15px;
    border-radius: 50px;
    border: 2px solid var(--gold);
    background: rgba(0, 0, 0, 0.5);
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    align-items: center;
    transition: 0.4s;
    overflow: hidden;
}

.slider-btn:hover {
    background: var(--gold);
    color: black;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    transform: translateY(-65%);
}

.slider-btn.prev { left: -20px }
.slider-btn.next { right: -20px }

.slider-dots {
    text-align: center;
    margin-top: 25px;
}

.slider-dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 5px;
    border-radius: 50%;
    background: #555;
    cursor: pointer;
    transition: 0.3s;
}

.slider-dots span.active {
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
}

.featured-section {
    background: linear-gradient(to bottom, #0e0e0e, #111);
    padding-top: 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.featured-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.featured-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-card:hover .featured-image img {
    transform: scale(1.06);
}

.dish-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: black;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.featured-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 15px;
    flex-grow: 1;
}

.featured-content h3 {
    font-size: 1.2rem;
    color: var(--gold);
}

.featured-content p {
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.5;
}

.featured-content .btn-gold.small {
    margin-top: auto;
    justify-content: center;
    font-size: 0.85rem;
}

.opening-hours {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.25);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.day:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.day-name {
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--gold);
}

.day-times span {
    background: rgba(212, 175, 55, 0.1);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.day-times.closed {
    color: #888;
    font-style: italic;
}

.contact-section {
    position: relative;
    background: url('../assets/images/contact.png') center/cover no-repeat;
    padding: 120px 10%;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), #0e0e0e);
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-content h2 {
    text-align: center;
    color: var(--gold);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    font-size: 1.05rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ddd;
}

.contact-info p i {
    color: var(--gold);
}

.open-contact-form {
    align-self: flex-start;
}

.contact-map #map {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

footer {
    background: black;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 40px 10%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-content img {
    height: 50px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: var(--gold);
    text-decoration: none;
    position: relative;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: var(--gold);
    transition: 0.3s;
}

.footer-links a:hover::after {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons i {
    font-size: 1.4rem;
    color: var(--gold);
    cursor: pointer;
    transition: 0.3s;
}

.social-icons i:hover {
    text-shadow: 0 0 15px var(--gold);
}

.popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #151515;
    padding: 45px;
    width: 90%;
    max-width: 650px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 24px;
    border: 1px solid var(--gold);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    transform: translateY(30px) scale(0.95);
    animation: all 0.35s cubic-bezier(0.17, 0.67, 0.35, 1);
}

.popup-content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(200, 169, 106, 0.1), transparent 40%);
    pointer-events: none;
}

.popup.active .popup-content {
    transform: translateY(0) scale(1);
}

.close-popup {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--gold);
    transition: 0.2s ease;
}

.close-popup:hover {
    transform: rotate(90deg);
}

.popup-content::-webkit-scrollbar {
    width: 6px;
}

.popup-content::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

#contact-form input,
#contact-form textarea {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: #111;
    color: white;
    font-size: 0.9rem;
}

#contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

#reservation-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}
#reservation-form input,
#reservation-form select,
#reservation-form textarea {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: #111;
    color: white;
    font-size: 0.9rem;
}

#reservation-form textarea {
    min-height: 100px;
    resize: vertical;
}

.datenschutz a { color: var(--gold); }
.datenschutz h2 { margin-top: 30px; }
.datenschutz h3 { margin-top: 30px; }
.datenschutz h4 { margin-top: 20px; }
.datenschutz h5 { margin-top: 15px; }
.datenschutz p { margin-top: 5px; }

@media (max-width: 1200px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-center {
        display: none;
    }

    .nav-right,
    .mobile-toggle {
        display: block;
    }

    .slide-content {
        flex-direction: column;
        text-align: center;
    }

    .slider-btn.prev { left: 5px }
    .slider-btn.next { right: 5px }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map #map {
        height: 300px;
    }

    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
}

@media (max-width: 700px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    section {
        padding: 80px 5%;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero-logo {
        width: 140px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .slide-content {
        padding: 20px;
    }

    .btn-gold,
    .btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .popup-content {
        height: 95vh;
        max-height: 95vh;
        padding: 30px;
    }
}

@media (max-width: 400px) {
    .day-times {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
}