:root {
    --primary-color: #c84214;
    --primary-dark: #9e3009;
    --secondary-color: #1f1812;
    --accent-gold: #d49733;
    --accent-gold-light: #fdf8ee;
    --light-bg: #f9f6f0;
    --card-bg: #ffffff;
    --text-dark: #26201b;
    --text-muted: #6f6861;
    --border-color: #ebdcd0;
    --shadow-soft: 0 12px 35px rgba(31, 24, 18, 0.07);
    --shadow-hover: 0 20px 45px rgba(200, 66, 20, 0.18);
    --radius-lg: 20px;
    --radius-md: 14px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

/* Top bar */
.top-bar {
    background: #150f0a;
    font-size: 0.85rem;
    color: #c5b9ae;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.2s;
}
.top-bar a:hover {
    color: #fff;
}

/* Navbar */
.navbar-bereket {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
}
.navbar-brand-custom {
    font-weight: 800;
    font-size: 1.55rem;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar-brand-custom span.badge-num {
    background: linear-gradient(135deg, var(--primary-color), #ea6229);
    color: #fff;
    padding: 3px 9px;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 900;
}
.nav-link-custom {
    font-weight: 600;
    font-size: 0.94rem;
    color: var(--text-dark) !important;
    padding: 0.5rem 0.85rem !important;
    transition: all 0.2s;
    border-radius: 8px;
    white-space: nowrap;
}
.nav-link-custom:hover, .nav-link-custom.active {
    color: var(--primary-color) !important;
    background: var(--accent-gold-light);
}

/* Buttons */
.btn-bereket {
    background: linear-gradient(135deg, var(--primary-color), #e25822);
    color: #fff !important;
    font-weight: 700;
    border-radius: 25px;
    padding: 8px 18px;
    border: none;
    box-shadow: 0 4px 14px rgba(200, 66, 20, 0.25);
    transition: all 0.25s;
    font-size: 0.9rem;
    white-space: nowrap;
}
.btn-bereket:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 66, 20, 0.38);
    color: #fff;
}
.btn-outline-bereket {
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 25px;
    padding: 7px 16px;
    background: transparent;
    transition: all 0.25s;
    font-size: 0.9rem;
    white-space: nowrap;
}
.btn-outline-bereket:hover {
    background: var(--primary-color);
    color: #fff !important;
    transform: translateY(-2px);
}

/* Hero Section (Atmospheric Visual Focus) */
.hero-visual {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(18, 12, 8, 0.72), rgba(28, 19, 13, 0.88)), url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1920&q=85') center/cover no-repeat fixed;
    color: #fff;
    padding: 100px 0 120px;
    border-radius: 0 0 45px 45px;
}
.hero-tagline {
    font-size: 0.95rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--accent-gold);
    display: inline-block;
    background: rgba(212, 151, 51, 0.15);
    padding: 6px 18px;
    border-radius: 30px;
    border: 1px solid rgba(212, 151, 51, 0.35);
}
.hero-visual-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.2px;
}
.hero-visual-title span {
    color: var(--accent-gold);
}

/* Feature Showcase Cards (Storytelling) */
.story-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: var(--shadow-soft);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.story-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(200, 66, 20, 0.3);
}
.story-card-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.story-card:hover .story-card-img {
    transform: scale(1.06);
}

/* Gallery Grid (Visual Excellence) */
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 290px;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 14, 9, 0.85) 0%, rgba(20, 14, 9, 0.2) 60%, transparent 100%);
    opacity: 0.9;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #fff;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Experience Stats */
.stat-box {
    background: #fff;
    border: 1px solid #ebdcd0;
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s;
}
.stat-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(200, 66, 20, 0.1);
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 6px;
}

/* Minimalist Menu Row (Background Focus) */
.menu-mini-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.2s;
}
.menu-mini-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.menu-mini-img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Day selector pills for Tabildot */
.day-pill {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 8px 18px;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}
.day-pill:hover, .day-pill.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(200, 66, 20, 0.3);
}

/* Toast alert notification */
.b42-toast {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    min-width: 320px;
    max-width: 420px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    border-radius: 12px;
}

/* Footer */
.footer-bereket {
    background: #140e09;
    color: #a39990;
    padding: 70px 0 25px;
    font-size: 0.95rem;
}
.footer-bereket h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
}
.footer-bereket h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 35px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}
.footer-bereket a {
    color: #a39990;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bereket a:hover {
    color: var(--accent-gold);
}