/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GLOBAL */
body {
    font-family: Georgia, "Times New Roman", serif;
    background: #f4eadc;
    color: #2b1d14;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1150px;
    margin: auto;
}

section {
    padding: 80px 0;
}

h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 40px;
}

/* HEADER */
header {
    background: #2b1d14;
    padding: 22px 0;
    color: white;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #d9a441;
    font-size: 28px;
    font-weight: bold;
}

nav a {
    color: #f4eadc;
    text-decoration: none;
    margin-left: 25px;
}

nav a:hover {
    color: #d9a441;
}

/* HERO */
.hero {
    min-height: 620px;
    background:
        linear-gradient(rgba(43, 29, 20, 0.45), rgba(43, 29, 20, 0.7)),
        url("img/coffee-hero.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    color: white;
    max-width: 700px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero p {
    font-size: 22px;
    margin-bottom: 35px;
}

/* BUTTON */
.button {
    display: inline-block;
    background: #b87333;
    color: white;
    text-decoration: none;
    padding: 15px 34px;
    border-radius: 999px;
    font-weight: bold;
    box-shadow: 0 12px 28px rgba(43, 29, 20, 0.25);
}

.button:hover {
    background: #d48a3a;
}

/* STORY */
.story-box {
    max-width: 800px;
    text-align: center;
}

.story-box p {
    font-size: 21px;
    color: #5b4636;
}

/* MENU */
#menu {
    background: #fff8ee;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.menu-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    border-top: 5px solid #b87333;
    box-shadow: 0 14px 35px rgba(43, 29, 20, 0.09);
}

.menu-card h3 {
    font-size: 25px;
    margin-bottom: 12px;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(43, 29, 20, 0.12);
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: 0.4s;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.atmosphere-subtitle {
    text-align: center;
    font-size: 24px;
    color: #5b4636;
    margin-bottom: 40px;
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
}

/* VISIT */
#visit {
    background: #2b1d14;
    color: white;
    text-align: center;
    padding: 50px 0;
}

.visit-box p {
    margin-bottom: 10px;
    color: #f4eadc;
}

.visit-box .button {
    margin-top: 25px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.contact-item {
    background: rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 18px;
}

.contact-item h3 {
    color: #d9a441;
    margin-bottom: 12px;
}

.contact-item p {
    color: #f4eadc;
    margin-bottom: 5px;
}

/* FOOTER */
footer {
    background: #1d130d;
    color: #f4eadc;
    text-align: center;
    padding: 35px 20px;
}

footer p:first-child {
    color: #d9a441;
    font-size: 24px;
    margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    nav a {
        margin: 0 8px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .menu-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}