/* ============================
   KUMKAPI HANNOVER - MAIN STYLES
   ============================ */

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

:root {
    --primary-blue: #4A90A4;
    --light-blue: #6BADC0;
    --gold: #D4A574;
    --gold-dark: #B8935F;
    --wood-dark: #1a1410;
    --wood-medium: #2d2520;
    --wood-light: #3d3530;
    --text-light: #f5f5f5;
    --text-gold: #E8C89F;
    --accent-cream: #F4EDE4;
}

body {
    font-family: 'Georgia', 'Garamond', serif;
    line-height: 1.7;
    color: var(--text-light);
    background: var(--wood-dark);
    overflow-x: hidden;
}

/* Wood Texture Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, rgba(0,0,0,.05) 1px, transparent 1px),
        linear-gradient(rgba(0,0,0,.05) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

/* ============================
   HEADER & NAVIGATION
   ============================ */

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(26, 20, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(26, 20, 16, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

nav {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 3px;
    font-family: 'Georgia', serif;
    text-transform: uppercase;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-blue);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gold);
    font-weight: 300;
    font-size: 1.05rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

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

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

.reserve-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Georgia', serif;
    display: inline-block;
}

.reserve-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    transition: left 0.4s ease;
}

.reserve-btn span {
    position: relative;
    z-index: 1;
}

.reserve-btn:hover::before {
    left: 0;
}

.reserve-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 164, 0.4);
}

/* ============================
   HERO SLIDER
   ============================ */

.hero-slider {
    margin-top: 90px;
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(26, 20, 16, 0.85) 0%, 
        rgba(45, 37, 32, 0.75) 50%, 
        rgba(26, 20, 16, 0.85) 100%);
}

.slide-1 {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%232d2520" width="1200" height="800"/></svg>');
}

.slide-2 {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%231a1410" width="1200" height="800"/></svg>');
}

.slide-3 {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%233d3530" width="1200" height="800"/></svg>');
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    z-index: 2;
}

.slide-text h1 {
    font-size: 5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.slide-text .subtitle {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.slide-text p {
    font-size: 1.2rem;
    color: var(--text-gold);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.9;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.slide-cta {
    animation: fadeInUp 1s ease 0.6s backwards;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.cta-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--wood-dark);
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 2px;
    display: inline-block;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    transition: left 0.4s ease;
}

.cta-primary span {
    position: relative;
    z-index: 1;
}

.cta-primary:hover::before {
    left: 0;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

.cta-secondary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 1.1rem 3rem;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 2px;
    display: inline-block;
    transition: all 0.4s ease;
    background: transparent;
}

.cta-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--gold);
    border-color: var(--primary-blue);
    transform: scale(1.2);
}

/* ============================
   SECTION STYLES
   ============================ */

.about-section {
    background: var(--accent-cream);
    padding: 8rem 4rem;
    position: relative;
}

.about-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 20px 20px 0 var(--primary-blue);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(74, 144, 164, 0.2) 100%);
    z-index: 1;
    transition: all 0.5s ease;
}

.about-image:hover::before {
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(74, 144, 164, 0.4) 100%);
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4d4d4, #a8a8a8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #666;
    transition: transform 0.5s ease;
}

.about-image:hover .about-image-placeholder {
    transform: scale(1.05);
}

.about-content h2 {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.2;
}

.about-content .section-label {
    color: var(--primary-blue);
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 600;
}

.about-content p {
    color: #555;
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h4 {
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-text p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.specialties {
    background: var(--wood-dark);
    padding: 8rem 4rem;
    position: relative;
}

.specialties-container {
    max-width: 1600px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title .label {
    color: var(--primary-blue);
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
    font-weight: 600;
}

.section-title h2 {
    font-size: 3.5rem;
    color: var(--gold);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.section-title p {
    color: var(--text-gold);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.specialty-card {
    background: var(--wood-medium);
    border: 1px solid rgba(212, 165, 116, 0.2);
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
}

.specialty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.specialty-card:hover::before {
    transform: scaleX(1);
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-blue);
}

.specialty-image {
    height: 300px;
    background: linear-gradient(135deg, #3d3530, #2d2520);
    position: relative;
    overflow: hidden;
}

.specialty-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    transition: transform 0.5s ease;
    background: linear-gradient(135deg, #c4c4c4, #8a8a8a);
}

.specialty-card:hover .specialty-image-placeholder {
    transform: scale(1.1);
}

.specialty-content {
    padding: 2.5rem;
}

.specialty-content h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.specialty-content p {
    color: var(--text-gold);
    line-height: 1.9;
    font-size: 1.05rem;
}

.experience {
    background: var(--wood-light);
    padding: 8rem 4rem;
}

.experience-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.experience-item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--wood-medium);
    border: 1px solid rgba(74, 144, 164, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.experience-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 164, 0.1) 0%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.experience-item:hover::before {
    opacity: 1;
}

.experience-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.experience-number {
    font-size: 4rem;
    color: var(--gold);
    font-weight: 300;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.experience-label {
    color: var(--primary-blue);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.experience-text {
    color: var(--text-gold);
    font-size: 0.95rem;
}

.location {
    background: var(--accent-cream);
    padding: 8rem 4rem;
}

.location-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.location-content h2 {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.location-content .section-label {
    color: var(--primary-blue);
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 600;
}

.location-details {
    background: var(--wood-medium);
    padding: 3rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-blue);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.location-details p {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-gold);
    font-size: 1.1rem;
}

.location-details p:last-child {
    margin-bottom: 0;
}

.location-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.map-container {
    height: 500px;
    background: linear-gradient(135deg, #e0e0e0, #c0c0c0);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    color: #666;
}

.map-placeholder-icon {
    font-size: 5rem;
}

.map-placeholder-text {
    font-size: 1.2rem;
}

/* ============================
   FOOTER
   ============================ */

footer {
    background: var(--wood-dark);
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    padding: 5rem 4rem 2rem;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    color: var(--text-gold);
    text-decoration: none;
    line-height: 2.2;
    transition: color 0.3s ease;
    display: block;
}

.footer-section a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.footer-brand p {
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--wood-medium);
    border: 1px solid rgba(74, 144, 164, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--primary-blue);
}

.social-links a:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    border-color: var(--primary-blue);
    padding-left: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 165, 116, 0.1);
    color: var(--text-gold);
}

.footer-bottom a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* ============================
   ANIMATIONS
   ============================ */

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   UNTERSEITEN
   ============================ */

.page-hero {
    margin-top: 90px;
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, var(--wood-dark), var(--wood-medium));
    text-align: center;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.page-hero-content h1 {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.page-hero-content .subtitle {
    font-size: 1.5rem;
    color: var(--primary-blue);
    letter-spacing: 2px;
}

/* Speisekarte */
.menu-hero {
    margin-top: 90px;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--wood-dark), var(--wood-medium));
    text-align: center;
}

.menu-hero h1 {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.menu-hero .subtitle {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.menu-intro {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-gold);
    line-height: 1.9;
    font-size: 1.1rem;
}

.menu-nav {
    background: var(--wood-medium);
    padding: 2rem;
    position: sticky;
    top: 90px;
    z-index: 100;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.menu-nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.menu-nav a {
    color: var(--text-gold);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.menu-nav a:hover {
    color: var(--gold);
    border-color: var(--primary-blue);
}

.menu-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-section:nth-child(even) {
    background: rgba(45, 37, 32, 0.3);
}

.menu-section h2 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 300;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.menu-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--primary-blue);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: var(--wood-medium);
    padding: 2rem;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.menu-item:hover {
    border-left-color: var(--primary-blue);
    transform: translateX(5px);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.8rem;
    gap: 1rem;
}

.menu-item-name {
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 400;
}

.menu-item-price {
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 600;
    white-space: nowrap;
}

.menu-item-description {
    color: var(--text-gold);
    line-height: 1.7;
    font-size: 0.95rem;
}

.menu-highlight {
    background: linear-gradient(135deg, 
        rgba(74, 144, 164, 0.1), 
        rgba(212, 165, 116, 0.1));
    border-left-color: var(--gold);
}

/* Über Uns */
.story-section {
    padding: 8rem 4rem;
    background: var(--accent-cream);
}

.story-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.story-image {
    height: 500px;
    background: linear-gradient(135deg, #d4d4d4, #a8a8a8);
    box-shadow: -20px 20px 0 var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.story-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #666;
    background: linear-gradient(135deg, #c4c4c4, #8a8a8a);
}

.our-restaurant {
    padding: 8rem 4rem;
    background: var(--wood-dark);
}

.restaurant-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.restaurant-image {
    height: 500px;
    box-shadow: 20px 20px 0 var(--gold);
    position: relative;
    overflow: hidden;
}

.restaurant-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ccc;
    background: linear-gradient(135deg, #4a4a4a, #2a2a2a);
}

.restaurant-content p {
    color: var(--text-gold);
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 2rem;
}

.values-section {
    padding: 8rem 4rem;
    background: var(--wood-medium);
}

.values-container {
    max-width: 1600px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.value-item {
    background: var(--wood-dark);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.4s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.value-item h3 {
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.value-item p {
    color: var(--text-gold);
    line-height: 1.9;
}

.team-section {
    padding: 8rem 4rem;
    background: var(--accent-cream);
}

.team-container {
    max-width: 1600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 100%;
    height: 400px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4d4d4, #a8a8a8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #666;
}

.team-member h3 {
    color: var(--gold-dark);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.team-member p {
    color: #666;
    line-height: 1.8;
}

/* Galerie */
.gallery-intro {
    padding: 4rem 2rem;
    background: var(--wood-medium);
    text-align: center;
}

.gallery-intro-container {
    max-width: 800px;
    margin: 0 auto;
}

.gallery-intro p {
    color: var(--text-gold);
    font-size: 1.2rem;
    line-height: 1.9;
}

.gallery-categories {
    padding: 3rem 2rem;
    background: var(--wood-dark);
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    position: sticky;
    top: 90px;
    z-index: 100;
}

.categories-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.category-btn {
    background: var(--wood-medium);
    color: var(--text-gold);
    border: 1px solid rgba(212, 165, 116, 0.3);
    padding: 0.8rem 2rem;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.gallery-section {
    padding: 6rem 2rem;
    background: var(--wood-dark);
}

.gallery-container {
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    opacity: 1;
    transition: all 0.5s ease;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.gallery-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a4a4a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.2rem;
    transition: transform 0.5s ease;
}

.gallery-image:hover .gallery-placeholder {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 20, 16, 0.95), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-image:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.gallery-overlay p {
    color: var(--text-gold);
    font-size: 0.95rem;
}

.gallery-cta {
    padding: 8rem 2rem;
    background: var(--wood-medium);
    text-align: center;
}

.cta-container h2 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.cta-container p {
    font-size: 1.2rem;
    color: var(--text-gold);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Kontaktformular */
.contact-section {
    padding: 8rem 4rem;
    background: var(--accent-cream);
}

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

.contact-form {
    background: white;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-blue);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: var(--gold-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 164, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--wood-dark);
    padding: 1.2rem 3rem;
    border: none;
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: 'Georgia', serif;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 1200px) {
    .about-container,
    .location-container,
    .story-container,
    .restaurant-container {
        grid-template-columns: 1fr;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experience-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .slide-text h1 {
        font-size: 2.5rem;
    }
    
    .slide-text .subtitle {
        font-size: 1.3rem;
    }
    
    .about-content h2,
    .location-content h2,
    .section-title h2,
    .page-hero-content h1,
    .menu-hero h1 {
        font-size: 2.5rem;
    }
    
    .specialties-grid,
    .experience-container,
    .footer-content,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .slide-cta {
        flex-direction: column;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .category-btn {
        width: 100%;
    }
}

/* ============================
   COOKIE BANNER
   ============================ */

#cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.cookie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.cookie-modal {
    position: relative;
    background: white;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

.cookie-modal h2 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.cookie-modal > p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cookie-options {
    margin: 2rem 0;
}

.cookie-option {
    border: 1px solid #e0e0e0;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cookie-option:hover {
    border-color: var(--primary-blue);
    background: rgba(74, 144, 164, 0.05);
}

.cookie-option-header {
    margin-bottom: 0.5rem;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-title {
    font-size: 1.2rem;
    color: var(--gold-dark);
    font-weight: 500;
}

.cookie-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-left: 2.5rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    margin: 2rem 0 1rem;
    flex-wrap: wrap;
}

.cookie-actions button {
    flex: 1;
    min-width: 150px;
    padding: 1rem 1.5rem;
    border: none;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-accept-all {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
}

.btn-accept-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.4);
}

.btn-accept-selected {
    background: var(--primary-blue);
    color: white;
}

.btn-accept-selected:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
}

.btn-reject-all {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
}

.btn-reject-all:hover {
    background: #e0e0e0;
}

.cookie-footer {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 1.5rem;
}

.cookie-footer a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.cookie-settings-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--wood-medium);
    color: var(--text-gold);
    border: 1px solid rgba(212, 165, 116, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cookie-settings-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 144, 164, 0.4);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@media (max-width: 768px) {
    .cookie-modal {
        padding: 2rem;
        max-height: 95vh;
    }
    
    .cookie-modal h2 {
        font-size: 1.5rem;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-actions button {
        width: 100%;
    }
    
    .cookie-settings-btn {
        bottom: 10px;
        left: 10px;
        font-size: 0.8rem;
        padding: 0.8rem 1.2rem;
    }
}

/* ============================
   ALERTS & MESSAGES
   ============================ */

.alert {
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    border-left: 4px solid;
}

.alert h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.alert p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.alert-success {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.alert-success h3 {
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.alert-error h3 {
    color: #721c24;
}

/* ============================
   SPRACHAUSWAHL DROPDOWN
   ============================ */

.language-selector {
    position: relative;
    margin: 0 2rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(212, 165, 116, 0.3);
    color: var(--text-gold);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--wood-medium);
    border-color: var(--primary-blue);
}

.flag-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.lang-btn.active .arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--wood-medium);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 4px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    color: var(--text-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: var(--wood-dark);
    color: var(--gold);
    padding-left: 1.5rem;
}

.lang-option.active {
    background: rgba(74, 144, 164, 0.2);
    border-left: 3px solid var(--primary-blue);
}

.lang-option span:last-child {
    font-size: 0.95rem;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .language-selector {
        margin: 0 1rem;
    }
    
    .lang-dropdown {
        right: auto;
        left: 0;
    }
}

/* ============================
   SPRACHAUSWAHL
   ============================ */

.language-switcher {
    position: relative;
    margin-right: 2rem;
}

.lang-current {
    background: transparent;
    border: 1px solid rgba(212, 165, 116, 0.3);
    color: var(--text-gold);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lang-current:hover {
    background: rgba(74, 144, 164, 0.1);
    border-color: var(--primary-blue);
}

.lang-current .flag {
    font-size: 1.2em;
    line-height: 1;
}

.lang-current .lang-code {
    font-weight: 600;
    letter-spacing: 1px;
}

.lang-current .lang-arrow {
    font-size: 0.7em;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
}

.lang-dropdown.active ~ .lang-current .lang-arrow,
.lang-current:hover .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--wood-medium);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 4px;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    color: var(--text-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    font-size: 0.95rem;
}

.lang-option:last-child {
    border-bottom: none;
    border-radius: 0 0 4px 4px;
}

.lang-option:first-child {
    border-radius: 4px 4px 0 0;
}

.lang-option .flag {
    font-size: 1.3em;
}

.lang-option:hover {
    background: var(--wood-dark);
    color: var(--gold);
    padding-left: 1.3rem;
}

.lang-option[data-lang="de"] {
    border-left: 3px solid transparent;
}

.lang-option:hover {
    border-left-color: var(--primary-blue);
}

/* Mobile */
@media (max-width: 768px) {
    .language-switcher {
        margin-right: 1rem;
    }
    
    .lang-dropdown {
        right: auto;
        left: 0;
    }
}

/* ============================
   COOKIE BANNER
   ============================ */

#cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.cookie-modal {
    position: relative;
    background: white;
    max-width: 550px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    animation: slideUp 0.4s ease;
}

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

.cookie-modal h2 {
    color: #D4A574;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.cookie-modal > p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.cookie-options {
    margin: 1.5rem 0;
}

.cookie-option {
    border: 1px solid #e0e0e0;
    padding: 1rem;
    margin-bottom: 0.8rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cookie-option:hover {
    border-color: #4A90A4;
    background: rgba(74, 144, 164, 0.05);
}

.cookie-option label {
    display: flex;
    gap: 1rem;
    cursor: pointer;
    align-items: flex-start;
}

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-option strong {
    display: block;
    color: #B8935F;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.cookie-option p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 0.8rem;
    margin: 2rem 0 1rem;
    flex-wrap: wrap;
}

.cookie-actions button {
    flex: 1;
    min-width: 140px;
    padding: 1rem 1.5rem;
    border: none;
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-weight: 500;
}

.btn-accept-all {
    background: linear-gradient(135deg, #D4A574, #B8935F);
    color: white;
}

.btn-accept-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.btn-accept-selected {
    background: #4A90A4;
    color: white;
}

.btn-accept-selected:hover {
    background: #6BADC0;
    transform: translateY(-2px);
}

.btn-reject-all {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
}

.btn-reject-all:hover {
    background: #e8e8e8;
}

.cookie-footer {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 1.5rem;
}

.cookie-footer a {
    color: #4A90A4;
    text-decoration: none;
}

.cookie-footer a:hover {
    text-decoration: underline;
}

.cookie-settings-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--wood-medium);
    color: var(--text-gold);
    border: 1px solid rgba(212, 165, 116, 0.3);
    padding: 0.9rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cookie-settings-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 144, 164, 0.4);
}

/* Mobile */
@media (max-width: 768px) {
    .cookie-modal {
        padding: 1.5rem;
        max-height: 90vh;
    }
    
    .cookie-modal h2 {
        font-size: 1.4rem;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-actions button {
        width: 100%;
    }
    
    .cookie-settings-btn {
        bottom: 10px;
        left: 10px;
        font-size: 0.8rem;
        padding: 0.7rem 1.2rem;
    }
}
