@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&family=Noto+Serif+JP:wght@300;400;500&family=Cormorant+Garamond:wght@300;400;600&display=swap');

:root {
    --primary-color: #5D5C61;
    --accent-color: #B1A296;
    --bg-color: #FDFBF7;
    --text-color: #333;
    --white: #fff;
    --font-serif: 'Noto Serif JP', serif;
    --font-sans: 'Noto Sans JP', sans-serif;
    --font-en: 'Cormorant Garamond', serif;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(5px);
}

.logo {
    font-family: var(--font-en);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav a {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: var(--primary-color);
}

nav a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    animation: zoomOut 20s infinite alternate;
}

.hero-content {
    text-align: center;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-title {
    font-family: var(--font-en);
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1.5s ease forwards 0.5s;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    opacity: 0;
    animation: fadeInUp 1.5s ease forwards 1s;
}

/* Concept Section */
.section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-family: var(--font-en);
    font-size: 3rem;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--primary-color);
}

.concept-text {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 2.2;
    margin-bottom: 40px;
}

/* Insta Gallery Style */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Menu Section */
.menu-list {
    max-width: 800px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    margin-bottom: 10px;
}

.menu-name {
    font-weight: 500;
}

.menu-price {
    font-family: var(--font-en);
}

/* Location */
.access-info {
    text-align: center;
    margin-top: 40px;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    text-align: center;
    font-size: 0.8rem;
    font-family: var(--font-en);
}

/* Animations */
@keyframes zoomOut {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header { padding: 15px 20px; }
    .hero-title { font-size: 3rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .section { padding: 60px 20px; }
}
