@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #111111;
    --accent: #E2B764;
    --light: #FAFAFA;
    --gray: #888888;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.2;
}

h2 { font-size: 3rem; margin-bottom: 1rem; }
p { font-size: 1.1rem; color: var(--gray); margin-bottom: 1.5rem; }

/* ------------------- GLOBAL NAVBAR ------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #ffffff; /* Forced pure white */
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.nav-brand img { height: 45px; display: block; }

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    flex: 1; 
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent);
    bottom: -5px;
    left: 0;
    transition: 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

.lang-toggle {
    display: flex;
    background: #f0f0f0;
    border-radius: 30px;
    padding: 3px;
    gap: 0;
    margin: 0;
}

.lang-btn {
    border: none;
    background: transparent;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: none;
    transition: 0.3s;
    font-family: var(--font-body);
    color: var(--gray);
}

.lang-btn.active {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: var(--primary);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    transition: 0.3s;
    color: var(--primary);
}

/* ------------------- BUTTONS & SECTIONS ------------------- */
.btn-primary {
    display: inline-block;
    background-color: var(--accent);
    color: var(--primary);
    padding: 15px 35px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent);
    transform: translateY(-3px);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('../img/menu img/LeDej_LeBrisketBurger Large.jpeg') center/cover no-repeat;
    padding: 0 20px;
}
.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(17, 17, 17, 0.6); }
.hero-content { position: relative; z-index: 1; max-width: 800px; animation: fadeUp 1s ease forwards; }
.hero h1 { font-size: 5rem; color: var(--light); margin-bottom: 20px; letter-spacing: 2px; }
.hero p { color: #e0e0e0; font-size: 1.3rem; margin-bottom: 40px; font-weight: 400; }

.concept { padding: 100px 5%; display: flex; align-items: center; gap: 60px; background: #fff; }
.concept-text { flex: 1; }
.concept-text h2 { font-size: 3.5rem; }
.concept-text p { font-size: 1.15rem; }
.concept-image { flex: 1; border-radius: 20px; overflow: hidden; position: relative; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.concept-image img { width: 100%; height: auto; display: block; transform: scale(1.05); transition: transform 0.5s ease; }
.concept-image:hover img { transform: scale(1); }

.featured { padding: 100px 5%; background: var(--light); text-align: center; }
.featured .section-header { max-width: 600px; margin: 0 auto 60px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.card { background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s ease; text-align: left; }
.card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.card-img { height: 250px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img img { transform: scale(1.1); }
.card-content { padding: 25px; }
.card-content h3 { font-family: var(--font-body); font-size: 1.4rem; margin-bottom: 10px; font-weight: 700; }
.card-content p { font-size: 0.95rem; margin-bottom: 0; }

.location { padding: 100px 5%; background: var(--primary); color: #fff; display: flex; align-items: center; gap: 60px; }
.location-text { flex: 1; }
.location-text h2 { color: var(--accent); }
.location-text p, .location-text h4 { color: #ccc; font-family: var(--font-body); }
.location-text h4 { font-size: 1.2rem; margin-top: 30px; margin-bottom: 5px; color: #fff; }

/* ------------------- ADVANCED FOOTER ------------------- */
footer {
    background: var(--primary);
    color: var(--gray);
    padding: 70px 5% 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand img {
    width: 140px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 0;
}

.footer-links h4, .footer-social h4 {
    color: var(--light);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--accent);
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
}

.footer-social .social-icons a {
    background: #222;
    color: var(--light);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social .social-icons a:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

/* Animations */
@keyframes fadeUp { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }

/* ------------------- RESPONSIVE ------------------- */
@media (max-width: 900px) {
    .navbar {
        padding: 15px 5%;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active i::before {
        content: "\f00d"; 
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.3rem;
    }

    .concept, .location { flex-direction: column; text-align: center; }
    .hero h1 { font-size: 3.5rem; }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-brand {
        align-items: center;
    }

    .footer-social .social-icons {
        justify-content: center;
    }
}