/* ============================================================
   Lazjan Restaurant Frankfurt – Custom Theme
   Basiert auf dem "Feliciano" Template (Colorlib), modernisiert.
   Akzent: Gold #c8a97e · Fonts: Poppins + Great Vibes
   ============================================================ */

:root {
    --gold: #c8a97e;
    --gold-dark: #b08d5b;
    --dark: #1a1a1a;
    --dark-2: #232323;
    --body: #4a4a4a;
    --muted: #8a8a8a;
    --light-bg: #f7f4ef;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, .08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, .15);
    --radius: 14px;
}

* { scroll-behavior: smooth; }

body {
    font-family: "Poppins", system-ui, Arial, sans-serif;
    color: var(--body);
    font-weight: 300;
    line-height: 1.8;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
    color: var(--dark);
    font-weight: 600;
}

a { color: var(--gold); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--gold-dark); }

.text-gold { color: var(--gold) !important; }
.bg-light-cream { background: var(--light-bg); }

/* Script Subheading (Great Vibes) */
.subheading {
    font-family: "Great Vibes", cursive;
    color: var(--gold);
    font-size: 2.2rem;
    line-height: 1;
    display: block;
    margin-bottom: .25rem;
}

.section-heading h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

/* ---------- Buttons ---------- */
.btn {
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: .3px;
    padding: .7rem 1.6rem;
    transition: all .3s ease;
}
.btn-gold {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: #fff;
}
.btn-gold:hover {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-outline-gold {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: #fff;
}
.btn-outline-light:hover { color: var(--dark); }

/* ---------- Top bar ---------- */
.topbar {
    background: #111;
    color: #cfcfcf;
}
.topbar a { color: #cfcfcf; }
.topbar-inner { gap: 1rem; }
.topbar-hours { white-space: nowrap; }

/* ---------- Navbar ---------- */
.main-nav {
    background: var(--dark);
    padding: 1rem 0;
    box-shadow: 0 2px 14px rgba(0,0,0,.25);
}
.navbar-brand {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    letter-spacing: .5px;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    gap: .65rem;
}
.brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    padding: 3px;
}
.main-nav .nav-link {
    color: rgba(255,255,255,.85) !important;
    font-size: .95rem;
    font-weight: 400;
    padding: .5rem 1rem !important;
    position: relative;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active { color: var(--gold) !important; }
.main-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 1rem; right: 1rem; bottom: .2rem;
    height: 2px; background: var(--gold);
}
.lang-switch { font-size: .9rem; }
.lang-switch a { color: rgba(255,255,255,.7); padding: 0 .25rem; font-weight: 500; }
.lang-switch a.active { color: var(--gold); }
.lang-switch .sep { color: rgba(255,255,255,.3); }

/* ---------- Hero / Slider ---------- */
.hero {
    position: relative;
    min-height: clamp(430px, 58vh, 620px);
    display: flex;
    align-items: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.36), rgba(0,0,0,.58));
}
.hero.p-0::before { content: none; }
.hero .container { position: relative; z-index: 2; }
.hero .subheading { font-size: 2.7rem; color: var(--gold); }
.hero h1 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.hero p.lead { font-size: 1.15rem; font-weight: 300; max-width: 620px; }

/* Hero carousel fade */
#heroCarousel .carousel-item {
    min-height: clamp(430px, 58vh, 620px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ---------- Highlights ---------- */
.highlight-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2.4rem 1.6rem;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease;
    border-bottom: 3px solid transparent;
}
.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--gold);
}
.highlight-card .icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--light-bg);
    color: var(--gold);
    font-size: 2rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem;
    transition: all .3s ease;
}
.highlight-card:hover .icon { background: var(--gold); color: #fff; }
.highlight-card h3 { font-size: 1.2rem; }

/* ---------- About ---------- */
.about-img {
    border-radius: var(--radius);
    min-height: 240px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}
.about-img.tall { min-height: 360px; }

/* ---------- Featured strip ---------- */
.featured-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    color: #fff;
}
.featured-card::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.8));
}
.featured-card .caption { position: relative; z-index: 2; padding: 1.4rem; }
.featured-card .caption h3 { color: #fff; font-size: 1.1rem; margin: 0; }

/* ---------- Menu cards ---------- */
.menu-filter { margin-bottom: 2.5rem; }
.menu-filter .btn {
    margin: .2rem;
    border-radius: 30px;
    border: 1px solid #ddd;
    background: #fff;
    color: var(--body);
    font-size: .9rem;
}
.menu-filter .btn.active,
.menu-filter .btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.dish-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dish-card .dish-img {
    height: 210px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.dish-card .dish-labels {
    position: absolute;
    top: .7rem; left: .7rem;
    display: flex; flex-wrap: wrap; gap: .35rem;
}
.dish-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.dish-head { display: flex; justify-content: space-between; align-items: baseline; gap: .5rem; }
.dish-body h3 { font-size: 1.15rem; margin: 0; }
.dish-price { color: var(--gold); font-weight: 700; font-size: 1.15rem; white-space: nowrap; }
.dish-desc { font-size: .9rem; color: var(--muted); margin-top: .5rem; flex-grow: 1; }

/* Label badges */
.badge-label {
    font-size: .68rem;
    font-weight: 500;
    padding: .3em .6em;
    border-radius: 30px;
    color: #fff;
    letter-spacing: .3px;
}
.badge-halal { background: #2e7d32; }
.badge-vegan { background: #558b2f; }
.badge-vegetarian { background: #00897b; }
.badge-spicy { background: #d84315; }
.dish-body .badge-label { color:#fff; }

/* ---------- Reservation ---------- */
.reservation-wrap {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
}
.form-control, .form-select {
    border-radius: 6px;
    padding: .7rem .9rem;
    border: 1px solid #e0ddd6;
}
.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 .2rem rgba(200,169,126,.2);
}
.form-label { font-weight: 500; color: var(--dark); font-size: .9rem; }

.reservation-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.reservation-banner::before { content:""; position:absolute; inset:0; background: rgba(0,0,0,.5); }
.reservation-banner .container { position: relative; z-index: 2; }

/* ---------- Page header ---------- */
.page-hero {
    position: relative;
    min-height: 340px;
    display: flex; align-items: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}
.page-hero::before { content:""; position:absolute; inset:0; background: rgba(0,0,0,.46); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: 2.8rem; }

/* ---------- Gallery ---------- */
.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    position: relative;
    aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
    content: "\F52A";
    font-family: "bootstrap-icons";
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.8rem;
    background: rgba(0,0,0,.35);
    opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* ---------- Contact ---------- */
.contact-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    height: 100%;
}
.contact-icon {
    width: 54px; height: 54px; border-radius: 50%;
    background: var(--light-bg); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 1rem;
}
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--dark);
    color: #b5b5b5;
    padding: 4.5rem 0 0;
    font-size: .92rem;
}
.footer-brand { color: #fff; font-size: 1.6rem; font-weight: 700; }
.footer-text { color: #9a9a9a; }
.footer-heading { color: #fff; font-size: 1.05rem; margin-bottom: 1.2rem; }
.footer-links, .footer-hours, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: #b5b5b5; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-hours li { display: flex; justify-content: space-between; padding: .3rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-contact li { margin-bottom: .7rem; }
.footer-contact i { color: var(--gold); margin-right: .5rem; }
.footer-contact a { color: #b5b5b5; }
.footer-social a {
    display: inline-flex; width: 40px; height: 40px;
    align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(255,255,255,.08);
    color: #fff; margin-right: .5rem; transition: all .3s ease;
}
.footer-social a:hover { background: var(--gold); }
.footer-bottom {
    margin-top: 3rem; padding: 1.4rem 0;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #8a8a8a; font-size: .85rem;
}

/* ---------- Back to top ---------- */
.back-to-top {
    position: fixed; right: 22px; bottom: 22px;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--gold); color: #fff;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity .3s ease, transform .3s ease;
    z-index: 999;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { color: #fff; transform: translateY(-3px); }

/* ---------- Animations ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .main-nav .nav-link.active::after { display: none; }
    .lang-switch { margin-top: .5rem; }
    .hero,
    #heroCarousel .carousel-item { min-height: 520px; }
    .hero h1 { font-size: 2.2rem; }
    .hero .subheading { font-size: 2.4rem; }
    .section { padding: 4rem 0; }
}
@media (max-width: 575.98px) {
    .row.g-5 { --bs-gutter-x: 1.5rem; }
    .hero,
    #heroCarousel .carousel-item { min-height: 440px; }
    .hero h1 { font-size: 1.8rem; }
    .section-heading h2 { font-size: 1.9rem; }
    .reservation-wrap { padding: 1.5rem; }
}
