/* ---------------------------------- */
/* 1. GLOBAL STYLES & VARIABLES     */
/* ---------------------------------- */
:root {
    --ivory: #FFFFF7;
    --saffron-gold: #C17F59;
    --pistachio-sage: #527B3E;
    --charcoal: #333333;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Source Sans Pro', sans-serif;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 6px 16px rgba(0,0,0,0.12);
}

html {
    scroll-behavior: smooth;
    font-size: 100%; /* 16px */
    scroll-padding-top: 80px; /* Adjust based on final navbar height */
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background-color: var(--ivory);
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

section {
    padding: 5rem 0;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--charcoal);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--saffron-gold);
    margin: 0.75rem auto 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    max-width: 600px;
    margin: -2rem auto 3rem;
    color: var(--charcoal);
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Rounded corners for all images */
}

.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--saffron-gold);
    color: var(--ivory);
    font-size: 1.2rem;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(242, 167, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--saffron-gold);
    border: 2px solid var(--saffron-gold);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* ---------------------------------- */
/* 2. HERO SECTION           */
/* ---------------------------------- */
.hero {
    background: #d2be9f;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--ivory);
    padding:1.5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    position: absolute;
    font-size: 8rem;
    opacity: 0.1;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-heading);
    width: 100%;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

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

.hero-logo {
    width: 250px;
    height: 250px;
    margin: 0 auto 2rem;
    display: block;
    background: #d2be9f;
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: 0 4px 20px #d2be9f;
    transition: transform 0.3s ease;
    object-fit: contain;
    border: 4px solid #d2be9f;
}

.hero-logo:hover {
    transform: scale(1.02);
    border-color: #d2be9f;
}

.hero h1 {
    font-size: 3.5rem;
    color: black;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    line-height: 1.2;
}

.hero-short {
    background: #d2be9f;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--ivory);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.hero-short h1 {
    font-size: 3rem;
    color: black;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* ---------------------------------- */
/* 3. ABOUT SECTION          */
/* ---------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    box-shadow: var(--shadow);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--pistachio-sage);
}

.about-text p {
    margin-bottom: 0;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: none;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.event-gallery-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
}

.event-image-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1rem;
    background: #FAF7F2;
    border-radius: 8px;
}

.event-image-group .gallery-item img {
    height: 200px;
}

/* ---------------------------------- */
/* 5. EVENTS SECTION                  */
/* ---------------------------------- */
#events, #event-gallery {
    padding: 5rem 0;
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.event-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.event-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-date {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--pistachio-sage);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.event-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.event-description {
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* ---------------------------------- */
/* 4. SIGNATURE SWEETS         */
/* ---------------------------------- */
#sweets {
    background-color: #fdfdfa;
}

.sweets-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.sweet-card {
    background: var(--ivory);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sweet-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.sweet-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.sweet-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sweet-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.sweet-card p {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.sweet-card .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--saffron-gold);
    margin-top: auto;
}

/* ---------------------------------- */
/* MENU OF THE WEEK                   */
/* ---------------------------------- */
.weekly-menu {
    background-color: #FAF7F2; /* A warm, inviting off-white */
}

.weekly-menu-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

.weekly-menu-card {
    background: var(--ivory);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.weekly-menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.weekly-menu-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.weekly-menu-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.weekly-menu-tag {
    background: var(--pistachio-sage);
    color: var(--ivory);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.weekly-menu-card-content h3 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    color: var(--charcoal);
}

.weekly-menu-card-content p {
    margin: 0 0 1rem 0;
    flex-grow: 1;
}

.weekly-menu-card .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--saffron-gold);
    margin-top: auto; /* Pushes price to the bottom */
}

.weekly-menu-card.large-card {
    background: transparent;
    box-shadow: none;
}

.weekly-menu-card.large-card:hover {
    transform: none;
    box-shadow: none;
}

.large-card .weekly-menu-card-content {
    padding-left: 0;
    padding-right: 0;
}

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

.weekly-menu-footer p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* ---------------------------------- */
/* 5. CATERING & CLASSES         */
/* ---------------------------------- */
#services {
    background-color: #fdfdfa;
}

.services-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

/* ---------------------------------- */
/* 6. TESTIMONIALS             */
/* ---------------------------------- */
#testimonials {
    background-color: #fdfdfa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: var(--ivory);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--saffron-gold);
}

.testimonial-card p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--charcoal);
    text-align: right;
}

.testimonial-card .author::before {
    content: "— ";
}

/* ---------------------------------- */
/* 7. CONTACT / ORDER          */
/* ---------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    box-sizing: border-box; /* Important for width */
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--saffron-gold);
    box-shadow: 0 0 0 3px hsla(40, 100%, 47%, 0.2);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-info a {
    text-decoration: none;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--saffron-gold);
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info .icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    fill: var(--saffron-gold);
    flex-shrink: 0;
}

.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    margin-right: 1rem;
    display: inline-block;
}

.social-icons .icon {
    width: 32px;
    height: 32px;
    fill: var(--saffron-gold);
    transition: fill 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover .icon {
    fill: var(--saffron-gold);
    transform: scale(1.1);
}

/* ---------------------------------- */
/* 8. NAVBAR                */
/* ---------------------------------- */
.navbar {
    background: rgba(255, 255, 247, 0.85); /* Ivory with transparency */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 0;
    opacity: 0.75;
    transition: top 0.3s, background-color 0.3s;
}

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

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s;
}
.nav-brand:hover {
    color: var(--saffron-gold);
}

.nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

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

.nav-link:not(.btn-primary-nav)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--saffron-gold);
    transition: width 0.3s ease;
}

.nav-link:hover:not(.btn-primary-nav)::after {
    width: 100%;
}

.btn-primary-nav {
    background-color: var(--saffron-gold);
    color: var(--ivory);
    padding: 0.3rem 1.5rem;
    margin-bottom: 0.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(193, 127, 89, 0.3);
}
.btn-primary-nav:hover {
    color: var(--ivory);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 127, 89, 0.4);
}

.nav-toggle {
    display: none; /* Hidden on desktop */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--charcoal);
    position: relative;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--charcoal);
    transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* ---------------------------------- */
/* 9. FOOTER                */
/* ---------------------------------- */
footer {
    background-color: var(--charcoal);
    opacity: 0.8;
    color: var(--ivory);
    text-align: center;
    padding: 0.75rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-content p {
    margin: 0;
}

footer a {
    color: var(--ivory);
    text-decoration: none;
}

footer a:hover {
    color: var(--saffron-gold);
}

/* ---------------------------------- */
/* 10. MEDIA QUERIES (RESPONSIVE)    */
/* ---------------------------------- */

/* Tablets and small desktops */
@media (min-width: 768px) {
    h1 {
        font-size: 4rem;
    }
    .about-grid {
        grid-template-columns: 400px 1fr;
    }
    .sweets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .contact-grid {
        grid-template-columns: 2fr 1fr;
    }
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .event-card {
        grid-template-columns: 200px 1fr;
    }
    .event-image {
        margin-bottom: 0;
    }
    .event-content {
        padding: 1.5rem 2rem;
    }

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

    .weekly-menu-card.large-card {
        grid-column: span 2;
    }

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

/* Large desktops */
@media (min-width: 1024px) {
    .sweets-grid {
        grid-template-columns: repeat(3, 1fr);
    }
     h1 {
        font-size: 4.5rem;
    }
    h2 {
        font-size: 3rem;
    }

    .weekly-menu-card.large-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
    }

    .large-card img {
        height: 100%;
        min-height: 400px;
        border-radius: 8px;
    }

    .large-card .weekly-menu-card-content {
        padding: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item img {
        height: 320px;
    }
}

/* Update responsive styles */
@media (max-width: 768px) {
    .hero::before {
        font-size: 4rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-logo {
        width: 180px;
        height: 180px;
        margin-bottom: 1.5rem;
    }

    /* Mobile Nav Styles */
    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 247, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        display: flex;
        justify-content: center;
        align-items: center;
    }

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

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

    .nav-link {
        font-size: 1.5rem;
    }

    .btn-primary-nav {
        font-size: 1.2rem;
        padding: 0.8rem 2rem;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-open .hamburger {
        background-color: transparent; /* Hide middle line */
    }

    .nav-open .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-open .hamburger::after {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .notification {
        left: 20px;
        right: 20px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .notification-show {
        transform: translateY(0);
    }

    .gallery-item img {
        height: 250px;
    }
}

/* ---------------------------------- */
/* 7. LIGHTBOX STYLES                 */
/* ---------------------------------- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 40%;
    max-width: 400px;
    max-height: 600px;
    height: auto;
    object-fit: contain;

    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Add cursor pointer to gallery images */
.gallery-item img {
    cursor: pointer;
}

/* ---------------------------------- */
/* 8. BOOKING MODAL STYLES            */
/* ---------------------------------- */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 2.5rem;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: slide-down 0.5s ease-out;
    box-sizing: border-box;
}

@keyframes slide-down {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 25px;
    cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#bookingForm label {
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--charcoal);
}

#bookingForm input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-family: var(--font-body);
    font-size: 1rem;
    box-sizing: border-box;
}

#bookingForm input:focus {
    outline: none;
    border-color: var(--saffron-gold);
    box-shadow: 0 0 0 2px rgba(193, 127, 89, 0.2);
}

#bookingForm button {
    width: 100%;
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

#booking-confirmation {
    text-align: center;
    padding: 2rem 1rem;
}

#booking-confirmation h4 {
    font-size: 1.8rem;
    color: var(--pistachio-sage);
    margin-bottom: 1rem;
}

#booking-confirmation p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

#modal-event-title {
    margin-bottom: 2rem;
    text-align: center;
    padding-right: 2rem;
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 1.5rem;
    }
    
    #modal-event-title {
        font-size: 1.4rem;
        padding-right: 1.5rem;
    }
}

/* ---------------------------------- */
/* 4. SERVICES (CATERING/CLASSES)     */
/* ---------------------------------- */
@media (min-width: 768px) {
    .weekly-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .weekly-menu-card.large-card {
        grid-column: span 2;
    }
}

@media (min-width: 992px) {
    .weekly-menu-card.large-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
    }

    .large-card img {
        height: 100%;
        min-height: 400px;
        border-radius: 8px;
    }

    .large-card .weekly-menu-card-content {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .sweets-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    #modal-event-title {
        font-size: 1.5rem;
    }
}

/* ---------------------------------- */
/* NOTIFICATION SYSTEM                */
/* ---------------------------------- */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    background: var(--ivory);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateX(450px);
    transition: transform 0.3s ease;
}

.notification-show {
    transform: translateX(0);
}

.notification-content {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-message {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--charcoal);
    opacity: 0.6;
    transition: opacity 0.2s ease;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    opacity: 1;
}

.notification-success {
    border-left: 4px solid var(--pistachio-sage);
}

.notification-success .notification-message {
    color: var(--pistachio-sage);
}

.notification-error {
    border-left: 4px solid #e74c3c;
}

.notification-error .notification-message {
    color: #e74c3c;
}

/* ---------------------------------- */
/* ENHANCED HOVER EFFECTS             */
/* ---------------------------------- */
.gallery-item img {
    cursor: pointer;
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link.active {
    color: var(--saffron-gold);
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .notification {
        left: 20px;
        right: 20px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .notification-show {
        transform: translateY(0);
    }
} 