/* ===== Font Face ===== */
@font-face {
    font-family: 'Tiffany';
    src: url('fonts/tiffany.woff2') format('woff2'),
    url('fonts/tiffany.woff') format('woff'),
    url('fonts/tiffany.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ===== CSS Reset & Variables ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --gold: rgb(196, 185, 163); /* #c9a96e; */
    --gold-light: #d4ba85;
    --dark: #11071A;
    --dark-secondary: #1f0f25;
    --grey: #666666;
    --grey-light: #888888;
    --grey-dark: #4a4a4a;
    --white: #ffffff;
    --cream: #f5f0e8;
    --beige: #C4B897;
    --beige-dark: #a89880;

    /* Fonts */
    --font-serif: Georgia, 'Times New Roman', serif;
    --font-sans: Verdana, Arial, sans-serif;
    --font-headline: 'Tiffany', Georgia, 'Times New Roman', serif;

    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.6;
    color: var(--grey-dark);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===== Barrierefreiheit ===== */
/* Skip Link */
.skip-link {
    position: absolute;
    top: -50px;
    left: 20px;
    background-color: var(--dark);
    color: var(--white);
    padding: 12px 24px;
    z-index: 10000;
    font-size: 14px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: none;
}

/* Focus Styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ===== Header ===== */
.header {
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
}

/* Initial Header - scrollt mit der Seite */
.header-initial {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
}

.header-initial .logo-img {
    height: 90px;
}

/* Fixed Header - erscheint nach Hero */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(196, 184, 151, 0.95);
    padding: 10px 40px;
    transform: translateY(-100%);
}

.header-fixed .logo-img {
    height: 50px;
    filter: none;
}

.header-fixed .news-link {
    color: var(--dark);
}

.header-fixed .phone-icon {
    color: var(--dark);
}

.header-fixed .hamburger span {
    background-color: var(--dark);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 80px;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    display: block;
}

.logo-img {
    width: auto;
}

.news-link {
    font-family: var(--font-headline);
    font-size: 18px;
    font-style: normal;
    color: rgb(33, 30, 29);
    position: relative;
    z-index: 1;
}

header .news-link::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: rgb(182, 174, 146);
    border-radius: 50%;
    z-index: -1;
}

.news-link:hover {
    color: var(--gold);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--dark);
    border-radius: 50%;
    color: var(--beige);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-initial .phone-icon {
    background-color: var(--dark);
    color: var(--beige);
}

.header-fixed .phone-icon {
    background-color: var(--dark);
    color: var(--beige);
}

.phone-icon:hover {
    background-color: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}

.phone-icon:active {
    transform: scale(1.05);
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--dark);
    transition: var(--transition);
}

.header-initial .hamburger span {
    background-color: var(--dark);
}

.hamburger:hover span {
    background-color: var(--gold);
}

/* ===== Mobile Navigation ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--beige);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav .logo-img {
    height: 60px;
    filter: none;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
    padding: 10px;
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--grey);
}

.mobile-nav-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
}

.mobile-nav-links li {
    overflow: hidden;
}

.mobile-nav-links a {
    font-family: var(--font-headline);
    font-size: 24px;
    letter-spacing: 4px;
    color: var(--dark);
    text-transform: uppercase;
    display: block;
    transition: var(--transition);
}

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

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 15%, rgba(0, 0, 0, 0) 35%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 40px 60px;
    padding-bottom: 8%;
}

.hero h1 {
    font-family: var(--font-headline);
    font-size: 42px;
    line-height: 42px;
    font-weight: 400;
    letter-spacing: 2px;
    color: rgb(196, 185, 163);
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: var(--font-headline);
    font-size: 28px;
    font-style: normal;
    color: var(--white);
    font-weight: 400;
    letter-spacing: 1px;
}

/* ===== About Section ===== */
.about {
    padding: 80px 40px;
    background-color: var(--white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.about-left {
    display: block;
    text-align: center;
}

.about-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.about-title span {
    font-family: var(--font-headline);
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    line-height: 1.15;
    text-align: center;
}

.about-title .grey {
    color: var(--grey);
}

.about-title .gold {
    color: var(--gold);
}

.about-text {
    max-width: 500px;
    text-align: center;
    margin: 0 auto 30px auto;
}

.about-text p {
    font-size: 11px;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 15px;
}

.opening-hours-small {
    margin-bottom: 40px;
}

.opening-hours-small p {
    font-size: 11px;
    color: var(--grey);
}

.opening-hours-small .closed {
    color: var(--gold);
}

.about-left .dish-image {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

.about-left .dish-image img {
    width: 280px;
    height: 280px;
    object-fit: cover;
}

/* Kontakt-Divider mit Linien oben/unten */
.contact-divider {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.contact-divider .line {
    width: calc(100% + 40px);
    height: 1px;
    background-color: rgb(179, 173, 147);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-divider .contact-link {
    font-family: var(--font-serif);
    font-size: 13px;
    font-style: normal;
    color: var(--grey-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-divider:hover .contact-link {
    color: var(--gold);
}

.contact-divider:hover .line {
    width: 100%;
    background-color: var(--gold);
}

.about-right {
    display: flex;
    flex-direction: column;
}

.chef-image {
    margin-top: -100px;
    margin-bottom: 30px;
}

.chef-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.contact-box {
    background-color: transparent;
    padding: 30px;
    text-align: center;
}

.contact-box .address {
    font-family: var(--font-serif);
    font-size: 13px;
    color: var(--grey-dark);
    margin-bottom: 20px;
}

.contact-box .hours {
    margin-bottom: 20px;
}

.contact-box .hours-title {
    font-size: 11px;
    letter-spacing: 0;
    text-transform: none;
    color: var(--grey);
    /*margin-bottom: 10px;*/
}

.contact-box .hours p {
    font-size: 11px;
    color: var(--grey);
    line-height: 1.6;
}


.contact-box .special-hours-box {
    margin-top: 15px;
    margin-bottom: 20px;
}

.contact-box .special-hours-box .special-hours {
    font-size: 11px;
    color: var(--grey);
    line-height: 1.6;
}

.contact-box .special-hours-box .closed {
    font-size: 11px;
    color: var(--grey-dark);
    line-height: 1.6;
}

/* Call-Divider mit Linien oben/unten */
.call-divider {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.call-divider .line {
    width: calc(100% + 40px);
    height: 1px;
    background-color: rgb(179, 173, 147);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.call-divider .call-link {
    font-family: var(--font-serif);
    font-size: 13px;
    font-style: normal;
    color: var(--grey-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.call-divider:hover .call-link {
    color: var(--gold);
}

.call-divider:hover .line {
    width: 100%;
    background-color: var(--gold);
}

/* ===== Menu Section ===== */
.menu-section {
    padding: 0px 40px 60px 40px;
    padding-bottom: 0;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

.menu-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--white);
    padding: 40px;
    padding-bottom: 60px;
    margin-bottom: -40px;
    position: relative;
    z-index: 2;
}

.menu-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.menu-header .line {
    display: block;
    flex-shrink: 0;
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, rgb(179, 173, 147), transparent);
}

.menu-header .line:last-child {
    background: linear-gradient(to left, rgb(179, 173, 147), transparent);
}

.menu-header h2 {
    font-family: var(--font-headline);
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--grey);
    text-transform: uppercase;
}

.menu-text {
    font-size: 14px;
    color: var(--grey);
    margin-bottom: 25px;
    line-height: 1.8;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.menu-divider {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.menu-divider .line {
    width: calc(100% + 40px);
    height: 1px;
    background-color: rgb(179, 173, 147);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-link {
    font-family: var(--font-serif);
    font-size: 13px;
    font-style: normal;
    color: var(--grey-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-divider:hover .menu-link {
    color: var(--gold);
}

.menu-divider:hover .line {
    width: 100%;
    background-color: var(--gold);
}

/* ===== Gallery ===== */
.gallery {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.gallery-track {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 33.333%;
    height: 300px;
    overflow: hidden;
}

.gallery-item picture {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== Press Section ===== */
.press {
    padding: 60px 40px;
    background-color: var(--white);
}

.press-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.press-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.press-header .line {
    display: block;
    flex-shrink: 0;
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, rgb(179, 173, 147), transparent);
}

.press-header .line:last-child {
    background: linear-gradient(to left, rgb(179, 173, 147), transparent);
}

.press h2,
.press-header h2 {
    font-family: var(--font-headline);
    font-size: 38px;
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--grey);
    text-transform: uppercase;
    margin-bottom: 0;
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    padding: 30px 0;
}

.press-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.press-logo-item img {
    height: 100px;
    width: auto;
}

/* ===== Visit Section ===== */
.visit {
    padding: 80px 40px;
    padding-bottom: 100px;
    position: relative;
    z-index: 2;
}

.visit-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.visit-left {
    padding-bottom: 40px;
    text-align: center;
}

.visit-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px 0 30px 0;
}

.visit-title span {
    font-family: var(--font-headline);
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    line-height: 1.3;
}

.visit-title .grey {
    color: var(--grey);
}

.visit-title .gold {
    color: var(--gold);
}

.owners {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--grey-dark);
    margin-bottom: 5px;
}

.with-lotti {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--grey);
    margin-bottom: 30px;
}

.quote {
    font-family: var(--font-serif);
    font-size: 11px;
    font-style: italic;
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 350px;
}

.quote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-size: 10px;
    color: var(--grey-light);
}

.contact-btn {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 12px;
    font-style: normal;
    color: var(--grey-dark);
    border: 1px solid var(--grey);
    padding: 10px 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(201, 169, 110, 0.2),
            transparent
    );
    transition: left 0.5s ease;
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.3);
}

.contact-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(201, 169, 110, 0.3);
}

.visit-right {
    position: relative;
    z-index: 10;
}

.visit-right img {
    position: relative;;
    width: 80%;
    height: auto;
    z-index: 11;
}

.visit-text {
    margin: 20px 0 30px 0;
    opacity: .6;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--dark);
    padding: 70px 40px 100px 40px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* Footer Top - Logo */
.footer-top {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    height: 70px;
    filter: brightness(0) invert(1);
}


/* Footer Divider */
.footer-divider {
    width: 60%;
    max-width: 700px;
    height: 1px;
    background-color: var(--grey-dark);
    margin: 10px auto;
}

/* Footer Content - Centered */
.footer-content {
    text-align: center;
    padding: 40px 0;
    max-width: 700px;
    margin: 0 auto;
}

.footer-address {
    font-size: 15px;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 40px;
}

.footer-hours .hours-title {
    font-size: 15px;
    letter-spacing: 0;
    text-transform: none;
    color: var(--white);
    /*margin-bottom: 20px;*/
}

.footer-hours p {
    font-size: 15px;
    color: var(--white);
    line-height: 1.6;
}

.footer-hours .special-hours {
    margin-top: 10px;
}

.footer-hours .closed {
    color: var(--white);
    /*margin-top: 2px;*/
    font-weight: 600;
}

/* Footer Bottom - Nav and Legal */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    gap: 20px;
}

.footer-nav ul {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
}

.footer-nav a {
    font-size: 12px;
    color: var(--white);
}

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

.footer-legal {
    position: absolute;
    bottom: 30px;
    right: 40px;
    text-align: right;
    width: 100%;
    color: var(--grey);
}

.footer-legal a {
    font-size: 12px;
    color: var(--grey-light);
}

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

/* ===== News Modal ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background-color: var(--beige);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    position: relative;
    display: flex;
    flex-direction: column;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-header {
    position: relative;
    padding: 50px 50px 0;
    flex-shrink: 0;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--grey);
    padding: 5px;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--gold);
}

.modal-title {
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 6px;
    color: var(--grey);
    text-align: center;
    margin-bottom: 20px;
}

.modal-divider {
    width: 80px;
    height: 1px;
    background-color: var(--grey-light);
    margin: 0 auto;
}

.modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 40px 50px 50px;
}

.news-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-item {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--beige);
}

.news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-date {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.news-item h3 {
    font-family: var(--font-headline);
    font-size: 18px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 10px;
}

.news-item p {
    font-family: var(--font-sans);
    font-size: 13px;
    line-height: 1.7;
    color: var(--grey);
}

/* ===== Legal Modal (Impressum, Datenschutz) ===== */
.modal-legal {
    max-width: 700px;
    max-height: 85vh;
}

.legal-content {
    text-align: left;
}

.legal-content h3 {
    font-family: var(--font-headline);
    font-size: 16px;
    font-weight: 400;
    color: var(--dark);
    margin-top: 25px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content h4 {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--grey-dark);
    margin-top: 15px;
    margin-bottom: 8px;
}

.legal-content p {
    font-family: var(--font-sans);
    font-size: 13px;
    line-height: 1.7;
    color: var(--grey);
    margin-bottom: 10px;
}

.legal-content ul {
    margin: 10px 0 10px 20px;
    list-style: disc;
}

.legal-content li {
    font-family: var(--font-sans);
    font-size: 13px;
    line-height: 1.7;
    color: var(--grey);
    margin-bottom: 5px;
}

.legal-content a {
    color: var(--gold);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--gold-light);
}

.legal-note {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--beige);
    color: var(--grey-light);
}

/* ===== Map Modal (Anfahrt) ===== */
.modal-map {
    max-width: 800px;
}

.modal-content-map {
    padding: 20px 50px 50px;
}

.map-container {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    min-height: 400px;
    background: var(--cream);
}

.map-container iframe {
    display: block;
}

/* ===== Map Consent Layer (DSGVO) ===== */
.map-consent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.map-consent-content {
    text-align: center;
    padding: 30px;
    max-width: 400px;
}

.map-consent-icon {
    color: var(--gold);
    margin-bottom: 15px;
}

.map-consent-content h3 {
    font-family: var(--font-headline);
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: normal;
}

.map-consent-content p {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--grey-dark);
    line-height: 1.6;
    margin-bottom: 10px;
}

.map-consent-privacy {
    font-size: 12px !important;
    color: var(--grey) !important;
}

.map-consent-privacy a {
    color: var(--gold);
    text-decoration: none;
}

.map-consent-privacy a:hover {
    text-decoration: underline;
}

.map-consent-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.map-consent-btn {
    font-family: var(--font-serif);
    font-size: 14px;
    padding: 12px 30px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.map-consent-accept {
    background: var(--gold);
    color: var(--white);
}

.map-consent-accept:hover {
    background: var(--gold-light);
}

.map-consent-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 12px;
    color: var(--grey);
    cursor: pointer;
}

.map-consent-remember input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
    cursor: pointer;
}

.map-consent.hidden {
    display: none;
}

.map-info {
    text-align: center;
}

.map-address {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.6;
    color: var(--grey-dark);
    margin-bottom: 15px;
}

.map-directions-link {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 13px;
    font-style: italic;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 10px 25px;
    transition: var(--transition);
}

.map-directions-link:hover {
    background-color: var(--gold);
    color: var(--white);
}

/* ===== PDF Modal (Speisekarte) ===== */
.modal-pdf {
    max-width: 95vw;
    width: 900px;
    height: 90vh;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-pdf .modal-header {
    flex-shrink: 0;
}

.modal-content-pdf {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    min-height: 0;
}

/* PDF Toolbar */
.pdf-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background-color: var(--cream);
    border-bottom: 1px solid var(--beige);
}

.pdf-toolbar-left,
.pdf-toolbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.pdf-toolbar-right {
    justify-content: flex-end;
}

.pdf-toolbar-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--grey-dark);
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

.pdf-toolbar .modal-close {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--beige-dark);
    border-radius: 4px;
    background-color: var(--white);
    color: var(--grey-dark);
    cursor: pointer;
    transition: var(--transition);
}

.pdf-toolbar .modal-close:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.pdf-toolbar .modal-close svg {
    width: 18px;
    height: 18px;
}

.pdf-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--beige-dark);
    border-radius: 4px;
    background-color: var(--white);
    color: var(--grey-dark);
    cursor: pointer;
    transition: var(--transition);
}

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

.pdf-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pdf-btn:disabled:hover {
    background-color: var(--white);
    border-color: var(--beige-dark);
    color: var(--grey-dark);
}

.pdf-btn svg {
    width: 18px;
    height: 18px;
}

.pdf-page-info,
.pdf-zoom-info {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--grey-dark);
    min-width: 60px;
    text-align: center;
}

.pdf-toolbar-divider {
    width: 1px;
    height: 24px;
    background-color: var(--beige-dark);
    margin: 0 8px;
}

/* PDF Viewer Container */
.pdf-viewer-container {
    flex: 1;
    overflow: auto;
    background-color: #4a4a4a;
    padding: 30px;
    min-height: 0;
    user-select: none;
    -webkit-user-select: none;
}

.pdf-viewer-container.can-pan {
    cursor: grab;
}

.pdf-viewer-container.is-panning {
    cursor: grabbing;
}

#pdfCanvas {
    display: block;
    margin: 0 auto;
    background-color: var(--white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* PDF iframe fallback for local file access */
.pdf-iframe-fallback {
    width: 100%;
    height: 100%;
    border: none;
    background-color: var(--white);
}

/* PDF Loading State */
.pdf-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 60px;
    color: var(--white);
}

.pdf-loading p {
    font-family: var(--font-serif);
    font-size: 14px;
    font-style: italic;
}

.pdf-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.pdf-loading.hidden {
    display: none;
}

/* PDF Error State */
.pdf-error {
    text-align: center;
    padding: 40px;
    color: var(--white);
}

.pdf-error p {
    font-family: var(--font-sans);
    font-size: 14px;
    margin-bottom: 20px;
}

.pdf-error a {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--gold);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 13px;
    border-radius: 4px;
    transition: var(--transition);
}

.pdf-error a:hover {
    background-color: var(--gold-light);
}

@media (min-width: 1024px) {
    .footer {
        margin-top: -200px;
    }
}

/* Responsive PDF Toolbar */
@media (max-width: 600px) {
    .pdf-toolbar {
        flex-wrap: nowrap;
        gap: 4px;
        padding: 8px 10px;
    }

    .pdf-toolbar-left,
    .pdf-toolbar-right {
        gap: 4px;
        flex: 0 0 auto;
    }

    .pdf-toolbar-title {
        font-size: 11px;
        letter-spacing: 0.15em;
        flex: 1;
        min-width: 0;
    }

    .pdf-btn {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }

    .pdf-btn svg {
        width: 14px;
        height: 14px;
    }

    .pdf-toolbar .modal-close {
        width: 28px;
        height: 28px;
    }

    .pdf-toolbar .modal-close svg {
        width: 16px;
        height: 16px;
    }

    .pdf-page-info,
    .pdf-zoom-info {
        font-size: 10px;
        min-width: 40px;
    }

    .pdf-toolbar-divider {
        display: none;
    }

    /* Zoom-Buttons auf Mobile verstecken - Pinch-to-Zoom nutzen */
    #pdfZoomIn,
    #pdfZoomOut,
    .pdf-zoom-info {
        display: none;
    }

    .pdf-viewer-container {
        padding: 10px;
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 1160px) {
    .visit-right img {
        width: 90%;
    }
}

@media (max-width: 1024px) {
    .about-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .about-left {
        display: contents;
    }

    .about-left .about-title {
        order: 1;
    }

    .about-left .about-text {
        order: 2;
    }

    .about-left .contact-divider {
        order: 3;
    }

    .about-left .dish-image {
        order: 10;
        margin-top: 0;
        display: flex;
        justify-content: center;
    }

    .about-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        order: 5;
    }

    .chef-image {
        margin-top: 0;
    }

    .visit-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .visit-right {
        order: -1;
        display: flex;
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .footer-logo {
        width: 100%;
        justify-self: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .logo-placeholder {
        font-size: 22px;
    }

    .news-link {
        display: none;
    }

    .hero h1 {
        font-size: 18px;
        letter-spacing: 5px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .about {
        padding: 60px 20px;
    }

    .about-title span {
        font-size: 22px;
        letter-spacing: 4px;
    }

    .about-right {
        grid-template-columns: 1fr;
    }

    .menu-section {
        padding: 40px 20px;
    }

    /* Responsive Gallery - größere Items auf Mobile */
    .gallery-item {
        flex: 0 0 80%;
        height: 250px;
    }

    .press {
        padding: 40px 20px;
    }

    .press-logos {
        gap: 25px;
    }

    .logo-placeholder-circle {
        width: 50px;
        height: 50px;
    }

    .visit {
        padding: 60px 20px;
    }

    .visit-title span {
        font-size: 20px;
        letter-spacing: 4px;
    }

    .footer {
        padding: 40px 20px 25px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer {
        margin-top: 0;
    }

    .footer-top {
        justify-content: center;
    }

    .footer-nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-legal {
        position: relative;
        bottom: auto;
        right: auto;
        text-align: center;
        margin-top: 40px;
    }

    .mobile-nav {
        padding: 15px 20px;
    }

    /* Modal Mobile Styles */
    .modal {
        width: 95%;
        max-height: 90vh;
    }

    .modal-header {
        padding: 30px 20px 0;
    }

    .modal-content {
        padding: 20px;
    }

    .modal-legal,
    .modal-map {
        max-width: 95%;
    }

    .modal-pdf {
        max-width: 95%;
        height: 85vh;
    }

    .modal-content-map {
        padding: 20px;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }

    .hero-overlay {
        padding-bottom: calc(20% + 50px);
    }

    .hero h1 {
        font-size: 22px;
        letter-spacing: 2px;
        white-space: nowrap;
    }

    .hero-subtitle {
        font-size: 18px;
        white-space: nowrap;
    }

    .about-title span {
        font-size: 18px;
        letter-spacing: 3px;
    }

    .menu-header h2 {
        font-size: 16px;
        letter-spacing: 4px;
    }

    .menu-header .line {
        width: 40px;
    }

    /* Gallery auf kleinen Screens */
    .gallery-item {
        flex: 0 0 85%;
        height: 200px;
    }

    .press-logos {
        gap: 20px;
    }

    .logo-placeholder-circle {
        width: 40px;
        height: 40px;
    }

    .press-logo-item span {
        font-size: 8px;
    }

    .visit-title span {
        font-size: 16px;
        letter-spacing: 3px;
    }

    .quote {
        font-size: 10px;
    }

    /* Modal Styles für kleine Screens */
    .modal-title {
        font-size: 18px;
        letter-spacing: 4px;
    }

    .legal-content h3 {
        font-size: 14px;
    }

    .map-container iframe {
        height: 250px;
    }
}

/* Extra kleine Screens (iPhone 5, SE etc.) */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .footer-nav ul {
        gap: 8px;
        flex-wrap: nowrap;
    }

    .footer-nav a {
        font-size: 10px;
    }

    .footer-legal {
        font-size: 10px;
    }
}
