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

:root {
    --primary-color: #8b2c2c;
    --secondary-color: #e85d3f;
    --secondary-color-light: #ec927d;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f8f8;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --gray-text: #666666;
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}
.height_nav {
    height: 80px;
}
/* Navbar */
.navbar {
    /* background:linear-gradient(
  to bottom,
  rgba(0, 0, 0, 0.95) 0%,
  rgba(0, 0, 0, 0.85) 30%,
  rgba(0, 0, 0, 0.75) 50%,
  rgba(0, 0, 0, 0.33) 70%,
  rgba(0, 0, 0, 0) 100%
); */
    background: rgba(0, 0, 0, 1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

/* Scrolled state */
.navbar.navbar-scrolled {
    background: rgba(0, 0, 0, 1);
    backdrop-filter: blur(10px);
}

/* Brand Logo */
.brand-logo {
    height: 45px; /* adjust as needed */
    width: auto;
    object-fit: contain;
}

/* Nav links */
.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
}
.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
}
.navbar-collapse {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 10px 15px;
}
/* Hero Section */
.hero-section {
    position: relative;
    /* height: 100vh; */
    background:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('assets/images/img-16.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding-bottom: 60px;
}
.menupage-section {
    position: relative;
    height: 100vh;
    /* background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
              url('assets/images/img-06.jpg') center/cover; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Sora', sans-serif;
}
.upcomming-events {
    border-bottom: 2px solid #fff;
    display: inline-block;
    text-align: left;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
}
.events-board {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* max-width: 1120px;
    width: min(100%, 1120px); */
    margin: 0 auto;
    padding: 1rem 1.25rem 1.25rem;
    /* background: linear-gradient(145deg, #1b0d09, #3a170f);
    border: 1px solid #6c3a28; */
    /* box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35); */
    color: #fff;
}

/* Upcoming Events Pill */
.status-pill {
    border-bottom: 2px solid rgba(255, 226, 192, 0.85);
    padding: 8px 2px;
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 240, 225, 0.95);
    font-weight: 700;
    font-family: 'Sora', sans-serif;
}

/* Carousel Layout */
.carousel {
    width: 100%;
}

.cards-container {
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 30px; */
    padding: 40px 0;
}

/* Glass Card Effects */
.glass-card {
    background: #fff8f1;
    border: 1px solid #e1b797;
    border-radius: 16px;
    text-align: center;
    padding: 20px 20px;
    transition: 0.4s ease;
    color: #ab331d;
}

.events-board .glass-card {
    /* min-height: 210px; */
    background: linear-gradient(165deg, #fffdf9 0%, #ffefd8 100%);
    border: 1px solid #cc8f67;
    border-radius: 14px;
    padding: 1.05rem 1rem 1rem 1.15rem;
    box-shadow:
        0 12px 28px rgba(24, 10, 5, 0.16),
        inset 0 0 0 1px rgba(255, 255, 255, 0.45);
    text-align: left;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.events-board .glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #c15a2c 0%, #8a3316 100%);
}

.events-board .glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 52px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.events-board .glass-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 22px 38px rgba(24, 10, 5, 0.22),
        inset 0 0 0 1px rgba(255, 255, 255, 0.52);
    border-color: #ad5c35;
}

.side-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 5px 0px;
}

.featured-card {
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid #ffffff;
    box-shadow: 0 0 30px rgba(183, 183, 183, 0.3);
    z-index: 2;
}

/* Typography */
.side-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 300;
}

.events-board .side-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #73260f;
    margin-bottom: 0.45rem;
    line-height: 1.4;
    padding-right: 0.4rem;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.events-board .feature {
    color: #553021;
    font-size: 0.93rem;
    line-height: 1.65;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.events-board .event-details {
    color: #4f2f22;
    margin-top: 0.5rem;
    margin-bottom: 0.55rem;
}

.events-board .event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.events-board .event-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-family: 'Sora', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    padding: 0.42rem 0.65rem 0.42rem 0.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
}

.events-board .event-date {
    background: #fff2e1;
    color: #8a3216;
    border-color: #e1b389;
}

.events-board .event-time {
    background: #ffe7cc;
    color: #6f2b13;
    border-color: #d99a6c;
}

.events-board .event-chip-icon {
    width: 0.8rem;
    height: 0.8rem;
    flex-shrink: 0;
    display: block;
}

.featured-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
.icon-header {
    font-size: 30px;
    margin-bottom: 10px;
}
p {
    font-size: 14px;
    margin: 5px 0;
}
.date {
    font-weight: bold;
    color: #ab331d;
}

/* Custom Carousel Indicators (Gold Dots) */
.custom-dots [button] {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    border: 2px solid #d4af37 !important;
    background-color: transparent !important;
    opacity: 0.5;
}

.custom-dots .active {
    background-color: #d4af37 !important;
    opacity: 1;
}

/* Adjusting Bootstrap controls color */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(72%) sepia(55%) saturate(417%) hue-rotate(1deg) brightness(93%) contrast(89%);
}

#eventsCarousel .carousel-control-prev,
#eventsCarousel .carousel-control-next {
    width: 42px;
    height: 42px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 236, 215, 0.92);
    border-radius: 50%;
    opacity: 0.95;
}

#eventsCarousel .carousel-control-prev {
    left: -14px;
}

#eventsCarousel .carousel-control-next {
    right: -14px;
}

#eventsCarousel .carousel-control-prev-icon,
#eventsCarousel .carousel-control-next-icon {
    width: 1.05rem;
    height: 1.05rem;
}
/* Navigation Dots */
.slider-nav {
    margin-top: 50px;
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border: 2px solid #d4af37;
    border-radius: 50%;
    opacity: 0.5;
}

.dot.active {
    background: #d4af37;
    opacity: 1;
    transform: scale(1.2);
}

/* Responsive */
/* @media (max-width: 900px) {
    .cards-container { flex-direction: column; height: auto; padding: 20px; }
    .side-card { display: none; } /* Hide side cards on small mobile */
/* } */
.hero-subtitle {
    font-size: 20px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(194, 59, 34, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 8%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-light);
    border-radius: 25px;
    position: relative;
}

.scroll-icon::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--text-light);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Menu Section */
#menu {
    scroll-margin-top: 80px;
}
.menu-section {
    background: radial-gradient(circle at 10% 10%, #fff7ee 0%, #f8efe4 42%, #f4e7d8 100%);
    padding: 5rem 0;
}

#menu .section-subtitle {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: #5f3f2f;
}

#menuTabs {
    gap: 0.55rem;
}

.nav-pills .nav-link {
    color: #7d2e13;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(146, 63, 31, 0.16);
    border-radius: 999px;
    padding: 0.62rem 1.4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active,
.nav-pills .nav-link:hover {
    background: #8f3518;
    border-color: #8f3518;
    color: #fff;
    box-shadow: 0 10px 22px rgba(143, 53, 24, 0.28);
}

.menu-card {
    background: var(--primary);
    border-radius: 0;
    /* border: 1px solid rgba(255, 255, 255, 0.13); */
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(22, 7, 3, 0.16);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
    height: 100%;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 36px rgba(22, 7, 3, 0.25);
    background: var(--primary-hover);
}

.menu-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-card:hover .menu-image img {
    transform: scale(1.1);
}

.menu-info {
    padding: 1.5rem;
    text-align: center;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.16));
}
.border-custom {
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(30, 12, 6, 0.14);
}
.menu-item-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; /* SemiBold */
}

.menu-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
    font-family: 'Sora', sans-serif;
    font-weight: 600; /* SemiBold */
}

.menu-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 991px) {
    .events-board {
        padding: 0.9rem 0.85rem 1rem;
    }

    .events-board .glass-card {
        /* min-height: 185px; */
        padding: 0.95rem 0.9rem 0.9rem 1rem;
    }

    #eventsCarousel .carousel-control-prev,
    #eventsCarousel .carousel-control-next {
        width: 36px;
        height: 36px;
    }

    .menu-info {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .status-pill {
        font-size: 0.72rem;
        letter-spacing: 0.15em;
        margin-top: 0.85rem;
    }

    .events-board .glass-card {
        min-height: auto;
        padding: 0.9rem 0.8rem 0.85rem 0.95rem;
    }

    #eventsCarousel .carousel-control-prev,
    #eventsCarousel .carousel-control-next {
        display: none;
    }

    .nav-pills .nav-link {
        padding: 0.5rem 0.95rem;
        font-size: 0.92rem;
    }

    .menu-info {
        height: auto;
        min-height: 190px;
    }

    .menu-description {
        font-size: 15px;
    }
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

/* Drinks Section */
.drinks-section {
    background: white;
    padding: 5rem 0;
}

.menupage-section .drinks-image {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
}

.menupage-section .drinks-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.menupage-section .drink-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 11px;
    padding: 8px;
}
.menupage-section .drink-info {
    text-align: left;
}
.menupage-section .drink-info h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-family: 'Sora', sans-serif;
}

.menupage-section .drink-info p {
    font-size: 18px;
    color: var(--gray-text);
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.menupage-section .drink-item img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    object-fit: cover;
}

.drinks-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
}

.drinks-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.drinks-list {
    display: flex;
    flex-direction: column;
    /* gap: 2rem;     */
    position: absolute;
    background: #fff;
    padding: 30px 20px;
    margin-left: -362px;
    max-width: 572px;
    border-radius: 5px;
    -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* Safari, old Chrome */
    -moz-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* Old Firefox */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* Standard */
}
.drinks-list hr {
    margin: 25px 0 !important;
}
.drink-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.drink-info h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-family: 'Sora', sans-serif;
}

.drink-info p {
    font-size: 18px;
    color: var(--gray-text);
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.drink-item img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    object-fit: cover;
}

/* Tablet */
@media (max-width: 991px) {
    .drinks-image {
        flex-direction: column;
        position: relative;
    }

    .drinks-list {
        position: relative;
        margin-left: 0;
        max-width: 100%;
        width: 100%;
        margin-bottom: 20px;
        padding: 20px;
    }

    .drink-item {
        justify-content: flex-start;
    }

    .drink-item img {
        width: 90px;
        height: 90px;
    }

    .drink-info h3 {
        font-size: 18px;
    }

    .drink-info p {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .col-lg-8.offset-lg-4 {
        margin-left: 0;
    }

    .drinks-section {
        padding: 3rem 1rem;
    }

    .drinks-list {
        padding: 15px;
        box-shadow: none;
    }

    .drink-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .drink-item img {
        width: 100%;
        height: 180px;
    }

    .drink-info h3 {
        font-size: 17px;
    }

    .drink-info p {
        font-size: 15px;
    }

    .drinks-image img {
        height: 300px;
    }
}
/* Branches Section */
/* .branches-section {
  background: var(--light-bg);
  color: var(--text-dark);
  padding: 5rem 0;
}

.branches-section .section-title {
  color: var(--text-light);
}

.branches-subtitle {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
}

.branches-image {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
}

.branches-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.branch-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.branch-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.branch-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.branch-card p {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.8;
} */

/* Branches Section */
.branches-section {
    background: #eeeeee;
    padding: 5rem 0;
}
.branches-section .branches-image img {
    border-radius: 10px;
    width: 100%;
}
.branches-section .branches {
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
}
.branch-info {
    background-color: #eeeeee;
    padding: 40px 20px;
    border-radius: 10px;
}
/* Title */
.section-title {
    font-size: 48px;
    font-weight: 600;
    color: #000;
    font-family: 'sora', sans-serif;
}

.branches-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    font-family: 'montserrat', sans-serif;
}

/* Branch Cards */
.branch-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.7rem;
    text-align: left;
    box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.12);
}

.branch-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #000;
    font-family: 'sora', sans-serif;
}

.branch-card p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--light-bg);
    padding: 5rem 0;
    font-family: 'Sora', sans-serif;
}

.testimonial-content {
    text-align: center;
    padding: 3rem 2rem;
}

.testimonial-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 5px solid var(--primary-color);
}

.testimonial-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Sora', sans-serif;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

.footer-list li {
    margin-bottom: 0.8rem;
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
    color: #999999;
    font-size: 0.9rem;
}

.footer-credit span {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-credit span a {
    color: inherit;
    text-decoration: none;
}

.footer-credit span a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

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

    .branches-image {
        min-height: 400px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .drink-item {
        flex-direction: column;
    }

    .drink-item img {
        width: 100%;
        height: 200px;
    }
}

.option-btn {
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: #c23b22;
    font-weight: 600;
    transition: 0.3s;
    color: #fff6f6;
}

.option-btn:hover {
    background: #ab331d;
    color: #fff6f6;
}

/* 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: #8b2c2c;
    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: 17px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.6;
}

/* 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: 16px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.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;
}

/* Homepage modern refresh */
.home {
    --home-accent: #a7411f;
    --home-accent-dark: #7d2c14;
    --home-paper: #fff9f2;
    --home-surface: #fff;
    --home-ink: #1d1b19;
    --home-muted: #6e5a4d;
}

.home .section-title {
    font-size: clamp(2rem, 4.2vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--home-ink);
}

.home #home .hero-content {
    max-width: 980px;
}

.home .hero-title {
    font-size: clamp(2.25rem, 6vw, 4.9rem);
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.home .hero-subtitle {
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
    text-wrap: pretty;
}

.home .events-board {
    border-radius: 20px;
    /* border: 1px solid #6c3a28;
    background: linear-gradient(130deg, #1b0d09, #3a170f); */
}

.home .status-pill {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(255, 241, 226, 0.92);
}

.home .events-board .glass-card {
    border-radius: 14px;
    background: linear-gradient(165deg, #fffdf9 0%, #ffefd8 100%);
    border: 1px solid #cc8f67;
}

.home .events-board .feature {
    font-size: 0.94rem;
}

.home #menu {
    background: radial-gradient(circle at 20% 20%, #fff8f0 0%, #f6eadb 45%, #f2e1d0 100%);
}

.home #menuTabs {
    row-gap: 0.65rem;
}

.home #menu .nav-pills .nav-link {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(159, 65, 31, 0.2);
}

.home #menu .nav-pills .nav-link.active,
.home #menu .nav-pills .nav-link:hover {
    background: linear-gradient(135deg, var(--home-accent), var(--home-accent-dark));
    border-color: transparent;
}

.home .menu-card {
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 30px rgba(33, 12, 5, 0.2);
}

.home .menu-card .menu-item-title {
    letter-spacing: -0.01em;
}

.home .menu-card .menu-description {
    font-size: 15px;
}

.home #branches {
    background: linear-gradient(180deg, #fff 0%, #f7f0e6 100%);
}

.home .branch-info {
    background: transparent;
    padding: 0;
}

.home .branches-image img {
    border-radius: 18px;
    box-shadow: 0 24px 40px rgba(28, 11, 5, 0.15);
}

.home .branch-card {
    background: var(--home-surface);
    border: 1px solid rgba(133, 55, 27, 0.12);
    border-radius: 16px;
    box-shadow: 0 12px 26px rgba(30, 12, 6, 0.1);
}

.home .branch-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 34px rgba(30, 12, 6, 0.16);
}

.home .branch-card .bmc-title {
    color: #2c1b14;
}

.home .branch-card .bmc-desc {
    color: var(--home-muted);
}

.home .branch-card .bmc-arrow {
    background: var(--home-accent);
}

.home #testimonials {
    background: linear-gradient(180deg, #f5eadc 0%, #fdf8f1 100%);
}

.home #testimonialCarousel {
    max-width: 900px;
    margin: 0 auto;
}

.home .testimonial-content {
    background: #fffaf5;
    border: 1px solid #dfb99f;
    border-radius: 20px;
    box-shadow: 0 20px 36px rgba(24, 9, 4, 0.1);
}

.home .testimonial-avatar {
    border-color: #f3c39a;
    box-shadow: 0 8px 24px rgba(31, 11, 4, 0.16);
}

.home .testimonial-text {
    font-style: normal;
    color: #584537;
}

.home #testimonials .carousel-indicators button {
    width: 26px;
    height: 6px;
    border-radius: 999px;
    border: 0;
    opacity: 0.45;
    background: #a64a26;
}

.home #testimonials .carousel-indicators .active {
    opacity: 1;
    width: 42px;
}

@media (max-width: 991px) {
    .home .events-board {
        border-radius: 16px;
    }

    .home .section-title {
        font-size: clamp(1.7rem, 6vw, 2.4rem);
    }

    .home .testimonial-content {
        padding: 2.2rem 1.2rem;
    }
}

@media (max-width: 576px) {
    .home .hero-title {
        font-size: clamp(2rem, 12vw, 2.8rem);
    }

    .home .events-board {
        border-radius: 14px;
    }

    .home .menu-card {
        box-shadow: 0 10px 22px rgba(33, 12, 5, 0.16);
    }

    .home .branch-card {
        border-radius: 14px;
    }

    .home .testimonial-content {
        border-radius: 16px;
    }
}

/* .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 24px;
    }
    .feature-item:last-child { margin-bottom: 0; } */
