/* Réinitialisation */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* Corps */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fffaf0;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo-img {
    max-height: 170px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fff3e0;
    text-decoration: underline;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('pizza-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    animation: fadeIn 1s ease-in;
}

.hero h1 {
    font-size: 3.5rem;
    color: #fff3e0;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 2rem;
}

.cta-button {
    background: #ff6b35;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cta-button:hover {
    background: #e55a2b;
    transform: scale(1.05);
}

/* Animation fadeIn */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Menu */
.menu {
    padding: 5rem 2rem;
    text-align: center;
    background: white;
}

.menu h2 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    animation: fadeIn 1s ease-in;
}

.menu-note {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.menu-category {
    font-size: 1.8rem;
    color: #ff6b35;
    margin: 2rem 0 1rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-10px);
}

.menu-item i {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.menu-item h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.menu-item p {
    color: #666;
    font-size: 1rem;
}

.menu-item .prices {
    font-size: 0.9rem;
    color: #ff6b35;
    margin-top: 0.5rem;
}

.drinks .menu-item p {
    line-height: 1.8;
}

/* About */
.about {
    padding: 5rem 2rem;
    text-align: center;
    background: #f8f9fa;
}

.about h2 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

/* Contact */
.contact {
    padding: 5rem 2rem;
    text-align: center;
    background: #fffaf0;
}

.contact h2 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info i {
    color: #ff6b35;
    margin-right: 0.5rem;
}

.map {
    margin: 2rem auto;
    max-width: 600px;
}

.camion-img {
    max-height: 250px;
    width: auto;
    margin-top: 2rem;
}

/* Footer */
footer {
    background: #2c2c2c;
    color: white;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { flex-direction: column; gap: 1rem; }
    .nav-links a { font-size: 0.9rem; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .menu h2, .about h2, .contact h2 { font-size: 2rem; }
    .menu-category { font-size: 1.5rem; }
    .map iframe { width: 100%; height: 300px; }
}