/* Landing page — minimal, scoped to .landing-page */

.landing-page {
    --lp-black: #000000;
    --lp-gold: #a67b30;
    --lp-rust: #ae3b1a;
    --lp-white: #ffffff;
    --lp-muted: rgba(255, 255, 255, 0.62);
    --lp-border: rgba(166, 123, 48, 0.28);
    --lp-surface: #0d0d0d;

    background: var(--lp-black);
    color: var(--lp-white);
    font-family: "Poppins", sans-serif;
}

.landing-page * {
    box-sizing: border-box;
}

/* Header */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.92);
    border-bottom: 1px solid var(--lp-border);
    backdrop-filter: blur(8px);
}

.landing-header .navbar {
    padding: 1rem 0;
}

.landing-header .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.landing-header .navbar-brand img {
    height: 36px;
    width: auto;
}

.landing-header .brand-text {
    color: var(--lp-white);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.landing-header .nav-link {
    color: var(--lp-muted) !important;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.5rem 1rem !important;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.landing-header .nav-link:hover,
.landing-header .nav-link.active {
    color: var(--lp-gold) !important;
}

.landing-header .btn-landing-order {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.25rem;
    background: var(--lp-rust);
    color: var(--lp-white) !important;
    border-radius: 2px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: background 0.2s ease;
}

.landing-header .btn-landing-order:hover {
    background: #8f3216;
    color: var(--lp-white) !important;
}

.landing-header .navbar-toggler {
    border-color: var(--lp-border);
}

.landing-header .navbar-toggler-icon {
    filter: invert(1);
}

/* Hero */
.landing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 5rem;
    overflow: hidden;
    border-bottom: 1px solid var(--lp-border);
}

.landing-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.landing-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    /* --- PREVIOUS (original) ---
    object-position: unset;
    filter: none;
    transform: none;
    */

    /* --- NEW (food highlight) --- */
    object-position: center 50%;
    filter: brightness(1.1) contrast(1.15) saturate(1.25);
    transform: scale(1.04);
}

.landing-hero-overlay {
    position: absolute;
    inset: 0;

    /* --- PREVIOUS (original) ---
    background:
        linear-gradient(105deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.25) 100%),
        linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 45%);
    */

    /* --- NEW (food highlight) --- */
    background:
        linear-gradient(
            105deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.55) 38%,
            rgba(0, 0, 0, 0.12) 68%,
            rgba(0, 0, 0, 0.05) 100%
        ),
        linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 40%),
        radial-gradient(
            ellipse 55% 70% at 72% 48%,
            transparent 0%,
            rgba(0, 0, 0, 0.15) 100%
        );
}

.landing-hero .container {
    position: relative;
    z-index: 1;
}

.landing-hero-content {
    max-width: 620px;
}

.landing-hero .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--lp-gold);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.landing-hero .hero-label::before {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background: var(--lp-gold);
}

.landing-hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.25rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--lp-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.landing-hero h1 .hero-accent {
    color: var(--lp-gold);
    font-weight: 600;
}

.landing-hero .hero-lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 2.25rem;
    max-width: 480px;
}

.landing-hero .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.landing-hero .hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 1.25rem 0 0;
    border-top: 1px solid rgba(166, 123, 48, 0.35);
}

.landing-hero .hero-meta li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.04em;
}

.landing-hero .hero-meta i {
    color: var(--lp-gold);
    font-size: 0.75rem;
}

.landing-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-radius: 2px;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.landing-btn-primary {
    background: var(--lp-rust);
    color: var(--lp-white);
    border: 1px solid var(--lp-rust);
}

.landing-btn-primary:hover {
    background: #8f3216;
    border-color: #8f3216;
    color: var(--lp-white);
}

.landing-btn-outline {
    background: transparent;
    color: var(--lp-gold);
    border: 1px solid var(--lp-gold);
}

.landing-btn-outline:hover {
    background: var(--lp-gold);
    color: var(--lp-black);
}

.landing-hero .hero-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border: 1px solid var(--lp-border);
}

/* Sections */
.landing-section {
    padding: 5.5rem 0;
}

.landing-section-alt {
    background: var(--lp-surface);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}

.landing-section-header {
    margin-bottom: 3rem;
}

.landing-section-header.centered {
    text-align: center;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.landing-section-label {
    display: block;
    color: var(--lp-gold);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.landing-section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 600;
    color: var(--lp-white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.landing-section-header p {
    color: var(--lp-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* About */
.landing-about-text p {
    color: var(--lp-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

/* Highlights */
.landing-highlight {
    padding: 2rem 1.5rem;
    border: 1px solid var(--lp-border);
    height: 100%;
}

.landing-highlight .icon {
    color: var(--lp-gold);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.landing-highlight h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--lp-white);
    margin-bottom: 0.6rem;
}

.landing-highlight p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--lp-muted);
    margin: 0;
}

/* Menu cards */
.landing-menu-card {
    border: 1px solid var(--lp-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease;
}

.landing-menu-card:hover {
    border-color: var(--lp-gold);
}

.landing-menu-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.landing-menu-card .card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.landing-menu-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--lp-white);
    margin-bottom: 0.4rem;
}

.landing-menu-card p {
    font-size: 0.85rem;
    color: var(--lp-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.landing-menu-card .price {
    color: var(--lp-gold);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Info */
.landing-info-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--lp-border);
}

.landing-info-item:first-child {
    padding-top: 0;
}

.landing-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.landing-info-item .label {
    display: block;
    color: var(--lp-gold);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.landing-info-item .value {
    color: var(--lp-white);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.landing-info-item a {
    color: var(--lp-white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.landing-info-item a:hover {
    color: var(--lp-gold);
}

.opening-hours {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.opening-hours li {
    display: grid;
    grid-template-columns: minmax(5.5rem, 7.5rem) 1fr;
    gap: 0.75rem 1rem;
    align-items: start;
    color: var(--lp-white);
    font-size: 0.92rem;
    line-height: 1.45;
}

.opening-hours .day {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
}

.opening-hours .time {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: left;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.01em;
}

.opening-hours .is-closed .time {
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
}

.opening-hours-note {
    margin: 0.9rem 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    line-height: 1.5;
}

@media (max-width: 575px) {
    .opening-hours li {
        grid-template-columns: 1fr;
        gap: 0.2rem;
        padding-bottom: 0.65rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .opening-hours li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .opening-hours .day {
        font-size: 0.78rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--lp-gold);
    }
}

/* Testimonials */
.landing-quote {
    padding: 2rem;
    border: 1px solid var(--lp-border);
    height: 100%;
}

.landing-quote p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--lp-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.landing-quote .author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lp-white);
}

.landing-quote .role {
    font-size: 0.8rem;
    color: var(--lp-gold);
    margin-top: 0.2rem;
}

/* CTA */
.landing-cta {
    padding: 5rem 0;
    text-align: center;
    border-top: 1px solid var(--lp-border);
}

.landing-cta h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--lp-white);
    margin-bottom: 0.75rem;
}

.landing-cta p {
    color: var(--lp-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.landing-cta .hero-actions {
    justify-content: center;
}

/* Divider */
.landing-divider {
    width: 48px;
    height: 1px;
    background: var(--lp-gold);
    margin-bottom: 1.5rem;
}

.landing-section-header.centered .landing-divider {
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 991px) {
    .landing-hero {
        padding-top: 7rem;
        min-height: 92vh;
    }

    /* --- PREVIOUS (original) mobile overlay only ---
    .landing-hero-overlay {
        background:
            linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.82) 55%, rgba(0, 0, 0, 0.95) 100%);
    }
    */

    /* --- NEW (food highlight) mobile --- */
    .landing-hero-video {
        filter: brightness(1.08) contrast(1.12) saturate(1.2);
        transform: scale(1.06);
        object-position: center center;
    }

    .landing-hero-overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.35) 0%,
                rgba(0, 0, 0, 0.45) 40%,
                rgba(0, 0, 0, 0.88) 100%
            ),
            radial-gradient(
                ellipse 80% 55% at 50% 28%,
                transparent 0%,
                rgba(0, 0, 0, 0.2) 100%
            );
    }

    .landing-hero-content {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .landing-section {
        padding: 4rem 0;
    }

    .landing-header .brand-text {
        font-size: 0.9rem;
    }

    .landing-hero h1 {
        font-size: clamp(2.2rem, 9vw, 3rem);
    }

    .landing-hero .hero-actions {
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .landing-hero .hero-meta {
        gap: 1rem;
    }

    .landing-btn {
        justify-content: center;
        width: 100%;
    }
}
