*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --bg:      #0e0e0e;
    --surface: #161616;
    --surface2:#1c1c1c;
    --border:  #2a2a2a;
    --or:      hsl(44, 54%, 54%);
    --blanc:   #f0ede8;
    --muted:   #6b6b6b;
}
html, body { min-height: 100%; }
body { background: var(--bg); color: var(--blanc); font-family: 'Inter', sans-serif; font-weight: 300; }

/* ── NAV BAR ── */
.navbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2rem; height: 60px;
    background: var(--surface); border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 50;
}
.navbar-logo { font-family: 'Rajdhani', sans-serif; font-size: 1.2rem; font-weight: 700; letter-spacing: .12em; color: var(--blanc); white-space: nowrap; text-decoration: none; }
.navbar-logo span { color: var(--or); }

.navbar-menu { display: flex; list-style: none; gap: 2rem; }
.navbar-link { font-family: 'Rajdhani', sans-serif; font-size: .85rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--blanc); text-decoration: none; transition: color .2s; }
.navbar-link:hover, .navbar-link.active { color: var(--or); }

/* ── HERO SECTION ── */
.hero {
    position: relative;
    height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(rgba(53, 37, 21, 0.15), rgba(20, 15, 15, 0.15)), 
                url('/Asset/BG1.png') center/cover no-repeat;
}
.hero-content {
    max-width: 800px;
    background: #000000cc;
    border-radius: 20px;
    padding: 2rem;
}
.hero-tagline {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 1rem;
    font-weight: 600;
}
.hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-title span {
    color: var(--or);
}
.hero-desc {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 300;
}
.hero-btn {
    background: var(--or);
    color: #111;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    border-radius: 15px;
}
.hero-btn:hover {
    background: #b0913b;
    transform: translateY(-2px);
}



/* ── STYLES DU FOOTER ── */
.main-footer {
background: var(--surface);
font-family: 'Inter', sans-serif;
}

/* Section inférieure (Copyright) */
.footer-bottom {
background: var(--bg);
padding: 1.5rem 2rem;
font-size: 0.72rem;
color: var(--muted);
}
.footer-bottom-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}
.footer-legal-links {
display: flex;
gap: 1.5rem;
}
.footer-legal-links a {
color: var(--muted);
text-decoration: none;
transition: color 0.2s;
}
.footer-legal-links a:hover {
color: var(--blanc);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
.footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
}
.footer-title::after {
    width: 40px;
}
.footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
}
.footer-legal-links {
    justify-content: center;
}
}


/* ── RESPONSIVE ── */
@media (max-width: 768px) {
.navbar { flex-direction: column; height: auto; padding: 1rem; gap: 1rem; }
.navbar-menu { gap: 1rem; flex-wrap: wrap; justify-content: center; }

.hero { height: auto; padding: 6rem 1rem; }
.hero-title { font-size: 2.2rem; }
.hero-desc { font-size: 0.9rem; }

.services-grid { grid-template-columns: 1fr; }
.services-section { padding: 3rem 1rem; }
}