/* ============================================================
   CALIENTE ï¿½ globals.css  (unified design system)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700&family=Montserrat:wght@300;400;500;600&family=Open+Sans:wght@400;500&display=swap');

:root {
    --primary: #8b2c2c;
    --primary-hover: #e85d3f;
    --primary-light: #ec927d;
    --dark-bg: #1a1a1a;
    --mid-bg: #242424;
    --light-bg: #f8f8f8;
    --card-warm: #e7dbcd;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #666666;
    --border-light: rgba(0, 0, 0, 0.08);
    --border-dark: rgba(255, 255, 255, 0.08);
    --nav-height: 80px;
    --gold: #d4a017;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    background: #fff;
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Sora', sans-serif;
}
p {
    font-family: 'Montserrat', sans-serif;
}
img {
    max-width: 100%;
}

.height_nav {
    height: var(--nav-height);
    display: block;
}

/* NAVBAR */
.navbar {
    background: rgba(0, 0, 0, 1);
    padding: 0;
    height: var(--nav-height);
    transition: var(--transition);
    z-index: 1050;
}
.navbar.navbar-scrolled {
    background: rgba(0, 0, 0, 1);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.brand-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
}
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem !important;
    letter-spacing: 0.03em;
    transition:
        color 0.25s,
        background 0.25s,
        border-color 0.25s;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}
.navbar-nav .nav-link:hover {
    color: #fff !important;
}
.navbar-nav .nav-link.active {
    color: #fff !important;
    font-weight: 600;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}
.navbar-toggler-icon {
    filter: invert(1);
}

/* BUTTONS */
.btn-primary,
.btn.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    letter-spacing: 0.03em;
    transition: var(--transition);
}
.btn-primary:hover,
.btn.btn-primary:hover {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(194, 59, 34, 0.35);
}
.btn-outline-primary {
    color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
    background: transparent !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    transition: var(--transition);
}
.btn-outline-primary:hover {
    background: var(--primary) !important;
    color: #fff !important;
    transform: translateY(-2px);
}
.option-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    width: 100%;
}
.option-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

/* Branch modal rich card */
.branch-modal-card {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 15px 14px;
    text-align: left;
    cursor: pointer;
    transition:
        box-shadow 0.2s ease,
        transform 0.2s ease;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    position: relative;
}
.branch-modal-card:hover {
    box-shadow: 0 8px 24px rgba(139, 44, 44, 0.13);
    transform: translateY(-3px);
}
.bmc-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}
.bmc-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.25;
    margin: 0;
}
.bmc-badge {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(139, 44, 44, 0.1);
    color: var(--primary);
    border: 1px solid rgba(139, 44, 44, 0.2);
    border-radius: 20px;
    padding: 3px 9px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 2px;
}
.bmc-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bmc-capacity {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 10px;
    margin-top: 4px;
}
.bmc-capacity svg {
    color: var(--primary);
    flex-shrink: 0;
}
.bmc-arrow {
    position: absolute;
    bottom: 1.2rem;
    right: 1.2rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-4px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}
.bmc-arrow svg {
    color: #fff;
}
.branch-card:hover .bmc-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* SECTION UTILS */
.section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.section-subtitle {
    margin: 0 auto 2rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.6;
    max-width: 600px;
    /* margin-bottom: 2rem; */
}
.section-title-light {
    color: #fff;
}
.section-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}
.section-body {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 6%;
    z-index: 10;
}
.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 25px;
    position: relative;
}
.scroll-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
    0% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 28px;
        opacity: 0;
    }
}

/* FOOTER */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}
.footer-brand {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    font-style: italic;
    margin-bottom: 0.5rem;
}
.footer-title {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #fff;
}
.footer-list {
    list-style: none;
    padding: 0;
}
.footer-list li {
    margin-bottom: 0.7rem;
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.8;
    font-family: 'Open Sans', sans-serif;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2.5rem;
}
.footer-bottom p {
    color: #888;
    font-size: 0.875rem;
    margin: 0.3rem 0;
}
.footer-credit span {
    color: var(--primary);
    font-weight: 600;
}
.footer-credit span a {
    color: inherit;
    text-decoration: none;
}
.footer-credit span a:hover {
    text-decoration: underline;
}
.footer-list.locations {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list.locations li {
    margin-bottom: 18px;
}

.footer-list.locations strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.location-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.locations-inline a {
    font-size: 13px;
    color: #bfbfbf;
    text-decoration: none;
    transition: color 0.3s;
}

.locations-inline a:hover {
    color: #fff;
}

/* MODAL */
.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}
.modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, #6b1a1a 100%);
    color: #fff;
    border-bottom: none;
    padding: 1.4rem 1.6rem;
}
.modal-header .modal-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
}
.modal-header .modal-subtitle {
    font-size: 12px;
    opacity: 0.75;
    margin: 2px 0 0;
    font-family: 'Montserrat', sans-serif;
}
.modal-body {
    background: #f8f7f5;
    padding: 1.4rem 1.4rem 1rem;
}
.modal-footer {
    background: #f8f7f5;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding: 0.9rem 1.4rem;
}
.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

/* INDEX HERO */
.hero-section {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.65)),
        url('assets/images/img-16.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding-bottom: 60px;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}
.hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.4rem, 7vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}
.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.9;
}

/* EVENTS BOARD */
.events-board {
    display: flex;
    flex-direction: column;
    color: #fff;
    position: relative;
    z-index: 2;
}
.status-pill {
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    padding: 8px 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 40px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Sora', sans-serif;
}
.glass-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    text-align: center;
    padding: 20px 16px;
    transition: var(--transition);
    color: var(--primary);
}
.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.side-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 4px 0;
}
.side-card h2,
.side-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
}
.glass-card .date {
    font-weight: 700;
    font-size: 12px;
    color: #8b2010;
}
.glass-card .time {
    font-size: 11px;
    color: #555;
    margin-top: 3px;
}
.glass-card .feature,
.glass-card .venue {
    color: #8b2010;
    font-size: 17px;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

/* INDEX MENU SECTION */
#menu {
    scroll-margin-top: var(--nav-height);
}
.menu-section {
    background: var(--light-bg);
    padding: 5rem 0;
}
.nav-pills .nav-link {
    color: var(--primary);
    background: transparent;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    padding: 0.65rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    transition: var(--transition);
}
.nav-pills .nav-link.active,
.nav-pills .nav-link:hover {
    background: transparent;
    border-bottom-color: var(--primary);
    color: var(--primary);
}
.menu-card {
    background: var(--primary);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    height: 100%;
}
.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-hover);
}
.menu-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.menu-card:hover .menu-image img {
    transform: scale(1.08);
}
.menu-info {
    padding: 1.5rem;
    text-align: center;
}
.menu-item-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}
.menu-price {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
}
.menu-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* ABOUT SECTION */
.about-section {
    background: #fff;
    padding: 5rem 0;
}
.teal-card {
    background: #8b2c2c;
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    color: #fff;
}
.teal-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
}
.teal-card p {
    font-size: 17px;
    opacity: 0.9;
    line-height: 1.6;
}
.cream-card {
    background: #fff8e7;
    border-radius: var(--radius-lg);
    padding: 20px 16px;
}
.cream-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}
.cream-card p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}
.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #eef3fb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.feature-text h4 {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}
.feature-text p {
    color: var(--text-muted);
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

/* about */

.about-section {
    background: #ffffff;
    border-radius: 28px;
    padding: 48px 40px;
    max-width: 1060px;
    margin: 0 auto;
    width: 100%;
    /* box-shadow: 0 8px 48px rgba(0,0,0,0.07); */
}

/* -- LEFT COLUMN -- */
.left-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Top row: food image + teal card */
.top-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.img-food {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    height: 200px;
}
.img-food img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.teal-card {
    width: 160px;
    flex-shrink: 0;
    background: #2ec4a9;
    border-radius: 18px;
    padding: 20px 16px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.teal-card .shield-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}
.teal-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.3;
    margin: 0;
}
.teal-card p {
    font-size: 12.5px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

/* Bottom row: cream card + dog image */
.bottom-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.cream-card {
    width: 160px;
    flex-shrink: 0;
    background: #fff8e7;
    border-radius: 18px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cream-card .truck-icon {
    font-size: 22px;
    color: #e05c3a;
}
.cream-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
}
.cream-card p {
    font-size: 12.5px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.img-dog {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    height: 200px;
}
.img-dog img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* -- RIGHT COLUMN -- */
.right-col {
    padding-left: 16px;
}

.right-col h2 {
    font-family: 'sora', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.15;
}

.right-col .intro-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 420px;
    font-size: 17px;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

/* BRANCHES */
.branches-section {
    background: #eeeeee;
    padding: 5rem 0;
}
.branch-info {
    background: #eeeeee;
    padding: 32px 16px;
    border-radius: var(--radius-sm);
}
.branches-section .branches-image img {
    border-radius: var(--radius-sm);
    width: 100%;
    box-shadow: var(--shadow-md);
}
.branch-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 1.4rem 1.5rem 1.3rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    border: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}
.branch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(139, 44, 44, 0.15);
}
.branch-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.branch-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: 'Open Sans', sans-serif;
    margin: 0;
}

/* TESTIMONIALS */
.testimonials-section {
    background: var(--light-bg);
    padding: 5rem 0;
}
.testimonial-content {
    text-align: center;
    padding: 2rem 1.5rem;
}
.testimonial-content h1 {
    font-size: 9rem;
    color: var(--primary);
    /* margin-bottom: 1rem; */
    line-height: 0.1;
}
.testimonial-name {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}
.testimonial-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}
#testimonialCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary);
    border: none;
    opacity: 0.4;
}
#testimonialCarousel .carousel-indicators button.active {
    opacity: 1;
}

/* MENU PAGE */
.menu-page-section {
    background: #fff;
    padding: 3rem 3.5rem;
}
.menu-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 10px;
}
.carousel-indicators {
    position: static;
    margin: 0 0 24px 0;
    gap: 6px;
    justify-content: center;
}
.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    opacity: 1;
    transition: background 0.3s;
}
.carousel-indicators .active {
    background: var(--primary);
}
.carousel-inner {
    width: 88%;
    margin: 0 auto;
}
.carousel-control-prev,
.carousel-control-next {
    width: 36px;
    height: 36px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    opacity: 1;
}
.carousel-control-prev {
    left: -14px;
}
.carousel-control-next {
    right: -14px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 13px;
    height: 13px;
    filter: invert(30%) sepia(80%) saturate(600%) hue-rotate(340deg);
}
hr.section-divider {
    border: none;
    border-top: 1px solid #e0ddd8;
    margin: 20px 0;
}
.cat-heading {
    font-family: 'Sora', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
}
.menu-item {
    margin-bottom: 14px;
}
.menu-item:last-child {
    margin-bottom: 0;
}
.item-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 3px;
}
.item-desc {
    color: #000000;
    font-weight: 300;
    max-width: 320px;
    font-size: 15px;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}
.v-divider {
    width: 1px;
    background: #e0ddd8;
    align-self: stretch;
    margin: 0 18px;
    flex-shrink: 0;
}
.slide-inner {
    display: flex;
    gap: 0;
    position: relative;
}
.slide-col {
    flex: 1;
    min-width: 0;
}
.slide-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 20px;
    padding: 2px 12px;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}
.menu-footer {
    margin-top: 24px;
    padding-top: 14px;
    border-top: 1px solid #e0ddd8;
}
.menu-footer a {
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.menu-footer a:hover {
    text-decoration: underline;
}

/* CATERING HERO */
.catering-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    overflow: hidden;
}
.catering-hero .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/img-15.jpg');
    background-size: cover;
    background-position: center;
    animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.08);
    }
}
.catering-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(20, 20, 20, 0.25) 0%, rgba(20, 20, 20, 0.88) 100%);
}
.catering-hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 48px;
    max-width: 680px;
}
.hero-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    animation: fadeUp 0.8s 0.3s both;
}
.catering-hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 20px;
    animation: fadeUp 0.8s 0.5s both;
}
.catering-hero h1 em {
    font-style: italic;
    color: var(--gold);
}
.catering-hero .hero-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    max-width: 460px;
    margin-bottom: 36px;
    animation: fadeUp 0.8s 0.7s both;
    font-family: 'Montserrat', sans-serif;
}
.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.9s both;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.btn-cal-primary {
    background-color: var(--primary);
    border: none;
    padding: 13px 28px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    color: #fff;
    text-decoration: none;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.btn-cal-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(194, 59, 34, 0.35);
    color: #fff;
}
.btn-cal-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}
.btn-cal-outline:hover {
    border-color: #fff;
    transform: translateY(-2px);
    color: #fff;
}
.btn-cal-outline-dark {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}
.btn-cal-outline-dark:hover {
    background: var(--primary);
    color: #fff;
}

/* STATS BAR */
.stats-bar {
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
}
.stat-item {
    text-align: center;
    padding: 0 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-item:last-child {
    border-right: none;
}
.stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}
.stat-label {
    font-size: 10px;
    color: #9a9080;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

/* CATERING EVENTS */
.catering-section {
    background: var(--dark-bg);
    padding: 90px 0 70px;
}
.event-card {
    background: var(--mid-bg);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s,
        border-color 0.3s;
}
.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.event-card:hover {
    transform: translateY(-6px);
    border-color: rgba(194, 59, 34, 0.3);
}
.event-card:hover::before {
    transform: scaleX(1);
}
.event-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}
.event-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.event-card p {
    font-size: 13px;
    color: #9a9080;
    line-height: 1.7;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

/* PACKAGES */
.packages-section {
    background: var(--light-bg);
    padding: 80px 0;
}
.pkg-card {
    background: var(--card-warm);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    height: 100%;
    position: relative;
}
.pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.pkg-card.featured {
    border: 2px solid var(--primary);
}
.pkg-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
}
.pkg-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: transform 0.4s;
}
.pkg-card:hover .pkg-img {
    transform: scale(1.05);
}
.pkg-body {
    padding: 24px;
}
.pkg-name {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}
.pkg-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
}
.pkg-features {
    list-style: none;
    padding: 0;
    margin-bottom: 22px;
}
.pkg-features li {
    font-size: 13px;
    color: var(--text-dark);
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Open Sans', sans-serif;
}
.pkg-features li:last-child {
    border-bottom: none;
}
.pkg-features li::before {
    content: '?';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

/* TAKEAWAY */
.takeaway-section {
    background: #fff;
    padding: 90px 0;
}
.takeaway-img-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.takeaway-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.6s;
    display: block;
}
.takeaway-img-wrap:hover img {
    transform: scale(1.04);
}
.info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}
.info-icon {
    width: 50px;
    height: 50px;
    background: var(--card-warm);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.info-text h5 {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}
.info-text p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* HOW IT WORKS */
.process-section {
    background: var(--light-bg);
    padding: 80px 0;
}
.step-wrap {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 32px 24px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}
.step-wrap:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.step-num {
    font-family: 'Sora', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(194, 59, 34, 0.1);
    line-height: 1;
    margin-bottom: 6px;
}
.step-title {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.step-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    font-family: 'Montserrat', sans-serif;
}

/* CTA / CONTACT */
/* .cta-section {
  background: var(--light-bg);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: url("assets/images/img-02.jpg")
    center/cover;
  opacity: 0.1;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-content h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}
.cta-content .lead-text {
  font-size: 15px;
  color: #9a9080;
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Montserrat", sans-serif;
}
.contact-cards {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.contact-card {
  background: var(--card-warm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  text-align: center;
  min-width: 185px;
  transition:
    border-color 0.3s,
    transform 0.3s;
  text-decoration: none;
  display: inline-block;
}
.contact-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}
.cc-icon {
  font-size: 1.7rem;
  margin-bottom: 8px;
  display: block;
}
.cc-label {
  font-size: 10px;
  color: #000000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
  font-family: "Montserrat", sans-serif;
}
.cc-value {
  font-size: 14px;
  color: #000000;
  font-weight: 700;
  font-family: "Sora", sans-serif;
}
.payment-box {
  background: rgb(0 0 0 / 22%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  max-width: 600px;
  margin: 44px auto 0;
  text-align: left;
}
.payment-box h5 {
  color: #000000;
  font-size: 15px;
  font-family: "Sora", sans-serif;
  margin-bottom: 12px;
  font-weight: 600;
}
.payment-box p {
  font-size: 13px;
  color: #131312;
  line-height: 1.8;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}
.payment-box strong {
  color: #000000;
}

/* CONTACT PAGE HERO */
/* .contact-page-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.75)),
    url("assets/images/img-02.jpg")
      center/cover;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 80px 20px 60px;
}
.contact-page-hero h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
}
.contact-page-hero p {
  font-size: 1rem;
  opacity: 0.75;
  max-width: 480px;
  margin: 12px auto 0;
  font-family: "Montserrat", sans-serif;
} */

/* SECTION */
.cta-section {
    background: #ffffff;
    padding: 100px 0;
}

/* LEFT SIDE */
.cta-left h2 {
    font-size: 48px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
}

.cta-left .highlight {
    font-style: italic;
    color: var(--primary);
}

.section-eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
    color: #9a9080;
    display: block;
    margin-bottom: 10px;
}

.lead-text {
    color: #7a7266;
    max-width: 450px;
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

/* EXPERIENCE */
.experience h6,
.spaces h6 {
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}

.exp-grid {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.exp-grid h5 {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
}
.exp-grid p {
    font-family: 'Montserrat', sans-serif;
}

/* SPACES */
.space-cards {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.space-card {
    background: #f6f3ee;
    padding: 18px;
    border-radius: 12px;
    flex: 1;
    position: relative;
}

.space-card .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #8b4513;
    color: #fff;
    font-size: 10px;
    padding: 3px 8px;
}

.space-card .badge.green {
    background: #2e7d32;
}

/* RIGHT IMAGE */
.cta-image img {
    width: 100%;
    border-radius: 12px;
}

/* FORM BOX */
.inquiry-box {
    background: #e9e4dc;
    padding: 30px;
    border-radius: 16px;
}

.inquiry-box h3 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Sora', sans-serif;
}

/* INPUT */
.form-control {
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 10px;
}

/* BUTTON */
.btn-submit {
    background: var(--primary);
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .exp-grid,
    .space-cards {
        flex-direction: column;
    }

    .cta-left h2 {
        font-size: 32px;
    }
}

/* FADE IN UP */
.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    .catering-hero h1 {
        font-size: 2.5rem;
    }
}
@media (max-width: 767px) {
    .catering-hero .hero-content {
        padding: 0 20px;
    }
    .catering-hero h1 {
        font-size: 2rem;
    }
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .slide-inner {
        flex-direction: column;
    }
    .v-divider {
        display: none;
    }
    .takeaway-img-wrap img {
        height: 300px;
    }
    .menu-page-section {
        padding: 2rem 1.2rem;
    }
    .carousel-inner {
        width: 100%;
    }
    .carousel-control-prev {
        left: 0;
    }
    .carousel-control-next {
        right: 0;
    }
}
@media (max-width: 576px) {
    .status-pill {
        font-size: 11px;
        margin-top: 24px;
    }
    .glass-card {
        padding: 16px 12px;
    }
    .stat-num {
        font-size: 1.6rem;
    }
    .catering-hero {
        padding-bottom: 60px;
    }
}
