:root {
    /* --- Premium Color Palette --- */
    --primary-color: #D35400;
    /* Burnt Orange / Copper for a rich, savory feel */
    --primary-light: #E59866;
    --primary-dark: #A04000;

    --accent-gold: #F1C40F;
    /* Subtle gold for increasing perceived value */
    --accent-cream: #FDF2E9;
    /* Warm off-white for text/highlights */

    --background-dark: #050505;
    /* Deep rich black */
    --background-card: rgba(255, 255, 255, 0.03);
    /* Glass base */

    --text-primary: #FDF2E9;
    --text-secondary: #B2BABB;
    --text-muted: #7F8C8D;

    /* --- Gradients --- */
    --gradient-primary: linear-gradient(135deg, #D35400 0%, #BA4A00 100%);
    --gradient-dark: linear-gradient(to bottom, #050505, #121212);
    --gradient-glass: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);

    /* --- Typography --- */
    --font-heading: 'DM Serif Display', serif;
    --font-body: 'Inter', sans-serif;

    /* --- Spacing --- */
    --spacing-xs: 0.5rem;
    /* 8px */
    --spacing-sm: 1.5rem;
    /* 24px - Increased for airier feel */
    --spacing-md: 3rem;
    /* 48px */
    --spacing-lg: 6rem;
    /* 96px */
    --spacing-xl: 10rem;
    /* 160px */

    /* --- UI Effects --- */
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(211, 84, 0, 0.3);
    --blur-glass: blur(12px);

    /* --- Transitions --- */
    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    /* Custom smooth ease */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--primary-color);
    color: white;
}

/* --- Loader --- */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.pizza-loader {
    width: 70px;
    height: 70px;
    position: relative;
    animation: spin 2.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.slice {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--primary-color);
    filter: drop-shadow(0 0 10px rgba(211, 84, 0, 0.5));
}

.slice:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -0.1s;
}

.slice:nth-child(2) {
    transform: rotate(90deg);
    animation-delay: -0.2s;
}

.slice:nth-child(3) {
    transform: rotate(180deg);
    animation-delay: -0.3s;
}

.slice:nth-child(4) {
    transform: rotate(270deg);
    animation-delay: -0.4s;
}

.loader-text {
    margin-top: 30px;
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: fadeInPulse 2s ease-in-out infinite;
}

body.loaded #loader {
    opacity: 0;
    visibility: hidden;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
}

p {
    color: var(--text-secondary);
    font-weight: 300;
    font-size: 1.05rem;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* --- Buttons --- */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 16px 36px;
    border-radius: 2px;
    /* Very slight rounding for elegance */
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: var(--shadow-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #BA4A00 0%, #D35400 100%);
    z-index: -1;
    transition: opacity var(--transition-smooth);
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(211, 84, 0, 0.5);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-smooth);
    background: transparent;
    /* Start transparent */
}

header.scrolled {
    padding: 15px 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.logo i {
    color: var(--primary-color);
    font-size: 1.8rem;
    transform: rotate(-10deg);
}

nav ul {
    display: flex;
    gap: 3rem;
}

nav a {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.8;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width var(--transition-smooth);
}

nav a:hover {
    opacity: 1;
    color: var(--primary-color);
}

nav a:hover::after {
    width: 100%;
}

nav a.btn-primary {
    opacity: 1;
    padding: 10px 25px;
}

nav a.btn-primary::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/hero-bg-new.jpg') no-repeat center center/cover;
    transform: scale(1.1);
    animation: breathingZoom 25s infinite alternate ease-in-out;
}

@keyframes breathingZoom {
    0% {
        transform: scale(1.1);
    }

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(5, 5, 5, 0.3) 0%, rgba(5, 5, 5, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 var(--spacing-sm);
}

.eyebrow {
    display: inline-block;
    color: var(--primary-light);
    /* Brighter for better contrast */
    font-size: 1rem;
    /* Slightly larger */
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    /* Stronger contrast against bg */
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
}

.hero h1 {
    font-size: clamp(4rem, 10vw, 7rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeUp 1s ease 0.7s forwards;
}

.hero p {
    font-size: 1.4rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1s ease 1.1s forwards;
}

/* --- Animations --- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

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

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

@keyframes fadeInPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* --- Menu Section --- */
.menu-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: #050505;
    /* Fallback */
    background: radial-gradient(circle at 50% 10%, #1a1a1a 0%, #050505 60%);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Filter */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--spacing-lg);
    position: sticky;
    top: 90px;
    z-index: 90;
    padding: 1.5rem 0;
    /* Glass effect specifically for filter bar */
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    /* Fade out edges mask for horizontal scroll suggestion if needed */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.cat-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.cat-btn:hover,
.cat-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(211, 84, 0, 0.4);
    transform: translateY(-2px);
}

/* Menu Layout */
.menu-category-block {
    margin-bottom: var(--spacing-xl);
}

.category-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    padding-left: 20px;
    border-left: 4px solid var(--primary-color);
    color: white;
}

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

/* Card - Glassmorphism */
.menu-item {
    background: var(--background-card);
    border: var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.menu-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glass);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(211, 84, 0, 0.4);
}

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

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

.item-header h3 {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.item-price {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.item-desc {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* --- Gallery Section --- */
.gallery-section {
    padding: var(--spacing-xl) 0;
    background: #050505;
}

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

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(211, 84, 0, 0.2);
}

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

/* --- About Section & Visuals --- */
.about-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: #080808;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

/* Image Collage */
.about-images {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: 600px;
    position: relative;
}

.img-box {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.img-box:hover img {
    transform: scale(1.1);
}

.main-img {
    grid-column: 1 / 9;
    grid-row: 2 / 12;
    z-index: 1;
}

.sub-img-1 {
    grid-column: 8 / 13;
    grid-row: 1 / 6;
    z-index: 2;
    border: 4px solid #080808;
}

.sub-img-2 {
    grid-column: 8 / 13;
    grid-row: 7 / 12;
    z-index: 2;
    border: 4px solid #080808;
}

/* Text Content */
.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 4rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1;
}

.about-text p {
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(211, 84, 0, 0.3);
    transform: translateX(10px);
}

.feature i {
    font-size: 1.8rem;
    color: var(--primary-color);
    background: rgba(211, 84, 0, 0.1);
    padding: 12px;
    border-radius: 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: white;
}

.feature p {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.4;
    color: var(--text-muted);
}

/* Location Emphasis */
.location-section {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.map-card-container {
    position: relative;
    max-width: 600px;
    width: 100%;
}

.map-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 4rem 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-card-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: var(--primary-color);
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
    border-radius: 50%;
}

.map-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.map-card h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.map-card .address {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* --- Footer --- */
footer {
    background: #020202;
    padding: var(--spacing-xl) 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
}

.footer-col ul li {
    margin-bottom: 10px;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-col ul li:hover {
    color: var(--primary-color);
    cursor: pointer;
}

.footer-col p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    color: #444;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-bottom-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-bottom-content .separator {
    margin: 0 10px;
    color: var(--primary-color);
    opacity: 0.5;
}

.privacy-link {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: var(--primary-color);
}

.privacy-assurance {
    font-size: 0.8rem;
    opacity: 0.6;
    letter-spacing: 0.5px;
}

.credits {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.2);
    /* Very subtle */
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    font-weight: 300;
}

.credits:hover {
    color: rgba(255, 255, 255, 0.6);
}

.credits i {
    color: #e74c3c;
    /* Heart color */
    font-size: 0.8rem;
    animation: pulse 2s infinite;
}

.credits a {
    color: inherit;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

.credits a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.credits a:hover::after {
    width: 100%;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.2);
    }
}

/* --- Mobile Responsiveness --- */

/* Large Mobile / Tablet (max-width: 900px) */
@media (max-width: 900px) {
    .header-container nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #080808;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1),
            opacity 0.4s ease,
            visibility 0.4s;
        z-index: 2000;
    }

    .header-container nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    nav ul {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    nav a {
        font-size: 2rem;
        font-family: var(--font-heading);
    }

    .mobile-menu-btn {
        display: block;
        z-index: 2100;
        position: relative;
    }

    /* Hero Section - Centered */
    .hero {
        min-height: 700px;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero h1 {
        font-size: 3.5rem;
        text-align: center;
    }

    .hero p {
        text-align: center;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 320px;
    }

    /* Section Headers - Centered */
    .section-header {
        text-align: center;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    /* Menu Category Filter - Enhanced for Mobile */
    .category-filter {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        overflow-x: auto;
        padding: 1.5rem var(--spacing-sm);
        mask-image: none;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .category-filter::-webkit-scrollbar {
        display: none;
    }

    .cat-btn {
        flex-shrink: 0;
        min-width: 140px;
        padding: 14px 28px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 50px;
        scroll-snap-align: center;
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .cat-btn:active {
        transform: scale(0.95);
    }

    .cat-btn.active {
        background: var(--gradient-primary);
        border-color: var(--primary-color);
        box-shadow: 0 6px 24px rgba(211, 84, 0, 0.5);
        transform: translateY(-2px) scale(1.05);
    }

    /* Menu Items - Centered */
    .menu-grid-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
    }

    .menu-item {
        width: 100%;
        max-width: 500px;
        padding: 2rem;
    }

    .category-title {
        font-size: 2.5rem;
        text-align: center;
        padding-left: 0;
        border-left: none;
        border-bottom: 3px solid var(--primary-color);
        padding-bottom: 1rem;
    }

    /* Gallery - Centered */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
    }

    .gallery-item {
        width: 100%;
        max-width: 500px;
    }

    /* About Section - Centered */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-images {
        height: 400px;
    }

    .about-content {
        align-items: center;
    }

    .about-text h2 {
        font-size: 3rem;
        text-align: center;
    }

    .about-text p {
        text-align: center;
    }

    .features {
        width: 100%;
        max-width: 500px;
    }

    /* Location Card - Centered */
    .location-section {
        justify-content: center;
    }

    .map-card {
        padding: 3rem 2rem;
        text-align: center;
    }

    .map-card h3 {
        font-size: 2rem;
    }

    /* Footer - Centered */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Medium Mobile (max-width: 768px) */
@media (max-width: 768px) {

    /* Enhanced Typography */
    .hero h1 {
        font-size: 3rem;
        line-height: 1.1;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .eyebrow {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    /* Menu Filter - More Compact */
    .category-filter {
        gap: 0.5rem;
        padding: 1.25rem var(--spacing-sm);
    }

    .cat-btn {
        min-width: 120px;
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    /* Menu Items */
    .category-title {
        font-size: 2rem;
    }

    .item-header h3 {
        font-size: 1.2rem;
    }

    .item-price {
        font-size: 1.1rem;
    }

    .item-desc {
        font-size: 0.95rem;
    }

    /* About Section */
    .about-text h2 {
        font-size: 2.5rem;
    }

    .about-text p {
        font-size: 1.05rem;
    }

    .feature h3 {
        font-size: 1.1rem;
    }

    .feature p {
        font-size: 0.9rem;
    }

    /* Map Card */
    .map-card h3 {
        font-size: 1.8rem;
    }

    .map-card .address {
        font-size: 1.1rem;
    }

    /* Footer */
    .footer-col h3 {
        font-size: 2rem;
    }

    .footer-col h4 {
        font-size: 1.1rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {

    /* Container Padding */
    .container {
        width: 95%;
        padding: 0 1rem;
    }

    /* Hero Section */
    .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .eyebrow {
        font-size: 0.8rem;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }

    .hero-btns {
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 0.9rem;
        max-width: 280px;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Menu Category Filter - Optimized for Small Screens */
    .category-filter {
        gap: 0.5rem;
        padding: 1rem;
        justify-content: flex-start;
    }

    .cat-btn {
        min-width: 110px;
        padding: 10px 20px;
        font-size: 0.85rem;
        font-weight: 600;
    }

    /* Menu Items */
    .menu-category-block {
        margin-bottom: 4rem;
    }

    .category-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .menu-item {
        padding: 1.5rem;
    }

    .item-header h3 {
        font-size: 1.1rem;
    }

    .item-price {
        font-size: 1rem;
    }

    .item-desc {
        font-size: 0.9rem;
    }

    /* Gallery */
    .gallery-item {
        height: 250px;
    }

    /* About Section */
    .about-section {
        padding: 4rem 0;
    }

    .about-images {
        height: 350px;
    }

    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .feature {
        padding: 1.25rem;
        gap: 1rem;
    }

    .feature i {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
    }

    .feature h3 {
        font-size: 1rem;
    }

    .feature p {
        font-size: 0.85rem;
    }

    /* Map Card */
    .map-card {
        padding: 2.5rem 1.5rem;
    }

    .map-card i {
        font-size: 2rem;
    }

    .map-card h3 {
        font-size: 1.5rem;
    }

    .map-card .address {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Footer */
    .footer-content {
        gap: 2.5rem;
    }

    .footer-col h3 {
        font-size: 1.75rem;
    }

    .footer-col h4 {
        font-size: 1rem;
    }

    .footer-col p {
        font-size: 0.95rem;
    }

    .footer-bottom {
        gap: 1rem;
    }

    .footer-bottom-content p {
        font-size: 0.85rem;
    }

    .credits {
        font-size: 0.75rem;
    }
}

/* --- Utility Animations for Scroll --- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-animate].in-view {
    opacity: 1;
    transform: translateY(0);
}

/* --- Privacy Page --- */
.privacy-page {
    padding-top: 140px;
    padding-bottom: 80px;
    background: var(--background-dark);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.privacy-bg-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(211, 84, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.privacy-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.privacy-header h1 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(211, 84, 0, 0.3);
}

.intro-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: white;
    font-weight: 300;
    line-height: 1.6;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.privacy-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
}

.privacy-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(211, 84, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.privacy-card h2 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.privacy-card h2 i {
    color: var(--primary-color);
    font-size: 1.4rem;
    background: rgba(211, 84, 0, 0.1);
    padding: 10px;
    border-radius: 10px;
}

.privacy-card p,
.privacy-card li {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.privacy-card ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.privacy-card li {
    margin-bottom: 0.5rem;
}

.security-badge {
    margin-top: 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.15) 0%, rgba(5, 5, 5, 0.8) 100%);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(211, 84, 0, 0.3);
    box-shadow: 0 0 40px rgba(211, 84, 0, 0.1);
}

.security-badge i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(211, 84, 0, 0.6));
}

.security-badge p {
    color: white;
    font-size: 1.3rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .privacy-header h1 {
        font-size: 2.8rem;
    }

    .privacy-card {
        padding: 1.5rem;
    }
}