@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --bg-color: #0a0a0b;
    --text-color: #f1f1f1;
    --accent-red: #8b0000;
    --accent-gold: #c5a059;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
    --font-accent: '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-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    background: rgba(10, 10, 11, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.logo {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 40px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--accent-gold);
}

/* Hero */
.hero {
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../img/restaurant_hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
}

.hero h1 {
    font-family: var(--font-accent);
    font-size: 5rem;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    animation: fadeInDown 1s ease-out;
}

.hero p {
    font-size: 1.4rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    animation: fadeInUp 1.2s ease-out;
}

/* About Us Section */
.about-section {
    padding: 150px 10%;
    background-color: #0d0d0e;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    flex: 1;
    position: relative;
    border: 1px solid var(--glass-border);
    padding: 20px;
    background: var(--glass-bg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-text {
    flex: 1.2;
}

.about-text p {
    margin-bottom: 25px;
    color: #b0b0b0;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-text i {
    color: var(--accent-gold);
}

/* Menu Section */
.content-section {
    padding: 120px 10%;
}

.section-label {
    text-align: center;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-family: var(--font-accent);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.menu-category h3 {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 10px;
    margin-bottom: 25px;
    color: var(--accent-gold);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.item-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.item-info p {
    font-size: 0.85rem;
    color: #888;
}

.item-price {
    font-weight: 600;
    color: var(--accent-gold);
}

/* Hours Section */
.hours-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--glass-bg);
    padding: 40px;
    border-radius: 4px;
    border: 1px solid var(--glass-border);
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Map */
.map-container {
    width: 100%;
    height: 500px;
    margin-top: 50px;
    position: relative;
    border: 1px solid var(--glass-border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* Footer */
footer {
    padding: 80px 10% 40px;
    background: #050506;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

footer .logo {
    margin-bottom: 20px;
}

footer p {
    color: #666;
    font-size: 0.85rem;
}

.social-links {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
}

.social-links a:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    header {
        padding: 0 5%;
    }

    nav {
        display: none;
    }
}