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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #000;
    background: #fff;
    overflow-x: hidden;
}

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

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

@media (min-width: 768px) {
    nav {
        padding: 20px 0;
    }
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

@media (max-width: 767px) {
    .mobile-menu-btn {
        display: block;
    }
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .logo {
        font-size: 24px;
        letter-spacing: 2px;
    }
}

.nav-links {
    display: none;
    list-style: none;
    gap: 30px;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 40px;
    }
}

/* Modern Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 248, 248, 0.98) 100%);
    backdrop-filter: blur(20px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
    height: 100vh;
    overflow-y: auto;
}

.mobile-nav-content {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 80px 20px 40px;
    text-align: center;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateY(0);
}

.nav-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    color: #333;
    font-size: 20px;
    cursor: pointer;
    z-index: 10000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.nav-logo {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.nav-subtitle {
    color: #666;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 40px;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
}

.nav-link {
    color: #000;
    text-decoration: none;
    font-size: 32px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.02), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #333;
    background: rgba(0, 0, 0, 0.02);
    letter-spacing: 3px;
}

.nav-link:last-child {
    border-bottom: none;
}

.nav-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.nav-action-btn {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-action-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-action-btn.primary {
    background: #000;
    color: #fff;
    border-color: #000;
}

.nav-action-btn.primary:hover {
    background: #333;
    border-color: #333;
}

.nav-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

.nav-footer p {
    color: #666;
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 5px;
    line-height: 1.4;
}

/* Mobile Navigation Menu Animations */
.mobile-nav-overlay:not(.active) .nav-link {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active .nav-link {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
}

.mobile-nav-overlay.active .nav-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-overlay.active .nav-link:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-nav-overlay.active .nav-link:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-nav-overlay.active .nav-link:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-nav-overlay.active .nav-link:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-nav-overlay.active .nav-link:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-nav-overlay.active .nav-link:nth-child(7) {
    transition-delay: 0.4s;
}

.mobile-nav-overlay.active .nav-link:nth-child(8) {
    transition-delay: 0.45s;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #666;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.3s ease;
}

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

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.reserve-btn {
    background: #fff;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    border-radius: 2px;
}

@media (min-width: 768px) {
    .reserve-btn {
        padding: 12px 30px;
        font-size: 12px;
        letter-spacing: 1px;
    }
}

.reserve-btn:hover {
    background: #ccc;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('images/7.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

@media (max-width: 767px) {
    .hero {
        background-attachment: scroll;
        height: 80vh;
        min-height: 500px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: heroFadeIn 1.5s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 64px;
        letter-spacing: 6px;
        margin-bottom: 20px;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 80px;
        letter-spacing: 8px;
    }
}

.hero-content .tagline {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .hero-content .tagline {
        font-size: 18px;
        letter-spacing: 3px;
        margin-bottom: 50px;
    }
}

.hero-cta {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-cta {
        padding: 15px 40px;
        letter-spacing: 2px;
    }
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: left 0.3s ease;
    z-index: -1;
}

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

.hero-cta:hover {
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Menu Section */
.menu {
    padding: 60px 0;
}

@media (min-width: 768px) {
    .menu {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .menu {
        padding: 120px 0;
    }
}

.section-title {
    font-size: 32px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 40px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 48px;
    }
}

.section-subtitle {
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    color: #666;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 60px;
    }
}

.menu-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    padding: 0 10px;
}

@media (min-width: 768px) {
    .menu-filter {
        gap: 15px;
        margin-bottom: 40px;
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .menu-filter {
        gap: 20px;
        margin-bottom: 60px;
    }
}

.filter-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 8px 15px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

@media (min-width: 768px) {
    .filter-btn {
        padding: 10px 20px;
        font-size: 12px;
        letter-spacing: 1px;
    }
}

.filter-btn:hover,
.filter-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.menu-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .menu-categories {
        gap: 60px;
        margin-top: 60px;
    }
}

@media (min-width: 1024px) {
    .menu-categories {
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 80px;
        margin-top: 80px;
    }
}

.menu-category {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 40px;
    opacity: 1;
    transition: all 0.3s ease;
}

.menu-category.hidden {
    display: none;
}

.menu-category h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .menu-category h3 {
        font-size: 24px;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 768px) {
    .menu-item {
        flex-direction: row;
        margin-bottom: 25px;
    }
}

.menu-item:hover {
    background: #f8f8f8;
    padding: 15px;
    margin: 10px -15px;
    border-radius: 4px;
}

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

.item-info {
    flex: 1;
}

.item-info h4 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
    text-transform: none;
    letter-spacing: 0;
}

@media (min-width: 768px) {
    .item-info h4 {
        font-size: 16px;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
}

.item-info p {
    font-size: 13px;
    font-weight: 300;
    color: #666;
    line-height: 1.5;
}

.item-price-container {
    align-self: flex-start;
}

.item-price {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .item-price {
        font-size: 16px;
        margin-left: 20px;
    }
}

.item-price::before {
    content: '€ ';
}

.item-unit {
    font-size: 12px;
    color: #999;
    font-weight: 300;
    display: block;
    margin-top: 5px;
}

/* Allergen Styles */
.allergen-codes {
    display: inline-flex;
    gap: 3px;
    margin-top: 5px;
    flex-wrap: wrap;
}

.allergen-code {
    background: #e8e8e8;
    color: #333;
    font-size: 10px;
    font-weight: 500;
    padding: 2px 5px;
    border-radius: 2px;
    display: inline-block;
}

@media (min-width: 768px) {
    .allergen-codes {
        gap: 5px;
    }

    .allergen-code {
        font-size: 11px;
        padding: 2px 6px;
        border-radius: 3px;
    }
}

.allergen-legend {
    background: #f8f8f8;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

@media (min-width: 768px) {
    .allergen-legend {
        padding: 30px;
        margin: 40px 0;
        border-radius: 12px;
    }
}

.allergen-legend h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .allergen-legend h3 {
        font-size: 18px;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
}

.allergen-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}

@media (min-width: 640px) {
    .allergen-grid {
        gap: 12px;
    }
}

@media (min-width: 1024px) {
    .allergen-grid {
        gap: 15px;
    }
}

.allergen-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    flex: 0 0 auto;
    background: rgba(0, 0, 0, 0.02);
    padding: 6px 10px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
}

@media (min-width: 640px) {
    .allergen-item {
        font-size: 13px;
        gap: 10px;
        padding: 8px 12px;
    }
}

.allergen-number {
    background: #000;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 10px;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .allergen-number {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
}

.allergen-special {
    background: #666;
}

.allergen-frozen {
    background: #888;
}

.allergen-filter-section {
    margin: 15px 0;
    padding: 15px;
    background: #fafafa;
    border-radius: 6px;
}

@media (min-width: 768px) {
    .allergen-filter-section {
        margin: 20px 0;
        padding: 20px;
        border-radius: 8px;
    }
}

.allergen-filter-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.allergen-filter-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.allergen-filter-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.allergen-filter-btn:hover {
    background: #f0f0f0;
}

.allergen-filter-btn.active {
    background: #000;
    border-color: #000;
    color: #fff;
}

/* Welcome Section */
.welcome {
    padding: 60px 0;
    background: #fff;
}

@media (min-width: 768px) {
    .welcome {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .welcome {
        padding: 120px 0;
    }
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .welcome-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .welcome-grid {
        gap: 80px;
    }
}

.welcome-text h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #000;
}

@media (min-width: 768px) {
    .welcome-text h2 {
        font-size: 40px;
        margin-bottom: 30px;
    }
}

@media (min-width: 1024px) {
    .welcome-text h2 {
        font-size: 48px;
        margin-bottom: 40px;
    }
}

.welcome-text p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

@media (min-width: 768px) {
    .welcome-text p {
        font-size: 16px;
        margin-bottom: 25px;
    }
}

.welcome-image,
.quality-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {

    .welcome-image,
    .quality-image {
        border-radius: 12px;
    }
}

@media (min-width: 1024px) {

    .welcome-image,
    .quality-image {
        border-radius: 15px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
}

.main-image,
.quality-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {

    .main-image,
    .quality-img {
        height: 400px;
    }
}

@media (min-width: 1024px) {

    .main-image,
    .quality-img {
        height: 100%;
    }
}

.main-image:hover,
.quality-img:hover {
    transform: scale(1.02);
}

/* Quality Section */
.quality {
    padding: 60px 0;
    background: #f8f8f8;
}

@media (min-width: 768px) {
    .quality {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .quality {
        padding: 120px 0;
    }
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .quality-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .quality-grid {
        gap: 80px;
    }
}

.quality-text h2 {
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #000;
}

@media (min-width: 768px) {
    .quality-text h2 {
        font-size: 36px;
        margin-bottom: 30px;
    }
}

@media (min-width: 1024px) {
    .quality-text h2 {
        font-size: 42px;
    }
}

.quality-text p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

@media (min-width: 768px) {
    .quality-text p {
        font-size: 16px;
        margin-bottom: 25px;
    }
}

/* Kids Area Section */
.kids-area {
    padding: 60px 0;
    background: #fff;
}

@media (min-width: 768px) {
    .kids-area {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .kids-area {
        padding: 120px 0;
    }
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px 0;
}

@media (min-width: 640px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin: 60px 0;
    }
}

.game-item {
    text-align: center;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.game-item:hover {
    transform: translateY(-10px);
}

.game-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.game-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.safety-info {
    margin-top: 80px;
}

.safety-info h3 {
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

@media (min-width: 768px) {
    .safety-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.safety-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 640px) {
    .safety-images {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

.safety-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.safety-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #333;
}

.age-groups {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
}

.age-groups h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.age-groups ul {
    list-style: none;
    margin: 0;
}

.age-groups li {
    padding: 8px 0;
    font-size: 14px;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.age-groups li::before {
    content: '•';
    color: #666;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.safety-note {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #666;
    font-size: 14px !important;
    font-style: italic;
}

/* Events Section */
.events {
    padding: 60px 0;
    background: linear-gradient(135deg, #333 0%, #666 100%);
    color: white;
}

@media (min-width: 768px) {
    .events {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .events {
        padding: 120px 0;
    }
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .events-grid {
        gap: 80px;
    }
}

.events-text h2 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .events-text h2 {
        font-size: 36px;
        margin-bottom: 25px;
    }
}

@media (min-width: 1024px) {
    .events-text h2 {
        font-size: 42px;
        margin-bottom: 30px;
    }
}

.events-text h3,
.events-text h4 {
    font-size: 20px;
    font-weight: 500;
    margin: 25px 0 15px 0;
    color: #fff;
}

@media (min-width: 768px) {

    .events-text h3,
    .events-text h4 {
        font-size: 22px;
        margin: 28px 0 18px 0;
    }
}

@media (min-width: 1024px) {

    .events-text h3,
    .events-text h4 {
        font-size: 24px;
        margin: 30px 0 20px 0;
    }
}

.events-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}

.events-text ul {
    list-style: none;
    margin: 20px 0;
}

.events-text li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    opacity: 0.9;
}

.events-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #666;
    font-weight: bold;
}

.event-types {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.reservation-note {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ccc;
    font-weight: 500 !important;
}

.events-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .events-img {
        height: 350px;
        border-radius: 12px;
    }
}

@media (min-width: 1024px) {
    .events-img {
        height: 400px;
        border-radius: 15px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
}

/* Birthday Section */
.birthday {
    padding: 60px 0;
    background: #fff;
}

@media (min-width: 768px) {
    .birthday {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .birthday {
        padding: 120px 0;
    }
}

.birthday-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    text-align: center;
}

@media (min-width: 768px) {
    .birthday-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .birthday-grid {
        gap: 80px;
        margin-bottom: 80px;
    }
}

.birthday-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #333;
}

.birthday-highlight {
    background: linear-gradient(135deg, #333, #666);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.birthday-highlight h3 {
    font-size: 22px;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.birthday-img,
.indoor-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {

    .birthday-img,
    .indoor-img {
        height: 350px;
        border-radius: 12px;
    }
}

@media (min-width: 1024px) {

    .birthday-img,
    .indoor-img {
        height: 400px;
        border-radius: 15px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
}

.indoor-section {
    background: #f8f8f8;
    padding: 30px 20px;
    border-radius: 12px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .indoor-section {
        padding: 40px;
        border-radius: 16px;
        margin-top: 50px;
    }
}

@media (min-width: 1024px) {
    .indoor-section {
        padding: 60px;
        border-radius: 20px;
        margin-top: 60px;
    }
}

.indoor-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .indoor-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        text-align: left;
    }
}

.indoor-text h3 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #000;
}

@media (min-width: 768px) {
    .indoor-text h3 {
        font-size: 28px;
        margin-bottom: 18px;
    }
}

@media (min-width: 1024px) {
    .indoor-text h3 {
        font-size: 32px;
        margin-bottom: 20px;
    }
}

.indoor-text p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #666;
}

@media (min-width: 768px) {
    .indoor-text p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 20px;
    }
}

/* Restaurant Interior Section */
.restaurant-interior {
    padding: 40px 0;
    background: #f8f8f8;
}

@media (min-width: 768px) {
    .restaurant-interior {
        padding: 50px 0;
    }
}

@media (min-width: 1024px) {
    .restaurant-interior {
        padding: 60px 0;
    }
}

.interior-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .interior-img {
        height: 250px;
        border-radius: 12px;
    }
}

@media (min-width: 1024px) {
    .interior-img {
        height: 300px;
        border-radius: 15px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 60px 0 30px;
}

@media (min-width: 768px) {
    footer {
        padding: 70px 0 35px;
    }
}

@media (min-width: 1024px) {
    footer {
        padding: 80px 0 40px;
    }
}

/* Full-Screen Menu Overlay - Web 3.0 Style */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(33, 33, 33, 0.98) 100%);
    backdrop-filter: blur(20px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
}

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

.menu-overlay-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 40px;
    text-align: center;
    transform: translateY(50px);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@media (max-width: 767px) {
    .menu-overlay-content {
        padding: 100px 15px 40px;
    }
}

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

.menu-close {
    position: fixed;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.menu-overlay-title {
    color: #fff;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .menu-overlay-title {
        font-size: 64px;
        letter-spacing: 6px;
    }
}

.menu-overlay-subtitle {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 50px;
    font-weight: 300;
}

.menu-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .menu-categories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 10px 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.category-card.selected {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

.category-title {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-count {
    color: #999;
    font-size: 14px;
    font-weight: 300;
}

.menu-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.menu-action-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.menu-action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.menu-action-btn.primary {
    background: #fff;
    color: #000;
}

.menu-action-btn.primary:hover {
    background: #f0f0f0;
}

/* Mobile Menu Container */
.mobile-menu-container {
    text-align: center;
    margin-bottom: 40px;
}

@media (min-width: 1024px) {
    .mobile-menu-container {
        display: none;
    }
}

/* Mobile Menu Trigger */
.mobile-menu-trigger {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.mobile-menu-trigger:active {
    transform: translateY(0);
}

@media (max-width: 1023px) {

    .menu-filter,
    .allergen-filter-section,
    .allergen-legend,
    .menu-categories {
        display: none;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

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

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-overlay:not(.active) .category-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.menu-overlay.active .category-card {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.menu-overlay.active .category-card:nth-child(1) {
    transition-delay: 0.1s;
}

.menu-overlay.active .category-card:nth-child(2) {
    transition-delay: 0.2s;
}

.menu-overlay.active .category-card:nth-child(3) {
    transition-delay: 0.3s;
}

.menu-overlay.active .category-card:nth-child(4) {
    transition-delay: 0.4s;
}

.menu-overlay.active .category-card:nth-child(5) {
    transition-delay: 0.5s;
}

.menu-overlay.active .category-card:nth-child(6) {
    transition-delay: 0.6s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Modern Loading Spinner */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modern-spinner {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    border-top-color: #fff;
    animation-delay: -0.45s;
}

.spinner-ring:nth-child(2) {
    border-right-color: rgba(255, 255, 255, 0.7);
    animation-delay: -0.3s;
}

.spinner-ring:nth-child(3) {
    border-bottom-color: rgba(255, 255, 255, 0.5);
    animation-delay: -0.15s;
}

.spinner-ring:nth-child(4) {
    border-left-color: rgba(255, 255, 255, 0.3);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    margin-top: 20px;
    letter-spacing: 1px;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Footer Mobile Styles */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px;
        margin-bottom: 60px;
    }
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 25px;
        letter-spacing: 1px;
    }
}

.footer-section p,
.footer-section a {
    font-size: 13px;
    font-weight: 300;
    color: #ccc;
    text-decoration: none;
    line-height: 1.6;
    margin-bottom: 8px;
    display: block;
}

@media (min-width: 768px) {

    .footer-section p,
    .footer-section a {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 10px;
    }
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        padding-top: 40px;
    }
}

.footer-bottom p {
    font-size: 11px;
    font-weight: 300;
    color: #666;
}

@media (min-width: 768px) {
    .footer-bottom p {
        font-size: 12px;
    }
}