body {
    margin: 0;
    font-family: 'Segoe UI', Arial;
    background-color: #fdf6f0;
    color: #333;
}

/* HEADER */
header {
    background: linear-gradient(to right, #4b1c1c, #8b0000);
    color: white;
    text-align: center;
    padding: 30px;
}

header h1 {
    font-size: 40px;
}

header p {
    font-size: 16px;
    opacity: 0.9;
}

/* NAVBAR */
nav {
    background-color: #b11226;
    padding: 12px;
    text-align: center;
}

nav a {
    color: white;
    margin: 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #ffd6a0;
}

/* HERO */
.hero {
    background-image: url("images/coffee-banner.jpg");
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero div {
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

/* SECTION */
section {
    padding: 60px 30px;
    text-align: center;
}

section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

span {
    color: #b11226;
}

/* MENU GRID */
.menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.item h3 {
    margin: 10px 0 5px;
}

.price {
    color: #b11226;
    font-weight: bold;
    margin-bottom: 10px;
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery img {
    width: 100%;
    height: 220px;
    border-radius: 15px;
    object-fit: cover;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* FOOTER */
footer {
    background: #4b1c1c;
    color: white;
    text-align: center;
    padding: 15px;
}

/* RESPONSIVE */
@media (max-width: 800px) {
    .menu, .gallery {
        grid-template-columns: 1fr;
    }

    header h1 {
        font-size: 28px;
    }
}