:root {
    /* Colors */
    --color-primary: #e05d5d;
    --color-primary-dark: #c04545;
    --color-bg: #F9F7F2;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-accent: #8DA399;
    --color-gold: #D4AF37;
    --color-white: #ffffff;

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

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

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

html {
    scroll-behavior: smooth;
    font-size: 18px;
    /* Increased base size */
}

/* Visual Enhancements */
body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-bg);
    background-image: radial-gradient(#e05d5d 0.5px, transparent 0.5px), radial-gradient(#e05d5d 0.5px, var(--color-bg) 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    background-attachment: fixed;
    /* Parallax-like effect */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

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

ul {
    list-style: none;
}

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

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

/* Section Styling */
.section {
    position: relative;
    overflow: hidden;
    /* Contain decorative shapes */
    background-color: rgba(249, 247, 242, 0.95);
    /* Semi-transparent white to show pattern faintly or hide it */
    padding: var(--spacing-xl) 0;
    margin: var(--spacing-md) 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.section:nth-child(even) {
    background-color: #fff;
}

/* Decorative Shapes */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--color-primary);
    position: relative;
    z-index: 1;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 50%;
    bottom: 0;
    left: -10%;
    background-color: rgba(224, 93, 93, 0.1);
    /* Low opacity primary color */
    z-index: -1;
    border-radius: 50% 30% 20% 60%;
    transform: rotate(-2deg);
}

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

.mt-2 {
    margin-top: var(--spacing-md);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
}

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

.btn-primary:hover {
    background-color: var(--color-primary-dark);
}

.btn-secondary {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Header */
.header {
    padding: var(--spacing-sm) 0;
    /* Standard padding */
    position: fixed;
    width: 100%;
    top: 0;
    background-color: rgba(249, 247, 242, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 120px;
    /* Set to 120px */
    width: auto;
    object-fit: contain;
}

.nav-list {
    display: flex;
    gap: var(--spacing-md);
}

.nav-link {
    font-weight: 700;
    font-size: 1.1rem;
    /* Increased size */
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg);
    z-index: 999;
    transform: translateX(100%);
    transition: transform var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mobile-nav-list {
    text-align: center;
}

.mobile-nav-list li {
    margin: var(--spacing-md) 0;
}

.mobile-nav-list a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
}

/* Hamburger Icon Styling */
.mobile-menu-btn .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
}

.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
}

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

.mobile-menu-btn.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #ddd;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    padding-top: 80px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Text Menu Styling Refinement */
.text-menu-container {
    max-width: 900px;
    margin: 0 auto;
}

.menu-category {
    background: #fff;
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.02);
    margin-bottom: var(--spacing-xl);
}

/* Decorative element for menu cards */
.menu-category::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(224, 93, 93, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    border-bottom: none;
    /* Remove old border */
    display: block;
    position: relative;
    transform: none;
    left: auto;
}

.category-title::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-image: url('assets/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0.5rem auto 0;
    opacity: 1;
}

.menu-list {
    list-style: none;
    padding: 0;
}

.menu-item-text {
    margin-bottom: var(--spacing-md);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    padding-bottom: var(--spacing-sm);
    transition: transform 0.2s ease;
}

.menu-item-text:hover {
    transform: translateX(5px);
}

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

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.2rem;
}

.item-name {
    font-family: var(--font-body);
    /* Modern font */
    font-weight: 700;
    font-size: 1.3rem;
    /* Increased size */
    color: #000;
    /* Black color */
}

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

.item-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    /* Increased size */
    color: #555;
    font-style: italic;
}

/* Footer */
.footer {
    background-color: #222;
    color: #888;
    padding: var(--spacing-md) 0;
    text-align: center;
    font-size: 1.1rem;
    /* Increased size */
}

/* Responsive */
@media (max-width: 768px) {
    .nav-list {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .section-title {
        font-size: 2rem;
    }
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-fast);
    aspect-ratio: 1 / 1;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--spacing-lg);
    background: #f0f0f0;
    border-radius: 8px;
    color: var(--color-text-light);
}