/* Reset & Global */
:root {
    --primary-color: #2c3e50;
    --accent-color: #e53935;
    --text-color: #333;
    --bg-color: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
    --container-width: 1000px;
    --spacing-section: 4rem;
    --dots-color: #ccc;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #111;
    margin-bottom: 0.5em;
    font-weight: 700;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 400px;
    /* Reduced from 60vh based on typical menu header strips */
    background-color: #eee;
    background-image: url('https://cdn.enterpriseoutsourcing.com/DAIRYBELLE/Menu/assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-position-y: 30%;
    /* Better framing for groups */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    /* Lighter overlay */
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    padding: 0 20px;
}

/* Navigation Bar */
.main-nav-bar {
    background-color: #000;
    width: 100%;
    padding: 10px 0;
    font-family: var(--font-heading);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    /* Adjust based on logo size preferences */
}

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

.nav-logo {
    height: 80px;
    /* Bigger logo overhanging if needed, or contained */
    /* If the user wants the logo to standout/overflow, we might need absolute positioning or higher z-index. 
       Based on the chop image, it looks contained in the black bar but maybe slightly larger. 
       Let's start contained. */
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-style: italic;
    /* Matching the 'Home' font style in the image */
    letter-spacing: 1px;
}

.nav-link:hover {
    text-decoration: underline;
}

/* Main Content */
.menu-container {
    max-width: 900px;
    /* Slightly tighter width for readability */
    margin: 0 auto;
    padding: 60px 20px;
    background: #fff;
    position: relative;
    z-index: 5;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 0px;
    font-weight: 600;
    /* Playfair bold is nice but regular is also elegant */
    letter-spacing: -0.5px;
    color: #222;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    font-style: italic;
    color: #666;
    margin-bottom: 3rem;
    font-family: var(--font-heading);
}

.menu-section {
    margin-bottom: 5rem;
}

/* Grid Layouts */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.reverse-layout .image-col {
    order: 2;
}

.reverse-layout .items-col {
    order: 1;
}

/* Images */
.image-col {
    display: flex;
    justify-content: center;
}

.food-image {
    width: 100%;
    max-width: 100%;
    height: 350px;
    background-color: #f0f0f0;
    border-radius: 4px;
    /* Minimal radius */
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.bakery-image {
    background-image: url('https://cdn.enterpriseoutsourcing.com/DAIRYBELLE/Menu/assets/bakery.jpg');
}

.toastie-image {
    background-image: url('https://cdn.enterpriseoutsourcing.com/DAIRYBELLE/Menu/assets/toastie.jpg');
}

.pizza-hero {
    background-image: url('https://cdn.enterpriseoutsourcing.com/DAIRYBELLE/Menu/assets/pizza.jpg');
    width: 100%;
    max-width: 100%;
    height: 400px;
    margin-top: 20px;
    box-shadow: none;
    border-radius: 8px;
}

/* Menu Lists */
.menu-list {
    list-style: none;
    padding: 0;
    width: 100%;
}

.menu-item {
    display: flex;
    align-items: flex-end;
    /* Align dots to baseline */
    margin-bottom: 14px;
    font-size: 1.05rem;
}

.menu-item .name {
    font-weight: 500;
    color: #222;
    white-space: nowrap;
    padding-right: 5px;
}

.menu-item .dots {
    flex: 1;
    border-bottom: 2px dotted var(--dots-color);
    margin-bottom: 5px;
    /* Adjust based on baseline */
    opacity: 0.6;
}

.menu-item .price {
    font-weight: 700;
    color: #000;
    /* Price often black in classic menus */
    padding-left: 5px;
    min-width: 50px;
    /* details */
    text-align: right;
}

/* Healthy Grid */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    row-gap: 50px;
}

.menu-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.small-card {
    flex-direction: row;
    align-items: center;
}

.card-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #eee;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.healthy-1 {
    background-image: url('https://cdn.enterpriseoutsourcing.com/DAIRYBELLE/Menu/assets/healthy1.jpg');
}

.pasta-1 {
    background-image: url('https://cdn.enterpriseoutsourcing.com/DAIRYBELLE/Menu/assets/pasta1.jpg');
    border-radius: 12px;
    width: 110px;
    height: 90px;
}

.card-details h3 {
    font-size: 1.25rem;
    margin: 0 0 6px 0;
    color: #222;
    font-weight: 600;
}

.card-details p {
    font-size: 0.95rem;
    color: #555;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.card-details .price {
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-top: 5px;
}

/* Salads (List with centered layout if grid doesn't fit, but list-with-images works) */
.list-with-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 700px;
    margin: 0 auto;
}

.list-item-row {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

.list-item-row:last-child {
    border-bottom: none;
}

.thumb-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #eee;
    margin-right: 25px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.salad-1 {
    background-image: url('https://cdn.enterpriseoutsourcing.com/DAIRYBELLE/Menu/assets/salad1.jpg');
}

.row-details {
    flex: 1;
}

.row-details h3 {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    margin: 0 0 4px 0;
}

.row-details p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.row-price {
    font-weight: 700;
    color: #000;
    margin-left: 20px;
    font-size: 1.1rem;
}

/* Grill Section */
.split-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.feature-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    /* text-align: center; Remove to left align text? Menus often center features. */
}

.feature-image {
    width: 100%;
    height: 220px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}

.burger-img {
    background-image: url('https://cdn.enterpriseoutsourcing.com/DAIRYBELLE/Menu/assets/burger.jpg');
}

.steak-img {
    background-image: url('https://cdn.enterpriseoutsourcing.com/DAIRYBELLE/Menu/assets/steak.jpg');
}

.feature-text {
    padding: 25px;
    text-align: center;
}

.feature-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.single-col-list {
    max-width: 700px;
    margin: 0 auto;
}

/* Pizza Grid */
.pizza-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 600px;
    /* Narrower for classic list */
    margin: 0 auto 50px;
    gap: 20px;
}

.pizza-grid .list-item-row {
    padding-bottom: 5px;
    border-bottom: none;
    /* Clean look */
    align-items: flex-end;
}

.pizza-name {
    font-weight: 600;
    font-size: 1.1rem;
    padding-right: 10px;
}

.pizza-grid .dots {
    flex: 1;
    border-bottom: 2px dotted #ddd;
    margin-bottom: 6px;
}

.pizza-grid .price {
    font-weight: 700;
    padding-left: 10px;
}

.pizza-footer-image {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* Footer */
.main-footer {
    background-color: #111;
    color: #888;
    padding: 80px 20px;
    text-align: center;
    font-size: 0.9rem;
}

.logo-img {
    height: 50px;
    margin-bottom: 25px;
    opacity: 0.8;
}

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

    .content-grid,
    .two-col-grid,
    .split-feature {
        grid-template-columns: 1fr;
    }

    .reverse-layout .items-col {
        order: 2;
    }

    .reverse-layout .image-col {
        order: 1;
    }

    .menu-container {
        padding: 40px 15px;
    }

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

/* Category Navigation */
.category-nav {
    padding: 2rem 1rem;
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}

.category-nav h3 {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

/* Ensure the last two items (Pasta & Pizza) span correctly or use a separate row if needed */
.category-grid.wide-items {
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
}

.cat-btn {
    display: block;
    border: 1px solid #333;
    padding: 12px;
    text-decoration: none;
    color: #000;
    font-family: var(--font-heading);
    font-weight: 600;
    /* Matching reference which looks semi-bold */
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    background: #fff;
    white-space: nowrap;
    /* Prevent wrapping like 'Fresh Salads' if tight */
}

.cat-btn:hover {
    background: #000;
    color: #fff;
}

.download-link {
    display: inline-block;
    margin: 3rem 0 2rem;
    color: #2e7d32;
    /* Greenish */
    text-decoration: underline;
    font-weight: 600;
    font-size: 0.95rem;
}

.uber-section {
    margin-top: 1rem;
    margin-bottom: 5rem;
    /* Space before first menu section */
}

.uber-section p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    /* "Get Your Favourite..." */
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #444;
    font-style: italic;
}

.uber-btn {
    display: inline-flex;
    align-items: center;
    background-color: #06C167;
    /* Uber Eats green */
    color: #000;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.uber-btn .uber-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
    text-align: left;
    margin-left: 8px;
    /* If icon added later */
}

.uber-btn .small {
    font-size: 0.75rem;
    font-weight: 400;
    display: block;
}

.uber-btn .large {
    font-size: 1.2rem;
    font-weight: 800;
    display: block;
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-grid.wide-items {
        grid-template-columns: 1fr;
    }
}

/* Subsection titles found in lists */
.item-category {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    margin-bottom: 15px;
    color: #222;
    text-align: left;
}

/* Breakfast specific styles */
.dietary-legend {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #444;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
}

.icon-vegan,
.icon-veg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-vegan {
    background-image: url('https://cdn.enterpriseoutsourcing.com/DAIRYBELLE/Menu/assets/icon-vegan.svg');
}

.icon-veg {
    background-image: url('https://cdn.enterpriseoutsourcing.com/DAIRYBELLE/Menu/assets/icon-veg.svg');
}

.multi-price-list {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 5px;
    font-size: 0.9rem;
    color: #333;
    margin-top: 5px;
}

/* Bento Layout */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    /* Flush layout often looks good for bento, or use small gap */
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
}

.bento-cell {
    background: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.bento-img-1 {
    background-image: url('https://cdn.enterpriseoutsourcing.com/DAIRYBELLE/Menu/assets/healthy1.jpg');
}

.bento-img-2 {
    background-image: url('https://cdn.enterpriseoutsourcing.com/DAIRYBELLE/Menu/assets/hero-bg.jpg');
}

/* Complex Menu Item (Name line + Description line) */
.menu-item-complex {
    margin-bottom: 20px;
}

.menu-item-complex .top-line {
    display: flex;
    align-items: flex-end;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.menu-item-complex .name {
    font-weight: 600;
    color: #222;
    white-space: nowrap;
    padding-right: 5px;
}

.menu-item-complex .dots {
    flex: 1;
    border-bottom: 2px dotted var(--dots-color);
    margin-bottom: 5px;
    opacity: 0.6;
}

.menu-item-complex .price {
    font-weight: 700;
    padding-left: 5px;
}

.menu-item-complex .description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    padding-right: 40px;
    /* Improve readability */
}

/* Update responsive for bento */
@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-image {
        min-height: 250px;
    }

    .bento-cell {
        padding: 20px;
    }
}

.salad-side-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    /* Make it tall like the screenshot */
    background-image: url('https://cdn.enterpriseoutsourcing.com/DAIRYBELLE/Menu/assets/salad1.jpg');
    /* Using existing asset */
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.grill-feature-image {
    width: 100%;
    height: 300px;
    background-image: url('https://cdn.enterpriseoutsourcing.com/DAIRYBELLE/Menu/assets/steak.jpg');
    /* Reuse steak asset */
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

.seafood-feature-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background-image: url('https://cdn.enterpriseoutsourcing.com/DAIRYBELLE/Menu/assets/pasta1.jpg');
    /* Reuse asset for now, user screenshot shows seafood platter */
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

.breakfast-footer-image {
    grid-column: 1 / -1;
    margin-top: 40px;
    width: 100%;
}

.footer-divider {
    width: 100%;
    height: 2px;
    background-color: #000;
    margin: 60px 0;
    opacity: 0.1;
}

.hero-collage {
    width: 100%;
    height: 350px;
    background-image: url('https://cdn.enterpriseoutsourcing.com/DAIRYBELLE/Menu/assets/breakfastbanner.jpg');
    background-size: cover;
    background-position: center;
    /* Create a diagonal cut effect similar to the reference if possible, or just placement */
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
}