/* Styles généraux */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
}

h1 {
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

/* Styles des cartes restaurants */
.restaurant-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
}

/* Styles des vignettes */
.thumbnail {
    width: 200px;
    height: 150px;
    object-fit: contain;
    border-radius: 4px;
    background-color: #f8f8f8;
}

.restaurant-info {
    flex: 1;
}

/* Styles du texte */
.restaurant-name {
    color: #1d0202;
    font-size: 1.4em;
    margin: 0 0 10px 0;
}

.rating {
    color: #ffa41b;
    font-weight: bold;
    margin-bottom: 10px;
}

.address {
    color: #666;
    font-style: italic;
    margin-bottom: 10px;
}

.stars {
    color: #ffd700;
}

/* Styles des horaires */
.hours {
    margin-top: 15px;
    font-size: 0.9em;
}

.hours h3 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1em;
}

.hours ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.hours li {
    margin-bottom: 4px;
}

/* Styles des liens */
.maps-link {
    display: inline-block;
    margin-top: 10px;
    color: #2b77e5;
    text-decoration: none;
}

.maps-link:hover {
    text-decoration: underline;
}

/* Media Queries pour le responsive */
@media (max-width: 600px) {
    .restaurant-card {
        grid-template-columns: 1fr;
    }
    .thumbnail {
        width: 100%;
        height: auto;
    }
}