/* ==========================================
   VARIABLES & SETUP
   ========================================== */
:root {
    --bg-dark: #0a0b0e;
    --bg-card: #16181d;
    --gold: #FFD700;
    --gold-hover: #fcd34d;
    --text: #ffffff;
    --text-muted: #a1a1aa;
    --glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 215, 0, 0.15);
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: var(--font-main); 
    background: var(--bg-dark); 
    color: var(--text); 
    line-height: 1.6; 
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ==========================================
   TOP BAR & HEADER
   ========================================== */
.top-bar {
    background: var(--gold);
    color: #000;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 700;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1002;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contacts a {
    color: #000;
    text-decoration: none;
    margin-left: 15px;
}

.header {
    background: rgba(10, 11, 14, 0.9);
    position: fixed;
    top: 35px; /* Positionné sous la top-bar */
    width: 100%;
    z-index: 1001;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img { height: 50px; }

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover { color: var(--gold); }

.nav-cta {
    background: var(--gold);
    color: #000 !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700 !important;
}

/* Menu Burger Mobile */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================
   HERO SECTION (IMAGE AMIENS)
   ========================================== */
.hero {
    height: 100vh;
    background: linear-gradient(to bottom, rgba(10, 11, 14, 0.8), rgba(10, 11, 14, 0.6)),
                url('amiens-scaled.jpg') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content { max-width: 700px; }

.badge {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--border-glass);
}

h1 { font-size: 4rem; line-height: 1.1; margin: 20px 0; }
.text-gold { color: var(--gold); }

.hero-buttons { display: flex; gap: 20px; margin-top: 40px; }

/* BOUTONS */
.btn {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary { background: var(--gold); color: #000; }
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-3px); }

.btn-outline { border: 1px solid var(--border-glass); color: #fff; }
.btn-outline:hover { background: var(--glass); }

/* ==========================================
   SERVICES (FEATURES)
   ========================================== */
.features { padding: 100px 0; background: var(--bg-dark); }

.section-header { text-align: center; margin-bottom: 60px; }
.divider { 
    width: 60px; height: 4px; background: var(--gold); 
    margin: 20px auto; border-radius: 2px; 
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-glass);
    transition: var(--transition);
}

.feature-box:hover { transform: translateY(-10px); border-color: var(--gold); }

.feature-box i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    display: block;
}

/* ==========================================
   RESERVATION & CONTACT
   ========================================== */
.reservation { padding: 100px 0; background: #0e1015; }

.reservation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.contact-list { margin-top: 30px; }
.contact-list p { margin-bottom: 15px; display: flex; align-items: center; gap: 15px; }
.contact-list a { color: var(--text); text-decoration: none; font-weight: 600; }
.contact-list i { color: var(--gold); }

.form-container {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--border-glass);
}

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: var(--text-muted); }

input {
    width: 100%;
    padding: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    color: #fff;
    outline: none;
}

input:focus { border-color: var(--gold); }

/* ==========================================
   FOOTER
   ========================================== */
.footer { background: #000; padding: 80px 0 0; border-top: 1px solid var(--border-glass); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-logo { height: 50px; margin-bottom: 20px; }
.footer h4 { color: var(--gold); margin-bottom: 25px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; }
.footer a { color: var(--text-muted); text-decoration: none; transition: 0.3s; }
.footer a:hover { color: var(--gold); }

.footer-bottom { padding: 30px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.bottom-flex { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--text-muted); }

/* ==========================================
   RESPONSIVE (MOBILE)
   ========================================== */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    .features-grid { grid-template-columns: 1fr; }
    .reservation-wrapper { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; height: 100vh;
        background: var(--bg-dark);
        padding: 100px 40px;
        transition: 0.4s;
        z-index: 1000;
    }

    .nav-menu.active { right: 0; }
    .nav-menu ul { flex-direction: column; align-items: flex-start; }

    .hero { background-attachment: scroll; text-align: center; }
    .hero-buttons { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    .hide-mobile { display: none; }
}
/* Modifiez cette section dans votre style.css */
.logo img { 
    height: 70px; /* Taille augmentée (était à 50px) */
    width: auto;  /* Garde les proportions automatiques */
    transition: var(--transition);
    display: block;
}

/* Optionnel : Légère réduction sur mobile pour ne pas prendre trop de place */
@media (max-width: 768px) {
    .logo img {
        height: 55px; 
    }
}
.header {
    /* ... vos autres propriétés ... */
    padding: 10px 0; /* Réduit un peu le rembourrage interne si le logo est grand */
}
.footer-logo {
    height: 60px; /* Taille augmentée pour le pied de page */
    margin-bottom: 20px;
}
.header {
    background: rgba(10, 11, 14, 0.9);
    position: fixed;
    top: 0; /* On le colle tout en haut */
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    padding: 10px 0; /* Un peu moins de vide interne pour plus de finesse */
    transition: var(--transition);
}
.logo img { 
    height: 80px; /* Taille augmentée pour un look plus premium */
    width: auto;
    display: block;
    transition: var(--transition);
}

/* Sur mobile, on le réduit un peu pour ne pas masquer tout l'écran */
@media (max-width: 768px) {
    .logo img {
        height: 60px;
    }
}
.hero {
    height: 100vh;
    /* Votre image d'Amiens ici */
    background: linear-gradient(to bottom, rgba(10, 11, 14, 0.8), rgba(10, 11, 14, 0.6)),
                url('amiens-scaled.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-top: 100px; /* Espace pour compenser la hauteur du nouveau header */
}