body {
    margin: 0;
    font-family: Arial;
}

/* HERO */
.hero {
    height: 60vh;
    background: url('https://images.unsplash.com/photo-1509042239860-f550ce710b93') center/cover no-repeat;
}

.overlay {
    height: 100%;
    background: rgba(0,0,0,0.5);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* MENU */
.menu {
    padding: 40px;
    text-align: center;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* CARD FIX */
.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

/* IMAGE FIX (MOST IMPORTANT) */
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;   /* THIS FIXES IMAGE FITTING */
}

/* GALLERY */
.gallery {
    padding: 40px;
    text-align: center;
    background: #f5f5f5;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;   /* FIXES STRETCHING */
    border-radius: 8px;
}