/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header & Navigation */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.logo-image {
    height: 36px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-family: 'Pathway Extreme', Arial, sans-serif;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #b61a2a;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #b61a2a;
}

.btn-reserve {
    background: transparent;
    border: 2px solid #b61a2a;
    color: #b61a2a;
    padding: 8px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-reserve:hover {
    background: #b61a2a;
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('images/hero_background.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 72px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 60px;
}

.hero-titles {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.title-left,
.title-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.chinese-title,
.english-title {
    font-size: 4rem;
    color: #b61a2a;
    font-style: italic;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.english-title {
    letter-spacing: -0.05em;
}

.divider-right,
.divider-left {
    width: 200px;
    height: 2px;
    background: #b61a2a;
    border-style: dashed;
}

.hero-bottom {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-images {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: end;
}

.hero-image-left img,
.hero-image-right img {
    width: 100%;
    max-width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.btn-buffet {
    background: #b61a2a;
    color: white;
    padding: 20px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 5px 15px rgba(182, 26, 42, 0.3);
    transition: all 0.3s ease;
    border: 3px solid #b61a2a;
}

.btn-buffet:hover {
    background: transparent;
    color: #b61a2a;
    transform: translateY(-2px);
}

/* Payment Notice */
.payment-notice {
    background: #000;
    color: #e20000;
    padding: 75px 0;
    text-align: center;
}

.payment-notice p {
    font-size: 1.1rem;
    margin: 0;
}

/* Reservation Section */
.reservation {
    background: url('images/hero_background.jpg') center/cover no-repeat;
    position: relative;
    padding: 300px 0 162px;
    color: white;
}

.reservation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.reservation-content {
    position: relative;
    z-index: 2;
    max-width: 58.333333%;
}

.section-subtitle {
    color: #b61a2a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.section-title {
    color: #f6f1ea;
    font-size: 3rem;
    margin-bottom: 22px;
    font-weight: 300;
}

.reservation-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.opening-hours {
    margin-top: 18px;
}

.hours-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 22px;
    gap: 1rem;
}

.hours-icon {
    width: 36px;
    height: 36px;
    background: #b61a2a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hours-content h5 {
    color: #f6f1ea;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.hours-content p {
    color: #b61a2a;
    font-family: 'Taviraj', serif;
    font-size: 1.2rem;
    margin: 0;
}

/* Restaurant Gallery */
.restaurant-gallery {
    padding: 70px 0 35px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 38.56% 22.21% 33.23%;
    gap: 2px;
    align-items: start;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-title {
    position: absolute;
    top: 170px;
    left: -1px;
    z-index: 2;
    margin-right: -70%;
}

.gallery-title h1 {
    color: #b61a2a;
    font-size: 3rem;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.gallery-button {
    position: absolute;
    bottom: -85px;
    left: 60px;
    z-index: 2;
}

.btn-gallery {
    background: #3366ff;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-gallery:hover {
    background: #0037dd;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f8f8;
}

.about h2 {
    color: #b61a2a;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.about h3 {
    color: #333;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

/* Buffet Section */
.buffet {
    padding: 80px 0;
}

.buffet h2 {
    color: #b61a2a;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.buffet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.buffet-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.buffet-info h3 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.buffet-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.buffet-features ul {
    list-style: none;
}

.buffet-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
    color: #555;
}

.buffet-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #b61a2a;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #111;
    color: #f4f4f4;
    padding: 75px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #b61a2a;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copyright {
    color: #000;
}

.footer-copyright a {
    color: #b61a2a;
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.legal-content {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.legal-content h2 {
    color: #b61a2a;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    color: #333;
    margin: 1.5rem 0 1rem;
}

.legal-content p,
.legal-content li {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-content ul {
    padding-left: 2rem;
}

.legal-content a {
    color: #b61a2a;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.close-legal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #b61a2a;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.close-legal:hover {
    background: #a01729;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .gallery-grid {
        grid-template-columns: 33.33% 33.33% 33.33%;
    }
    
    .gallery-title {
        top: 100px;
        margin-right: -100%;
    }
    
    .reservation-content {
        max-width: 76.25%;
    }
}

@media (max-width: 991.98px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-titles {
        gap: 2rem;
    }
    
    .chinese-title,
    .english-title {
        font-size: 3rem;
    }
    
    .divider-right,
    .divider-left {
        width: 100px;
    }
    
    .reservation {
        padding: 190px 0 120px;
    }
    
    .reservation-content {
        max-width: 79.17%;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .gallery-title {
        top: 70px;
        margin-right: -70%;
    }
    
    .buffet-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-titles {
        flex-direction: column;
        gap: 1rem;
    }
    
    .title-left,
    .title-right {
        flex-direction: column;
        gap: 1rem;
    }
    
    .chinese-title,
    .english-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .divider-right,
    .divider-left {
        width: 150px;
    }
    
    .hero-images {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-image-left,
    .hero-image-right {
        order: 2;
    }
    
    .hero-button {
        order: 1;
        margin-bottom: 0;
    }
    
    .reservation {
        padding: 60px 15px 40px;
    }
    
    .reservation-content {
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-title {
        position: static;
        text-align: center;
        margin: 1rem 0;
    }
    
    .gallery-button {
        position: static;
        text-align: center;
        margin: 1rem 0;
    }
    
    .gallery-title h1 {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .chinese-title,
    .english-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hours-content p {
        font-size: 1rem;
    }
    
    .legal-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .about h2,
    .buffet h2 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.hero-images {
    animation: fadeIn 1s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}
/* Preise Section */
.preise {
    padding: 80px 0;
    background: #f8f8f8;
}

.preise h2 {
    color: #b61a2a;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.preise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.preise-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #b61a2a;
}

.preise-card h3 {
    color: #b61a2a;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: bold;
}

.preise-time-slot {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.preise-time-slot:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.time-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.time {
    font-weight: bold;
    color: #333;
    font-size: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #b61a2a;
}

.buffet-type {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.includes {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Kinderpreise */
.kinderpreise {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #3366ff;
}

.kinderpreise h3 {
    color: #3366ff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.kinder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.kinder-card h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.kinder-preise {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.kinder-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8f8f8;
    border-radius: 5px;
}

.kinder-price {
    font-weight: bold;
    color: #3366ff;
    font-size: 1.1rem;
}

/* Responsive Design für Preise */
@media (max-width: 767.98px) {
    .preise-grid {
        grid-template-columns: 1fr;
    }
    
    .time-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .kinder-grid {
        grid-template-columns: 1fr;
    }
    
    .kinder-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}
