/* Izakaya Theme Styles */
:root {
    --bg-color: #1a1510;
    --text-color: #e0d8cc;
    --accent-color: #c9a66b;
    --font-serif: 'Noto Serif JP', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    z-index: 1002;
    /* Above nav overlay */
}

/* 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;
}

/* Hero */
#hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), url('../../assets/izakaya/interior.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
}

/* Sections */
section {
    padding: 6rem 5%;
}

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

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

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

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 100%;
        background-color: rgba(26, 21, 16, 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;
    }

    /* 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-content h1 {
        font-size: 2.5rem;
    }

    section {
        padding: 4rem 5%;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.image-block {
    flex: 1;
}

.image-block img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Menu */
#menu h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 4rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-item {
    background: #251f18;
    padding-bottom: 1rem;
    border-radius: 4px;
    overflow: hidden;
}

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

.menu-text {
    padding: 1.5rem;
    text-align: center;
}

.menu-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.menu-text p {
    color: var(--accent-color);
}

/* Access */
#access {
    background: #251f18;
    text-align: center;
}

.access-box {
    border: 1px solid var(--accent-color);
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

footer {
    text-align: center;
    padding: 2rem;
    background: #111;
    font-size: 0.8rem;
}