/* --- RESET & BASE --- */
* { 
    box-sizing: border-box; 
}

body { 
    margin: 0; 
    font-family: 'Lato', sans-serif; 
    color: #333; 
    line-height: 1.6; 
    scroll-behavior: smooth; 
    background-color: #f4f4f4; 
}

/* --- NAVIGATION --- */
nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 15px 5%; 
    background: rgba(10, 10, 10, 0.98); 
    position: fixed; 
    top: 0; left: 0; width: 100%; 
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo { 
    font-family: 'Pacifico', cursive; 
    font-size: 2rem; 
    color: #C5A059; /* Or Champagne */
    text-decoration: none; 
}

nav ul { display: flex; list-style: none; margin: 0; padding: 0; }
nav ul li { margin-left: 25px; }
nav ul li a { 
    color: #eee; 
    text-decoration: none; 
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 0.8rem; 
    letter-spacing: 1px;
    transition: 0.3s; 
}
nav ul li a:hover { color: #C5A059; }

/* --- SECTION HERO --- */
.hero { 
    height: 100vh; 
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('images/salle.jpg'); 
    background-size: cover; 
    background-position: center; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
}

.hero-content { width: 100%; padding: 0 20px; }

/* LE LOGO LYNX */
.hero-logo-container { margin-bottom: 5px; }
.main-logo { 
    width: 220px; 
    height: 220px; 
    border-radius: 50%; 
    border: 4px solid #C5A059; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.5); 
    background: white; 
    display: block; 
    margin: 0 auto;
    object-fit: cover; 
    object-position: 80% 20%; /* Ton réglage parfait */
}

/* LE TITRE (Boucle Y + Dégradé Prestige) */
.hero h1 { 
    font-family: 'Pacifico', cursive !important; 
    font-size: 6.5rem; 
    margin: 0; 
    line-height: 1.4; 
    padding-bottom: 25px; 
    background: linear-gradient(135deg, #FFFFFF 40%, #C5A059 100%); 
    -webkit-background-clip: text; 
    background-clip: text; 
    -webkit-text-fill-color: transparent; 
    filter: drop-shadow(4px 4px 12px rgba(0,0,0,0.7)); 
}

.hero p { 
    color: rgba(255,255,255,0.9); 
    font-size: 1.6rem; 
    font-style: italic; 
    font-weight: 300;
    margin-bottom: 40px; 
    letter-spacing: 1px;
}

/* --- BOUTONS --- */
.hero-buttons { display: flex; justify-content: center; gap: 20px; }

.btn { 
    display: inline-block; 
    background: linear-gradient(135deg, #C5A059 0%, #A38241 100%); 
    padding: 16px 40px; 
    color: white; 
    text-decoration: none; 
    border-radius: 4px; 
    font-weight: bold; 
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-whatsapp { 
    background: #25D366 !important; 
}

.btn:hover { 
    transform: translateY(-3px); 
    filter: brightness(1.1);
}

/* --- MENU & TABS --- */
.menu-container { padding: 80px 10%; text-align: center; }

.menu-tabs { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
    margin: 20px 0 60px 0; 
    position: sticky; 
    top: 85px; 
    background: rgba(244, 244, 244, 0.95); 
    padding: 15px; 
    z-index: 900; 
    backdrop-filter: blur(10px);
}

.tab-btn { 
    text-decoration: none; 
    color: #666; 
    font-family: 'Oswald', sans-serif; 
    font-weight: 700; 
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 10px 25px; 
    border: 1px solid #C5A059; 
    transition: 0.3s; 
}

.tab-btn:hover { 
    background-color: #C5A059; 
    color: white !important; 
}

/* --- TITRES DE CATEGORIES STYLISÉS --- */
.category-title { 
    font-family: 'Oswald', sans-serif; 
    font-size: 2.2rem; 
    color: #C5A059; 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; 
    margin: 80px 0 50px; 
    text-transform: uppercase; 
    letter-spacing: 5px; 
    font-weight: 700;
    scroll-margin-top: 160px; 
}

.category-title::before,
.category-title::after {
    content: "";
    height: 2px;
    width: 60px;
    background: linear-gradient(to right, transparent, #C5A059);
}

.category-title::after {
    background: linear-gradient(to left, transparent, #C5A059);
}

/* --- GRILLE DE PIZZAS --- */
.pizza-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px; 
}

.pizza-card { 
    background: white; 
    padding: 30px; 
    border-radius: 4px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.03); 
    border: 1px solid #eee; 
    transition: 0.3s; 
}

.pizza-card:hover { 
    transform: translateY(-8px); 
    border-color: #C5A059; 
}

.pizza-card h3 { 
    font-family: 'Oswald', sans-serif; 
    font-size: 1.6rem; 
    color: #222; 
    letter-spacing: 1px;
    border-bottom: 1px dashed #C5A059; 
    display: inline-block;
    margin-bottom: 10px;
}

.price { 
    color: #27ae60; 
    font-weight: 900; 
    font-size: 1.3rem; 
    display: block; 
    margin-top: 15px; 
}

/* --- CONTACT --- */
.contact-container { padding: 100px 10%; background-color: #0f171e; color: white; }
.contact-content { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 50px; }
.hours h2, .info h2 { font-family: 'Oswald', sans-serif; color: #C5A059; text-transform: uppercase; }
.hours ul { list-style: none; padding: 0; }
.hours span { font-weight: bold; color: #C5A059; margin-right: 10px; }

/* --- WHATSAPP FLOAT --- */
.whatsapp-float { 
    position: fixed; width: 65px; height: 65px; bottom: 30px; right: 30px; 
    background-color: #25d366; color: white; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    font-size: 32px; text-decoration: none; z-index: 1001; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) { 
    .hero h1 { font-size: 3.5rem; } 
    .category-title { font-size: 1.5rem; letter-spacing: 2px; }
    .category-title::before, .category-title::after { width: 30px; }
}