/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 16px;
    text-decoration: none;
}

.btn-primary {
    background-color: #2c5282;
    color: white;
    border-color: #2c5282;
}

.btn-primary:hover {
    background-color: #2a4d73;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 82, 130, 0.3);
}

.btn-secondary {
    background-color: #fbbf24;
    color: white;
    border-color: #fbbf24;
}

.btn-secondary:hover {
    background-color: #f59e0b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.btn-success {
    background-color: #10b981;
    color: white;
    border-color: #10b981;
}

.btn-success:hover {
    background-color: #059669;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(30, 41, 59, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    color: #2c5282;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-logo .logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #e2e8f0;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #60a5fa;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #60a5fa;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Booking CTA in nav */
.nav-link-cta {
    background: #fbbf24;
    color: #1e293b !important;
    padding: 0.45rem 1rem !important;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.2s, transform 0.15s;
}
.nav-link-cta:hover {
    background: #f59e0b;
    color: #1e293b !important;
    transform: translateY(-1px);
}
.nav-link-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #e2e8f0;
    margin: 3px 0;
    transition: 0.3s;
}

/* ==========================================================
   LANGUAGE SWITCHER
   ========================================================== */

.lang-switcher {
    position: relative;
    margin-left: 1rem;
    z-index: 100;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #e2e8f0;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    transition: background 0.2s, border-color 0.2s;
}

.lang-current:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
}

.navbar.scrolled .lang-current {
    background: rgba(30, 58, 138, 0.08);
    border-color: rgba(30, 58, 138, 0.15);
    color: #475569;
}

.navbar.scrolled .lang-current:hover {
    background: rgba(30, 58, 138, 0.14);
}

.lang-flag {
    font-size: 1.1rem;
    line-height: 1;
}

.lang-code {
    letter-spacing: 0.05em;
}

.lang-arrow {
    font-size: 0.55rem;
    transition: transform 0.25s;
    opacity: 0.6;
}

.lang-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 0.35rem 0;
    margin: 0;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

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

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    cursor: pointer;
    font-size: 0.88rem;
    color: #334155;
    transition: background 0.15s;
}

.lang-option:hover {
    background: #f1f5f9;
}

.lang-option.active {
    color: #1e3a8a;
    font-weight: 600;
    background: #eff6ff;
}

.lang-option .lang-flag {
    font-size: 1.2rem;
}

/* ==========================================================
   INTRO STRIP
   ========================================================== */

.intro-strip {
    background: linear-gradient(135deg, #1e3a8a, #2c5282);
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.intro-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 640px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.intro-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.intro-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.12);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.2s, transform 0.15s, border-color 0.2s;
}

.intro-link:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
    color: #fff;
}

.intro-link i {
    font-size: 0.8rem;
    opacity: 0.8;
}

.intro-link-cta {
    background: #fbbf24;
    color: #1e293b;
    border-color: #fbbf24;
    font-weight: 600;
}

.intro-link-cta:hover {
    background: #f59e0b;
    border-color: #f59e0b;
    color: #1e293b;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Background image with slow zoom-out animation */
.hero::before {
    content: '';
    position: absolute;
    inset: -20px;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    animation: heroZoom 25s ease-out forwards;
    z-index: 0;
}

/* Subtle blue tint + vignette for text legibility */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(0,0,0,.1) 0%, rgba(0,0,0,.4) 100%),
        linear-gradient(rgba(20, 50, 120, .2), rgba(20, 50, 120, .25));
    z-index: 1;
}

@keyframes heroZoom {
    0%   { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-logo-img {
    height: 250px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Quick Info Section */
.quick-info {
    padding: 3rem 0;
    background-color: white;
    border-bottom: 1px solid #e2e8f0;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.info-item i {
    font-size: 1.8rem;
    color: #2c5282;
    min-width: 40px;
}

.info-item h4 {
    font-size: 1.1rem;
    color: #2c5282;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-item p {
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: #2c5282;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    space-y: 2rem;
}

.about-text > div {
    margin-bottom: 2rem;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #2c5282;
    margin-bottom: 1rem;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    font-size: 2.5rem;
    color: #2c5282;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    color: #2c5282;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    padding: 5rem 0 4rem;
    background: #0f1d2f;
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(44, 82, 130, 0.15), transparent),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(44, 82, 130, 0.1), transparent);
    pointer-events: none;
}

/* Reviews Header */
.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.reviews-label {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.25rem;
}

.reviews-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.reviews-score-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.reviews-score-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.rating-stars {
    display: flex;
    gap: 0.15rem;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 0.95rem;
}

.reviews-score-count {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem 1.75rem 1.5rem;
    position: relative;
    transition: background 0.35s ease, border-color 0.35s ease;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
}

.review-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1;
    color: rgba(44, 82, 130, 0.4);
    margin-bottom: -0.5rem;
    user-select: none;
}

.review-card blockquote {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: normal;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.review-footer strong {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.01em;
}

.review-stars {
    display: flex;
    gap: 0.1rem;
}

.review-stars i {
    color: #fbbf24;
    font-size: 0.7rem;
}

/* Google link */
.google-reviews-link {
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    padding-top: 0.5rem;
}

.google-reviews-link:hover {
    color: rgba(255, 255, 255, 0.6);
}

.google-reviews-link i {
    margin-right: 0.4rem;
}

/* Dots hidden on desktop */
.reviews-dots {
    display: none;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.services-content {
    margin-bottom: 3rem;
}

.menu-highlights {
    margin-bottom: 4rem;
}

.menu-highlights h3 {
    font-size: 2rem;
    color: #2c5282;
    text-align: center;
    margin-bottom: 2rem;
}

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

.menu-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.menu-item-content {
    padding: 2rem;
}

.menu-item h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    color: #2c5282;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.price {
    font-weight: 600;
    color: #059669;
}

.menu-item p {
    color: #555;
    line-height: 1.6;
}

.specialties {
    margin-bottom: 4rem;
}

.specialties h3 {
    font-size: 2rem;
    color: #2c5282;
    text-align: center;
    margin-bottom: 2rem;
}

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

.specialty-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.specialty-card i {
    font-size: 2.5rem;
    color: #2c5282;
    margin-bottom: 1rem;
}

.specialty-card h4 {
    font-size: 1.3rem;
    color: #2c5282;
    margin-bottom: 1rem;
}

.specialty-card p {
    color: #666;
    line-height: 1.6;
}

.dining-options h3 {
    font-size: 2rem;
    color: #2c5282;
    text-align: center;
    margin-bottom: 2rem;
}

.facilities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.facility {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.facility i {
    font-size: 1.5rem;
    color: #2c5282;
}

.facility span {
    font-weight: 500;
    color: #333;
}

/* Menu Navigation */
.menu-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.menu-tab {
    background: white;
    border: 2px solid #2c5282;
    color: #2c5282;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.menu-tab:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.menu-tab.active {
    background: #2c5282;
    color: white;
}

/* Menu Sections */
.menu-section {
    animation: fadeIn 0.5s ease-in-out;
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category h3 {
    font-size: 2rem;
    color: #2c5282;
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.menu-category h3 i {
    font-size: 1.8rem;
}

/* Enhanced Menu Item Styles */
.menu-item-content {
    position: relative;
}

.allergens {
    display: block;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.pre-order {
    display: inline-block;
    background: #fbbf24;
    color: #92400e;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Take Away Info */
.takeaway-info {
    margin-bottom: 3rem;
}

.info-box {
    background: #e0f2fe;
    border: 1px solid #0277bd;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.info-box h4 {
    color: #0277bd;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-box p {
    color: #01579b;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.info-box i {
    color: #0277bd;
}

.info-box a {
    color: #0277bd;
    font-weight: 600;
    text-decoration: underline;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-links {
    text-align: center;
    margin-top: 3rem;
}

.menu-links .btn {
    margin: 0 0.5rem;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background-color: #f8fafc;
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 82, 130, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
}

/* ==========================================================
   CONTACT — map-first layout
   ========================================================== */

.contact {
    padding: 0;
    position: relative;
}

.contact-map {
    width: 100%;
    height: 420px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* Info bar */
.contact-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 1.25rem 1.5rem;
    background: #1e293b;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.88rem;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.contact-chip i {
    font-size: 0.8rem;
    color: #60a5fa;
}

.contact-chip a {
    color: #cbd5e1;
    text-decoration: none;
}

.contact-chip a:hover {
    color: #fff;
}

.contact-chip-cta {
    background: rgba(96, 165, 250, 0.15);
    border-color: rgba(96, 165, 250, 0.3);
    color: #93c5fd;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-chip-cta:hover {
    background: rgba(96, 165, 250, 0.25);
    color: #fff;
}

.contact-chip-book {
    background: #fbbf24;
    border-color: #fbbf24;
    color: #1e293b;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.contact-chip-book:hover {
    background: #f59e0b;
    transform: translateY(-1px);
}

.contact-chip-book i {
    color: #1e293b;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.map-overlay p {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: white;
    padding: 3.5rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2rem;
}

/* Left: nav columns side by side */
.footer-nav {
    display: flex;
    gap: 2.5rem;
}

.footer-nav h4,
.footer-contact h4 {
    color: #60a5fa;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-bottom: 0.4rem;
}

.footer-nav a,
.footer-contact a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: #60a5fa;
}

/* Center: brand */
.footer-brand {
    text-align: center;
    justify-self: center;
}

.footer-logo {
    margin-bottom: 0.75rem;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2);
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.88rem;
    line-height: 1.5;
    max-width: 240px;
    margin: 0 auto 0.75rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #334155;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
}

.social-links i {
    font-size: 1.2rem;
}

/* Right: contact */
.footer-contact {
    text-align: right;
}

.footer-contact p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.6rem;
}

.footer-contact i {
    color: #60a5fa;
    margin-right: 0.3rem;
    width: 1rem;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #334155;
    color: #64748b;
    font-size: 0.82rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Gallery Section Tablet */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Contact Section Tablet */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-map {
        height: 350px;
    }
}

@media (max-width: 768px) {
    /* Logo Mobile Styles */
    .nav-logo .logo {
        height: 40px;
    }
    
    .hero-logo-img {
        height: 180px;
    }
    
    .footer-logo-img {
        height: 100px;
    }

    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(30, 41, 59, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .lang-switcher {
        margin-left: auto;
        margin-right: 0.75rem;
    }

    .lang-code {
        display: none;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero Section */
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Quick Info Mobile */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-item {
        padding: 1rem;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    /* Grid Layouts */
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .facilities-list {
        grid-template-columns: 1fr;
    }
    
    /* Reviews → horizontal touch slider */
    .reviews-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
    }
    .reviews-grid::-webkit-scrollbar {
        display: none;
    }
    .review-card {
        flex: 0 0 85vw;
        scroll-snap-align: center;
        margin: 0;
    }

    .reviews-score-number {
        font-size: 2.5rem;
    }

    /* Dot indicators */
    .reviews-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem 0 0.5rem;
    }
    .reviews-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background 0.25s, transform 0.25s;
    }
    .reviews-dot.active {
        background: rgba(255, 255, 255, 0.7);
        transform: scale(1.3);
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    /* Menu Navigation Mobile */
    .menu-navigation {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .menu-tab {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    /* Menu Category Mobile */
    .menu-category h3 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    /* Info Box Mobile */
    .info-box p {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }
    
    /* Reviews Score Mobile */
    .reviews-score {
        gap: 0.75rem;
    }
    
    /* Contact Map Mobile */
    .contact-map {
        height: 300px;
    }
    
    .contact-map iframe {
        height: 100%;
    }
    
    .map-overlay {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 1rem;
        background: rgba(255, 255, 255, 0.98);
    }
    
    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-img {
        height: 200px;
    }

    /* Menu Items */
    .menu-item h4 {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-info-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Contact Map Very Small Screens */
    .contact-map {
        height: 250px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card,
    .specialty-card,
    .review-card,
    .menu-item {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-item i {
        margin-top: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .footer-nav {
        justify-content: center;
    }
    .footer-contact {
        text-align: center;
    }
}

/* ==========================================================
   QUICK MENU — Compact Accordion
   ========================================================== */

.quick-menu {
    max-width: 600px;
    margin: 0 auto;
}

.qm-intro {
    text-align: center;
    margin-bottom: 1.5rem;
}

.qm-intro p {
    font-size: 0.85rem;
    color: #94a3b8;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* Category headers */
.qm-cat-header {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e3a8a;
    padding: 0.75rem 0 0.4rem;
    margin-top: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qm-cat-header i {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Individual items */
.qm-item {
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 8px;
    outline: none;
}

.qm-item:hover,
.qm-item:focus-visible {
    background: #f8fafc;
}

.qm-item.open {
    background: #f8fafc;
}

/* Collapsed row: name ··· price */
.qm-row {
    display: flex;
    align-items: baseline;
    padding: 0.7rem 0.5rem;
    gap: 0.5rem;
    position: relative;
}

.qm-row::after {
    content: '';
    flex: 1;
    border-bottom: 1px dotted #cbd5e1;
    margin: 0 0.25rem;
    position: relative;
    top: -3px;
}

.qm-name {
    font-weight: 500;
    font-size: 0.95rem;
    color: #1e293b;
    white-space: nowrap;
    flex-shrink: 0;
}

.qm-price {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e3a8a;
    white-space: nowrap;
    flex-shrink: 0;
    order: 3;
}

/* Expanded detail card */
.qm-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s;
    opacity: 0;
    padding: 0 0.75rem;
}

.qm-item.open .qm-detail {
    max-height: 200px;
    opacity: 1;
    padding: 0 0.75rem 0.75rem;
}

.qm-detail p {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.5;
    margin: 0 0 0.5rem;
}

/* Tags: preorder & allergens */
.qm-tag {
    display: inline-block;
    font-size: 0.72rem;
    padding: 0.2rem 0.55rem;
    border-radius: 99px;
    margin-right: 0.35rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: lowercase;
}

.qm-allergen {
    background: #fef3c7;
    color: #92400e;
}

.qm-preorder {
    background: #dbeafe;
    color: #1e40af;
}

/* Chevron indicator on rows */
.qm-row::before {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.6rem;
    color: #94a3b8;
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
    order: 4;
}

.qm-item.open .qm-row::before {
    transform: translateY(-50%) rotate(180deg);
    color: #1e3a8a;
}

/* Menu tab with icon */
.menu-tab i {
    margin-right: 0.3rem;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-buttons,
    .menu-links,
    .map-overlay,
    .footer {
        display: none;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    .section-header h2 {
        color: #000 !important;
    }
    
    .contact-map {
        display: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Accessibility */
.btn:focus,
.nav-link:focus,
a:focus {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .hero {
        background: #000;
    }
    
    .btn-primary {
        background-color: #000;
        border-color: #000;
    }
    
    .feature-card,
    .specialty-card,
    .review-card,
    .menu-item {
        border: 2px solid #000;
    }
}
