:root {
    --bbq-accent: #fb8f2c;
    --bbq-accent-soft: #fffcec;
    --bbq-bg-main: #0b1214;
    --bbq-bg-section: #0e1c21;
    --bbq-text: #ffffff;
    --bbq-text-muted: rgba(255, 255, 255, 0.85);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Mulish", sans-serif;
    color: var(--bbq-text-muted);
    background: var(--bbq-bg-main);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-font {
    font-family: "Libre Baskerville", serif;
    color: var(--bbq-text);
}

section {
    padding: 5.5rem 0;
}

.bg-grid {
    background: radial-gradient(circle at 20% 20%, rgba(251, 143, 44, 0.16) 0%, rgba(14, 28, 33, 0.04) 28%, transparent 58%),
        radial-gradient(circle at 82% 8%, rgba(251, 143, 44, 0.12) 0%, transparent 42%),
        linear-gradient(180deg, #111a1d 0%, #0b1214 60%);
}

.navbar-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1040;
    background: transparent;
    border-bottom: 0;
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.navbar-wrap.navbar-scrolled {
    background: rgba(7, 14, 18, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.navbar-brand img {
    width: 132px;
    height: 132px;
}

.nav-link {
    color: var(--bbq-text-muted);
    font-weight: 600;
    font-size: 1.08rem;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--bbq-accent-soft);
}

.btn-bbq {
    background: var(--bbq-accent);
    color: #0b1214;
    font-weight: 700;
    border: 0;
    border-radius: 4px;
    padding: 0.9rem 1.6rem;
}

.btn-bbq:hover {
    background: var(--bbq-accent-soft);
    color: #0b1214;
}

.btn-header-light {
    background: #ffffff;
    color: #0b1214;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    border: 0;
    padding: 0.88rem 1.7rem;
}

.btn-header-light:hover {
    background: #f4f4f4;
    color: #0b1214;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
}

.hero-banner {
    position: relative;
    background-image: linear-gradient(rgba(4, 10, 14, 0.8), rgba(4, 10, 14, 0.74)), url("/images/Background.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero h1 {
    font-size: clamp(1.15rem, 2.6vw, 2.2rem);
    line-height: 1.12;
}

.hero-title-line {
    display: block;
    width: 0;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 0.04em;
    animation-duration: 12s;
    animation-timing-function: steps(24, end);
    animation-iteration-count: infinite;
    animation-fill-mode: both;
}

.hero-title-line + .hero-title-line {
    margin-top: 0.28em;
}

.hero-title-line-1 {
    --typed-width: 19ch;
    animation-name: typing-line-1;
}

.hero-title-line-2 {
    --typed-width: 19ch;
    animation-name: typing-line-2;
}

.hero-content {
    max-width: 980px;
    margin: 0 auto;
}

.hero-center-logo {
    width: min(360px, 72vw);
    height: auto;
    display: block;
    margin: 0 auto 1.6rem;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.55));
}

.hero .hero-tagline {
    max-width: 900px;
    margin: 1.3rem auto 0;
    font-size: clamp(1.1rem, 2vw, 2rem);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.55);
}

.hero p {
    max-width: 620px;
    font-size: 1.05rem;
    margin: 1.3rem 0 2.2rem;
}

.feature-card {
    background: rgba(10, 20, 25, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    height: 100%;
}

.feature-card h6 {
    margin-bottom: 0.5rem;
}

.feature-card p {
    margin-bottom: 0;
}

.separator-wrap {
    padding: 0.2rem 0;
}

.separator-line {
    width: 100%;
    opacity: 0.92;
    display: block;
}

.separator-line.narrow {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

#about {
    background: linear-gradient(90deg, rgba(66, 43, 18, 0.35) 0%, rgba(6, 19, 27, 0.98) 33%, rgba(8, 17, 23, 1) 100%);
    padding-top: 6.6rem;
    padding-bottom: 6.2rem;
}

.about-mirror-wrap {
    padding-top: 0.5rem;
}

.about-visual {
    position: relative;
    min-height: 610px;
    padding-left: 162px;
}

.about-main-image {
    width: 100%;
    max-width: 650px;
    height: 510px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: block;
    object-fit: cover;
}

.feature-floating {
    position: relative;
    width: 270px;
    min-height: 145px;
    z-index: 3;
    background: #081d28;
    border-color: rgba(255, 255, 255, 0.14);
}

.feature-stack {
    position: absolute;
    left: 0;
    top: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 4;
}

.feature-floating img {
    width: 28px;
    height: 28px;
    margin-right: 10px;
    margin-bottom: 0;
    vertical-align: middle;
}

.feature-floating h6 {
    display: inline-block;
    margin-bottom: 0.4rem;
    font-size: 1.7rem;
}

.feature-floating p {
    padding-left: 38px;
    margin-bottom: 0;
    font-size: 0.88rem;
}

.feature-3 {
    min-height: 156px;
    align-self: flex-start;
}

.feature-card img {
    width: 2.6rem;
    height: 2.6rem;
    margin-bottom: 1rem;
}

.section-tag {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--bbq-accent);
    font-weight: 700;
}

#about .section-tag {
    font-size: 0.9rem;
}

#about h2 {
    font-size: clamp(2rem, 3.1vw, 2.6rem);
}

#about .col-xl-5 p {
    font-size: 1.14rem;
    line-height: 1.7;
}

.info-box {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 1rem;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
}

.info-box .number {
    color: var(--bbq-accent);
    font-weight: 700;
}

.dish-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    background: #121b1f;
    height: 100%;
}

.dish-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.dish-card .dish-body {
    padding: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 78px;
}

.dish-card .dish-body h6 {
    font-size: 1.12rem;
}

.dish-card .dish-body strong {
    font-size: 1.12rem;
}

.menu-categories-section {
    padding-top: 1.3rem;
}

.menu-categories-head {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.menu-categories-head p {
    color: rgba(255, 255, 255, 0.78);
}

.menu-category-tabs {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.menu-category-tab {
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    transition: color 0.22s ease, background-color 0.22s ease;
}

.menu-category-tab:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.menu-category-tab .menu-tab-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.menu-category-tab.active {
    color: var(--bbq-accent);
    background: rgba(251, 143, 44, 0.08);
}

.menu-category-tab.active .menu-tab-icon {
    color: var(--bbq-accent);
    border-color: rgba(251, 143, 44, 0.4);
    background: rgba(251, 143, 44, 0.14);
}

.menu-category-panel {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.menu-category-panel.active {
    opacity: 1;
    transform: translateY(0);
}

.menu-list-card {
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    padding: 0.72rem;
    display: flex;
    gap: 0.75rem;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
}

.menu-list-card img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.menu-list-card h5 {
    margin-bottom: 0.4rem;
    font-size: 1.15rem;
}

.menu-list-card p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.36;
    font-size: 0.9rem;
}

.menu-list-card strong {
    color: var(--bbq-accent);
    font-size: 1.18rem;
}

.events-section {
    padding-top: 2.5rem;
}

.events-section p {
    color: rgba(255, 255, 255, 0.78);
}

.event-controls {
    display: inline-flex;
    gap: 0.55rem;
}

.event-control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.event-control-btn:hover {
    background: rgba(251, 143, 44, 0.16);
    border-color: rgba(251, 143, 44, 0.55);
    color: var(--bbq-accent);
}

.events-slider-viewport {
    overflow: hidden;
}

.events-slider-track {
    display: flex;
    gap: 1.2rem;
    will-change: transform;
}

.event-card {
    position: relative;
    flex: 0 0 calc((100% - 2.4rem) / 3);
    min-height: 320px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: #0f1a1e;
    transform: scale(0.985);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.event-card.is-active {
    transform: scale(1);
    border-color: rgba(251, 143, 44, 0.52);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(7, 16, 20, 0.08) 16%, rgba(7, 16, 20, 0.9) 100%);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.26s ease, transform 0.26s ease;
}

.event-overlay h5 {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 1.1rem;
}

.event-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.event-card:hover .event-overlay,
.event-card:focus-within .event-overlay {
    opacity: 1;
    transform: translateY(0);
}

.testimonial {
    border-left: 4px solid var(--bbq-accent);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 1.5rem;
}

.testimonial-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.22);
}

.points li {
    margin-bottom: 0.7rem;
}

.points li::marker {
    color: var(--bbq-accent);
}

.cta {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: linear-gradient(110deg, rgba(14, 28, 33, 0.95), rgba(11, 18, 20, 0.9));
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 10%, rgba(251, 143, 44, 0.22) 0, transparent 38%);
    pointer-events: none;
}

.reserve-actions {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 1.5rem;
}

.reserve-social-links {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.reserve-social-links a {
    width: 168px;
    height: 168px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.reserve-social-links a:hover {
    transform: translateY(-2px);
    background: rgba(251, 143, 44, 0.14);
    border-color: rgba(251, 143, 44, 0.45);
}

.reserve-social-links img {
    width: 112px;
    height: 112px;
    object-fit: contain;
}

.why-image {
    border: 1px solid rgba(255, 255, 255, 0.12);
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.2rem 0 3rem;
    background: #0b1214;
}

.footer-contact-block {
    padding-bottom: 2rem;
    margin-bottom: 1.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-panel {
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
}

.footer-contact-panel p {
    color: rgba(255, 255, 255, 0.74);
}

.footer-contact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.footer-info-box {
    min-height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.footer-map-wrap {
    height: 100%;
    min-height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
}

.footer-map-head {
    margin-bottom: 0.9rem;
}

.footer-map-head span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.95rem;
}

.footer-map-link {
    padding: 0.7rem 1.1rem;
}

.footer-map-frame {
    overflow: hidden;
    border-radius: 10px;
    min-height: 330px;
    height: calc(100% - 66px);
    background: rgba(255, 255, 255, 0.04);
}

.footer-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.footer-top {
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links-title {
    color: #ffffff;
    font-weight: 700;
}

.footer-links a {
    color: var(--bbq-text-muted);
    text-decoration: none;
    margin: 0 0.65rem;
}

.footer-links a:hover {
    color: var(--bbq-accent);
}

footer .social a {
    color: var(--bbq-text-muted);
    margin-left: 1rem;
    text-decoration: none;
}

footer .social a:hover {
    color: var(--bbq-accent);
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    animation: reveal 0.85s ease forwards;
}

.reveal-delay-1 {
    animation-delay: 0.12s;
}

.reveal-delay-2 {
    animation-delay: 0.24s;
}

.reveal-delay-3 {
    animation-delay: 0.36s;
}

@keyframes reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typing-line-1 {
    0%, 6% {
        width: 0;
    }

    24%, 58% {
        width: var(--typed-width);
    }

    82%, 100% {
        width: 0;
    }
}

@keyframes typing-line-2 {
    0%, 30% {
        width: 0;
    }

    50%, 66% {
        width: var(--typed-width);
    }

    84%, 100% {
        width: 0;
    }
}

@media (max-width: 992px) {
    .navbar-wrap {
        background: rgba(7, 14, 18, 0.95);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
    }

    .navbar-brand img {
        width: 90px;
        height: 90px;
    }

    .navbar-collapse {
        margin-top: 0.75rem;
        padding: 0.9rem;
        border-radius: 10px;
        background: rgba(10, 20, 25, 0.97);
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .navbar-wrap .btn-header-light {
        margin-top: 0.8rem;
        width: 100%;
        text-align: center;
    }

    .hero {
        min-height: 92vh;
        padding-top: 5.6rem;
    }

    .hero-center-logo {
        width: min(300px, 70vw);
        margin-bottom: 1.2rem;
    }

    .hero p {
        font-size: 1.15rem;
    }

    .nav-link {
        font-size: 1rem;
    }

    section {
        padding: 4rem 0;
    }

    .about-visual {
        min-height: auto;
        padding-left: 0;
    }

    .about-main-image {
        max-width: none;
        height: auto;
    }

    .feature-floating {
        position: static;
        width: 100%;
        margin-bottom: 1rem;
    }

    .feature-stack {
        position: static;
        gap: 12px;
        margin-top: 1rem;
    }

    .feature-3 {
        width: 100%;
        min-height: 0;
    }

    .feature-floating p {
        padding-left: 0;
    }

    .menu-list-card h5 {
        font-size: 1.3rem;
    }

    .event-card {
        flex-basis: calc((100% - 1.2rem) / 2);
    }

    .footer-contact-list {
        grid-template-columns: 1fr;
    }

    .footer-map-frame {
        min-height: 280px;
        height: 280px;
    }

    .footer-links a {
        display: inline-block;
        margin-top: 0.4rem;
    }

    .reserve-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        width: 74px;
        height: 74px;
    }

    .btn-bbq {
        width: 100%;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero h1 {
        font-size: clamp(1rem, 5.2vw, 1.55rem);
    }

    .hero-center-logo {
        width: min(240px, 74vw);
    }

    .hero .hero-tagline {
        font-size: 1.08rem;
    }

    .menu-category-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .menu-category-tab {
        justify-content: center;
    }

    .menu-list-card {
        flex-direction: column;
    }

    .menu-list-card img {
        width: 100%;
        height: 180px;
    }

    .event-card {
        flex-basis: 100%;
        min-height: 330px;
    }

    .event-controls {
        width: 100%;
        justify-content: flex-start;
    }

    .reserve-actions {
        width: 100%;
    }

    .reserve-social-links {
        width: 100%;
        justify-content: flex-start;
    }

    .reserve-social-links a {
        width: 124px;
        height: 124px;
    }

    .reserve-social-links img {
        width: 84px;
        height: 84px;
    }

    .footer-map-link {
        width: 100%;
    }

    .footer-map-frame {
        min-height: 240px;
        height: 240px;
    }

    footer .social a {
        margin-left: 0;
        margin-right: 1rem;
        display: inline-block;
        margin-top: 0.8rem;
    }
}
