/* Additional Custom Styles for Main Template */

/* Fix logo visibility and size */
.header-logo img,
.s-footer__logo img {
    max-width: 160px;
    height: auto;
    object-fit: contain;
}

/* Fix navbar contact button styling */
.header-contact .btn {
    background-color: var(--color-bg-accent);
    color: var(--color-1-950);
    border: 1px solid var(--color-bg-accent-dark);
    margin: 0;
}

.header-contact .btn:hover {
    background-color: var(--color-bg-accent-dark);
    color: var(--color-1-950);
    transform: translateY(-2px);
}

/* Make "Our Story" section header sticky */
/* Make "Our Story" section header sticky */
.s-about__content-start {
    position: sticky;
    top: 120px;
    align-self: flex-start !important;
    height: fit-content;
    z-index: 20;
}

/* Ensure section header stays visible when sticky on desktop */
@media screen and (min-width: 1001px) {
    .s-about__content-start {
        position: sticky;
        top: 120px;
        align-self: flex-start !important;
    }
    
    /* CRITICAL: Parent must not stretch children, otherwise sticky child is as tall as parent and won't move */
    .s-about__content {
        align-items: flex-start !important; 
    }
    
    /* Limit text width on wide screens so it wraps more, creating height for sticky effect */
    .s-about__content-end {
        max-width: 600px;
    }
    
    /* Make the image smaller so left column is shorter than right column */
    .s-about .about-pic-primary {
        max-width: 380px;
    }
}

@media screen and (max-width: 1000px) {
    .s-about__content-start {
        position: relative;
        top: 0;
        z-index: 1;
    }
}

/* Hover animation for social icons in hero section */
.intro-block-content__social li a {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
}

.intro-block-content__social li a:hover {
    transform: translateY(-5px) scale(1.1);
}

.intro-block-content__social li a img {
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
    filter: brightness(1);
}

.intro-block-content__social li a:hover img {
    filter: brightness(1.2) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Hover animation for social icons in footer */
.s-footer__social li a {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.s-footer__social li a:hover {
    transform: translateY(-5px) scale(1.1);
}

.s-footer__social li a img {
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    filter: brightness(1);
}

.s-footer__social li a:hover img {
    filter: brightness(1.2) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Minimal and elegant hover animation for navbar menu items */
.header-nav__links a {
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.header-nav__links a:hover,
.header-nav__links a:focus {
    color: var(--color-bg-accent);
}

.header-nav__links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-bg-accent);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav__links a:hover::after,
.header-nav__links a:focus::after {
    width: 100%;
}

.header-nav__links .current a {
    color: var(--color-bg-accent);
}

.header-nav__links .current a::after {
    width: 100%;
    background-color: var(--color-bg-accent);
}

/* Force visibility of header and hero section without preloader */
.ss-home .s-header__content,
.ss-home .intro-header__overline,
.ss-home .intro-header__big-type,
.ss-home .intro-pic-primary,
.ss-home .intro-block-content__pic,
.ss-home .intro-block-content__text,
.ss-home .intro-block-content__social,
.ss-home .intro-scroll {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}


/* ===================================================================
 * MENU SECTION STYLES
 * ================================================================ */
.s-menu {
    padding-top: var(--vspace-5);
    padding-bottom: var(--vspace-5);
    background-color: var(--color-bg);
}

.s-menu__header {
    margin-bottom: var(--vspace-3);
}

.s-menu__header .lead {
    text-align: center;
    max-width: 600px;
    margin: var(--vspace-1) auto 0;
    color: var(--color-text-light);
}

.menu-category {
    margin-bottom: var(--vspace-3);
}

.menu-category__title {
    font-size: var(--text-xxl);
    font-weight: 600;
    color: var(--color-bg-accent);
    margin-bottom: var(--vspace-1_5);
    padding-bottom: var(--vspace-0_5);
    border-bottom: 2px solid var(--color-border);
}

.menu-items {
    margin-top: var(--vspace-1);
}

.menu-item {
    margin-bottom: var(--vspace-1);
}

.menu-item__card {
    background: var(--color-bg-neutral);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--vspace-1_25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--color-bg-accent);
}

.menu-item__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: var(--vspace-0_5);
}

.menu-item__name {
    font-size: var(--text-lg);
    font-weight: 600;
    margin: 0;
    color: var(--color-text);
}

.menu-item__price {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-bg-accent);
    white-space: nowrap;
    margin-left: var(--vspace-0_5);
}

.menu-item__description {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.6;
}


/* ===================================================================
 * RESERVATIONS SECTION STYLES
 * ================================================================ */
.s-reservations {
    padding-top: var(--vspace-5);
    padding-bottom: var(--vspace-5);
    background-color: var(--color-bg-neutral);
}

.s-reservations__header {
    margin-bottom: var(--vspace-3);
}

.s-reservations__header .lead {
    text-align: center;
    max-width: 700px;
    margin: var(--vspace-1) auto 0;
    color: var(--color-text-light);
}

.reservation-form-wrap {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--vspace-2);
}

.reservation-form .form-field {
    margin-bottom: var(--vspace-1_25);
}

.reservation-form label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--vspace-0_375);
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    width: 100%;
    padding: var(--vspace-0_75);
    font-size: var(--text-base);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background-color: var(--color-bg);
    color: var(--color-text);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    outline: none;
    border-color: var(--color-bg-accent);
    box-shadow: 0 0 0 3px rgba(var(--color-1-500-rgb), 0.1);
}

.reservation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--vspace-1);
    margin-bottom: var(--vspace-1_25);
}

.reservation-form .btn {
    width: 100%;
    margin-top: var(--vspace-0_5);
}

.reservation-info {
    padding: var(--vspace-2);
}

.reservation-info h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--vspace-1_5);
}

.reservation-info__list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--vspace-2) 0;
}

.reservation-info__list li {
    display: flex;
    align-items: flex-start;
    gap: var(--vspace-0_75);
    margin-bottom: var(--vspace-1);
    padding-left: 0;
}

.reservation-info__list li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--color-bg-accent);
    margin-top: 2px;
}

.reservation-contact {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--vspace-1_5);
}

.reservation-contact h4 {
    font-size: var(--text-md);
    font-weight: 600;
    margin-bottom: var(--vspace-0_75);
}

.reservation-contact p {
    font-size: var(--text-sm);
    margin: 0;
}

.reservation-contact a {
    color: var(--color-bg-accent);
    text-decoration: none;
    font-weight: 600;
}

.reservation-contact a:hover {
    text-decoration: underline;
}


/* ===================================================================
 * HOURS & LOCATION SECTION STYLES
 * ================================================================ */
.s-hours {
    padding-top: var(--vspace-5);
    padding-bottom: var(--vspace-5);
    background-color: var(--color-bg);
}

.hours-block,
.location-block {
    padding: var(--vspace-2);
}

.hours-block__title,
.location-block__title {
    font-size: var(--text-xxl);
    font-weight: 600;
    color: var(--color-bg-accent);
    margin-bottom: var(--vspace-1_5);
}

.hours-list {
    background: var(--color-bg-neutral);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--vspace-1_5);
    margin-bottom: var(--vspace-1_5);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--vspace-0_75) 0;
    border-bottom: 1px solid var(--color-border);
}

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

.hours-day {
    font-weight: 600;
    color: var(--color-text);
}

.hours-time {
    color: var(--color-text-light);
    font-weight: 500;
}

.hours-note {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    font-style: italic;
    margin: 0;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: var(--vspace-1_5);
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: var(--vspace-1);
    padding: var(--vspace-1_25);
    background: var(--color-bg-neutral);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateX(5px);
    border-color: var(--color-bg-accent);
}

.location-item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-bg-accent);
    margin-top: 4px;
}

.location-item h4 {
    font-size: var(--text-md);
    font-weight: 600;
    margin: 0 0 var(--vspace-0_25) 0;
}

.location-item p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin: 0;
}

.location-item a {
    color: var(--color-bg-accent);
    text-decoration: none;
    font-weight: 600;
}

.location-item a:hover {
    text-decoration: underline;
}


/* ===================================================================
 * RESPONSIVE STYLES
 * ================================================================ */
@media screen and (max-width: 900px) {
    .reservation-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .menu-category__title {
        font-size: var(--text-xl);
    }
    
    .hours-block__title,
    .location-block__title {
        font-size: var(--text-xl);
    }
}


/* ===================================================================
 * ORDER FROM US SECTION
 * ================================================================ */
.s-order {
    padding: var(--vspace-4) 0; /* Reduced padding */
    background-color: var(--color-bg); 
    position: relative;
}

.s-order__header {
    margin-bottom: var(--vspace-2); /* Reduced margin */
}

.s-order__header .lead {
    text-align: center;
    max-width: 600px;
    margin: var(--vspace-0_5) auto 0;
    color: var(--color-text-light);
    font-size: var(--text-base); /* Smaller text */
}

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

.order-platforms {
    display: flex;
    justify-content: center;
    gap: var(--vspace-1_5); /* Tighter gap */
    flex-wrap: wrap;
    margin-top: var(--vspace-1);
}

.order-platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--vspace-1_5) var(--vspace-1); /* Compact padding */
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md); /* Smaller radius */
    width: 220px; /* Reduced width */
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Minimal Hover Effect */
.order-platform-card:hover {
    border-color: var(--color-bg-accent);
    background-color: #ffffff; /* Contrast against the --color-bg (#fffaf7) */
    transform: translateY(-2px); /* Subtle lift */
    box-shadow: 0 4px 12px rgba(200, 90, 58, 0.1); /* Soft shadow */
}

.platform-icon {
    width: 100%;
    height: 40px; /* Smaller icon container */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--vspace-0_75);
    transition: transform 0.3s ease;
}

.order-platform-card:hover .platform-icon {
    transform: scale(1.05); 
}

.platform-icon img, 
.platform-icon svg {
    max-width: 80px;
    max-height: 100%;
    object-fit: contain;
}

.platform-icon svg {
    color: var(--color-1-500);
}

.platform-icon.zomato img {
    height: 24px; /* Smaller logos */
}

.platform-icon.swiggy img {
    height: 28px;
}

.platform-name {
    font-family: var(--font-2);
    font-size: var(--text-base); /* Reduced font size */
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--vspace-0_125);
}

.platform-desc {
    font-size: var(--text-xs); /* Smaller description */
    color: var(--color-text-light);
    margin-bottom: var(--vspace-1);
    line-height: 1.3;
    min-height: 32px; 
}

/* Minimal Button Style */
.platform-cta {
    font-size: var(--text-xs); /* Smaller button text */
    font-weight: 600;
    color: var(--color-1-500);
    background-color: transparent;
    padding: 6px 16px; /* Reduced padding */
    border: 1px solid var(--color-1-500);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.order-platform-card:hover .platform-cta {
    background-color: var(--color-1-500);
    color: #ffffff;
}


/* ===================================================================
 * MOST POPULAR ITEMS SECTION - Full Width Background
 * ================================================================ */
.s-popular {
    padding-top: var(--vspace-5);
    padding-bottom: var(--vspace-5);
    background-color: #F5E6D3; /* Secondary from THEME-COLORS.md */
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: calc((100vw - min(98%, var(--width-grid-max))) / 2 + var(--gutter) * 2);
    padding-right: calc((100vw - min(98%, var(--width-grid-max))) / 2 + var(--gutter) * 2);
    box-sizing: border-box;
}

.s-popular__header {
    margin-bottom: var(--vspace-3);
}

.s-popular__header .lead {
    text-align: center;
    max-width: 600px;
    margin: var(--vspace-1) auto 0;
    color: #8f3f27; /* Primary Dark */
}

.popular-item {
    margin-bottom: var(--vspace-2);
}

.popular-item__card {
    background: #fffaf7; /* Page Background */
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(200, 90, 58, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #D4A574; /* Accent */
}

.popular-item__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(200, 90, 58, 0.15);
    border-color: #C85A3A; /* Primary */
}

.popular-item__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.popular-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.popular-item__card:hover .popular-item__image img {
    transform: scale(1.1);
}

.popular-item__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #C85A3A; /* Primary */
    color: #fffaf7;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
}

.popular-item__content {
    padding: var(--vspace-1_25);
}

.popular-item__category {
    font-size: var(--text-xs);
    color: #C85A3A; /* Primary */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: var(--vspace-0_375);
}

.popular-item__name {
    font-family: var(--font-2);
    font-size: var(--text-lg);
    font-weight: 600;
    margin: 0 0 var(--vspace-0_5) 0;
    color: #4a2016; /* Text/Headings */
}

.popular-item__desc {
    font-size: var(--text-sm);
    color: #5f6362; /* Muted/Body */
    margin: 0;
    line-height: 1.5;
}

.popular-item__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popular-item__price {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-1-500);
}

.popular-item__rating {
    font-size: var(--text-sm);
    color: var(--color-1-600);
}


/* ===================================================================
 * MASTER CHEFS SECTION
 * ================================================================ */
.s-chefs {
    padding-top: var(--vspace-5);
    padding-bottom: var(--vspace-5);
    background-color: #F5E6D3; /* Secondary */
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: calc((100vw - min(98%, var(--width-grid-max))) / 2 + var(--gutter) * 2);
    padding-right: calc((100vw - min(98%, var(--width-grid-max))) / 2 + var(--gutter) * 2);
    box-sizing: border-box;
}

.s-chefs__header {
    margin-bottom: var(--vspace-3);
}

.s-chefs__header .lead {
    text-align: center;
    max-width: 600px;
    margin: var(--vspace-1) auto 0;
    color: #5f6362; /* Muted */
}


.chef-item {
    margin-bottom: var(--vspace-2);
}

.chef-card {
    background: #fffaf7; /* Page Background */
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #D4A574; /* Accent */
}

.chef-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(200, 90, 58, 0.12);
    border-color: #C85A3A; /* Primary */
}

.chef-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.chef-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.chef-card:hover .chef-card__image img {
    transform: scale(1.08);
}

.chef-card__social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(74, 32, 22, 0.85));
    padding: var(--vspace-1_5) var(--vspace-1);
    display: flex;
    justify-content: center;
    gap: var(--vspace-1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.chef-card:hover .chef-card__social {
    opacity: 1;
    transform: translateY(0);
}

.chef-card__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fffaf7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C85A3A; /* Primary */
    transition: all 0.3s ease;
}

.chef-card__social a:hover {
    background: #C85A3A; /* Primary */
    color: #fffaf7;
    transform: scale(1.1);
}

.chef-card__content {
    padding: var(--vspace-1_25);
    background: #fffaf7;
}

.chef-card__name {
    font-family: var(--font-2);
    font-size: var(--text-lg);
    font-weight: 600;
    margin: 0 0 var(--vspace-0_25) 0;
    color: #4a2016; /* Text/Headings */
}

.chef-card__title {
    font-size: var(--text-sm);
    color: #C85A3A; /* Primary */
    font-weight: 500;
}


/* ===================================================================
 * SPECIAL EVENTS SECTION - Spotlight Feature
 * ================================================================ */
.s-events {
    padding: var(--vspace-5) 0;
    background: #D4A574; /* Accent */
}

.s-events__header {
    margin-bottom: var(--vspace-2);
}

.event-feature {
    background: #fffaf7; /* Page Background */
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(74, 32, 22, 0.15);
    border: 1px solid rgba(74, 32, 22, 0.1);
}

.event-feature__media {
    position: relative;
    padding: 0;
    min-height: 400px;
}

.event-feature__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #C85A3A; /* Primary */
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.event-date-badge__day {
    display: block;
    font-size: var(--text-xl);
    font-weight: 700;
    line-height: 1;
}

.event-date-badge__month {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.event-feature__text {
    padding: var(--vspace-2_5) var(--vspace-2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.event-feature__title {
    font-family: var(--font-2);
    font-size: var(--text-2xl);
    color: #4a2016; /* Text/Headings */
    margin-bottom: var(--vspace-0_5);
}

.event-feature__meta {
    display: flex;
    gap: var(--vspace-1);
    margin-bottom: var(--vspace-1_25);
    flex-wrap: wrap;
}

.event-feature__meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-sm);
    color: #8f3f27; /* Primary Dark */
    font-weight: 600;
}

.event-feature__desc {
    color: #5f6362; /* Muted/Body */
    margin-bottom: var(--vspace-1_5);
    line-height: 1.7;
    max-width: 90%;
}


/* ===================================================================
 * CONTACT US SECTION - Minimal & Clean
 * ================================================================ */
.s-contact {
    padding: var(--vspace-5) 0;
    background-color: #fffaf7; /* Page Background */
}

.s-contact__header {
    margin-bottom: var(--vspace-2);
}

.s-contact__header .lead {
    text-align: center;
    max-width: 600px;
    margin: var(--vspace-1) auto 0;
    color: #5f6362; /* Muted */
}

.contact-content {
    align-items: flex-start;
}

.contact-info__block {
    display: flex;
    flex-direction: column;
    gap: var(--vspace-1);
}

.contact-info__item {
    display: flex;
    align-items: center;
    gap: var(--vspace-0_75);
    padding: var(--vspace-1);
    transition: all 0.3s ease;
}

.contact-info__item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #F5E6D3; /* Secondary */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C85A3A; /* Primary */
}

.contact-info__item h4 {
    font-family: var(--font-2);
    font-size: var(--text-base);
    font-weight: 600;
    margin: 0 0 2px 0;
    color: #4a2016; /* Text/Headings */
}

.contact-info__item p {
    font-size: var(--text-sm);
    color: #5f6362; /* Muted */
    margin: 0;
    line-height: 1.4;
}

.contact-info__item a {
    color: #C85A3A; /* Primary */
    text-decoration: none;
    font-weight: 500;
}

.contact-info__item a:hover {
    text-decoration: underline;
}

.contact-map {
    margin-bottom: 0;
    position: sticky;
    top: 100px;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.get-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--vspace-0_5);
    margin-top: var(--vspace-1);
}


/* ===================================================================
 * RESPONSIVE FOR ALL SECTIONS
 * ================================================================ */
@media screen and (max-width: 900px) {
    .order-platforms {
        flex-direction: column;
        align-items: center;
    }
    
    .order-platform-card {
        width: 100%;
        max-width: 280px;
    }
    
    .chef-card__image {
        aspect-ratio: 4/3;
    }
    
    /* Fix full-width section on tablet */
    .s-popular {
        padding-left: var(--gutter);
        padding-right: var(--gutter);
    }
}

@media screen and (max-width: 600px) {
    .platform-icon {
        width: 100px;
        height: 40px;
    }
    
    .contact-info__item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-icon {
        margin-bottom: var(--vspace-0_5);
    }
    
    /* Section spacing for mobile */
    .s-order,
    .s-popular,
    .s-chefs,
    .s-events,
    .s-contact {
        padding-top: var(--vspace-3);
        padding-bottom: var(--vspace-3);
    }
    
    .s-popular__header,
    .s-chefs__header,
    .s-events__header,
    .s-contact__header {
        margin-bottom: var(--vspace-2);
    }
}


/* ===================================================================
 * STATS SECTION
 * ================================================================ */
.s-stats {
    padding: var(--vspace-5) 0;
    background-color: #4a2016; /* Theme Dark Brown */
    position: relative;
    color: #F5E6D3; /* Theme Beige */
    text-align: center;
}

/* Remove overlay since we use solid color */
.s-stats::before {
    display: none;
}

.s-stats .container, 
.s-stats .row {
    position: relative;
    z-index: 2;
}

.stats-item {
    margin-bottom: var(--vspace-2);
}

.stats-item__icon {
    margin-bottom: var(--vspace-0_5);
    color: #F5E6D3;
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
}

.stats-item:hover .stats-item__icon {
    transform: translateY(-5px);
    opacity: 1;
    color: #D4A574; /* Theme Gold Accent */
}

.stats-item__count {
    font-family: var(--font-1); /* Serif font for numbers */
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: var(--vspace-0_5);
}

.stats-item h5 {
    font-family: var(--font-2);
    font-size: var(--text-md);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D4A574; /* Theme Gold */
    margin: 0;
    opacity: 1;
}


/* ===================================================================
 * BOOK / RESERVATION SECTION
 * ================================================================ */
.s-book {
    padding: var(--vspace-5) 0;
    background-color: #ffffff;
}

.book-form-wrap {
    padding: var(--vspace-3);
    background: #fffaf7; /* Light BG */
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.book-form input,
.book-form select,
.book-form textarea {
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    margin-bottom: var(--vspace-1);
}

.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
    border-color: #C85A3A;
    box-shadow: 0 0 0 1px rgba(200, 90, 58, 0.2);
}

.book-info {
    padding-left: var(--vspace-2);
}

.book-info__content {
    background: #4a2016; /* Dark Theme Color */
    color: #ffffff;
    padding: var(--vspace-2_5);
    border-radius: var(--radius-lg);
}

.book-info__content h4 {
    color: #ffffff;
    margin-bottom: var(--vspace-1);
    font-size: var(--text-lg);
}

.book-info__list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: var(--text-sm);
    line-height: 1.6;
}

.book-info__list li {
    margin-bottom: var(--vspace-0_5);
    padding-left: 20px;
    position: relative;
    opacity: 0.9;
}

.book-info__list li::before {
    content: '•';
    color: #C85A3A;
    position: absolute;
    left: 0;
}


/* ===================================================================
 * FAQ SECTION
 * ================================================================ */
.s-faq {
    padding: var(--vspace-4) 0 var(--vspace-5);
    background-color: #fffaf7; /* Match page BG */
    border-top: 1px solid rgba(0,0,0,0.05);
}

.accordion-list {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 0;
}

.accordion-item:first-child {
    border-top: 1px solid rgba(0,0,0,0.1);
}

.accordion-item__header {
    padding: var(--vspace-1) 0;
    cursor: pointer;
    list-style: none; /* Hide default marker */
    position: relative;
    padding-right: 40px;
}

/* Hide default marker in Safari/Webkit */
.accordion-item__header::-webkit-details-marker {
    display: none;
}

.accordion-item__header h5 {
    margin: 0;
    font-size: var(--text-md);
    font-weight: 500;
    color: #4a2016;
    transition: color 0.3s;
}

.accordion-item[open] .accordion-item__header h5 {
    color: #C85A3A; /* Active color */
}

.accordion-item__header::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 300;
    font-size: 24px;
    color: #C85A3A;
    transition: transform 0.3s;
}

.accordion-item[open] .accordion-item__header::after {
    content: '-';
    font-size: 32px; /* Adjust size slightly for dash */
    line-height: 0.8;
}

.accordion-item__body {
    padding-bottom: var(--vspace-1_5);
    color: #5f6362;
    font-size: var(--text-md);
    line-height: 1.6;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===================================================================
 * # BOOK A TABLE SECTION
 * ------------------------------------------------------------------- */

.book-cta-wrapper {
    max-width: 500px;
    margin: 0 auto var(--vspace-3);
    text-align: center;
}

.book-cta-wrapper .btn {
    min-width: 280px;
    margin-bottom: var(--vspace-1_5);
}

.book-availability {
    margin-top: var(--vspace-1);
    color: var(--color-text-light);
    font-size: var(--text-md);
    line-height: 1.6;
}

.reservation-policy {
    max-width: 700px;
    margin: var(--vspace-3) auto 0;
    padding: var(--vspace-2);
    border-top: 2px solid var(--color-bg-accent);
}

.policy-title {
    color: var(--color-1-900);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--vspace-1_5);
    text-align: center;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.policy-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: var(--vspace-0_75);
    color: var(--color-text);
    font-size: var(--text-md);
    line-height: 1.6;
}

.policy-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 24px;
    height: 24px;
    background-color: var(--color-bg-accent);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a2016' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

@media screen and (max-width: 600px) {
    .policy-list li {
        padding-left: 35px;
    }
}


/* Responsive adjustments */
@media screen and (max-width: 800px) {
    .book-info {
        padding-left: 0;
        margin-top: var(--vspace-3);
    }
}

/* ===================================================================
 * # SECTION BACKGROUND COLORS
 * Alternating backgrounds for visual distinction
 * ------------------------------------------------------------------- */

/* Default/Light sections - Pure white */
.s-intro,
.s-popular,
.s-gallery,
.s-testimonials {
    background-color: var(--color-pure-white);
    width: 100%;
}

/* Cream/Beige sections - Warm light background */
.s-about,
.s-order,
.s-events,
.s-faq {
    background-color: var(--color-2-50); /* Very light warm cream */
    width: 100%;
}

/* Medium cream sections - Slightly darker for variety */
.s-book {
    background-color: var(--color-2-100); /* Warm cream */
    width: 100%;
}

/* Contact section - Clean white for form clarity */
.s-contact {
    background-color: var(--color-pure-white);
    width: 100%;
}

/* Chefs section - Light background */
.s-chefs {
    background-color: var(--color-2-50);
    width: 100%;
}

/* Stats section already has dark brown background - keep it */
.s-stats {
    background-color: #4a2016; /* Dark brown - already set */
    width: 100%;
}

