/* Paramètres généraux */
body {
    font-family: 'Arial', sans-serif;
    color: #000000;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* En-tête mis à jour pour le logo */
header {
    background-color: #C95440;
    color: #ffffff;
    text-align: center;
    padding: 1.5rem 1rem; /* Padding légèrement réduit */
}

header h1 {
    margin: 0;
    line-height: 1; /* Aligne l'image verticalement */
}

/* Style spécifique pour le logo */
.header-logo {
    max-width: 400px; /* Taille maximale du logo sur ordinateur */
    height: auto; /* Conserve les proportions */
    display: inline-block;
}

header p {
    margin-top: 5px; /* Espace réduit entre le logo et le sous-titre */
    font-size: 1.2rem;
}

/* Grille du menu */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Carte de la pizza */
.pizza-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pizza-card:hover {
    transform: translateY(-5px);
}

/* Modification ici pour afficher l'image entièrement */
.pizza-card img {
    width: 100%;
    height: auto; 
    display: block;
}

.pizza-info {
    padding: 20px;
    text-align: center;
}

.pizza-info h2 {
    margin: 0 0 10px 0;
    color: #C95440;
}

.ingredients {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Design des prix Chaud / Froid */
.prices {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Permet aux prix de passer à la ligne sur les tout petits écrans */
}

.price {
    font-weight: bold;
    font-size: 1rem;
    padding: 8px 15px;
    border-radius: 20px;
}

.price.cold {
    background-color: #e0e0e0;
    color: #333333;
}

.price.hot {
    background-color: #C95440;
    color: #ffffff;
}

/* Pied de page */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333333;
    color: #ffffff;
    margin-top: 40px;
}