/* Cafe Theme Styles */
:root {
    --text-color: #333;
    --bg-color: #fff;
    --accent-color: #8c7b75;
    /* Warm dusty brown */
    --font-main: 'Montserrat', sans-serif;
    --font-jp: 'Noto Sans JP', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-jp);
    line-height: 1.8;
}

h1,
h2,
h3,
.logo {
    font-family: var(--font-main);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

header {
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
    z-index: 1002;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.4s;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

a {
    text-decoration: none;
    color: inherit;
    font-family: var(--font-main);
    font-size: 0.9rem;
}

#hero {
    height: 80vh;
    background: url('../../assets/cafe/coffee.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
}

#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

section {
    padding: 6rem 5%;
}

.container {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.concept-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
}

.concept-text h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

#menu {
    background: #f4f4f4;
    text-align: center;
}

#menu h2 {
    margin-bottom: 3rem;
    font-size: 2rem;
}

.menu-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.menu-card {
    background: #fff;
    width: 300px;
    padding-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-card h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
}

#location {
    text-align: center;
}

footer {
    padding: 2rem;
    text-align: center;
    background: #333;
    color: #fff;
    font-size: 0.8rem;
    font-family: var(--font-main);
}

/* Responsive */
@media (max-width: 768px) {

    /* Mobile Nav */
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .nav-menu a {
        font-size: 1.5rem;
        color: #333;
    }

    /* Hamburger Animation */
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Layout Fixes */
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .container {
        flex-direction: column;
    }

    .menu-card {
        width: 100%;
        /* Fix rigid width */
        max-width: 400px;
    }
}