@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&family=Shippori+Mincho:wght@400;600&display=swap');

:root {
    /* Color Palette - Warm & Sophisticated */
    --bg-color: #F9F7F2;         /* Creamy Beige */
    --card-bg: #FFFFFF;          /* Pure White */
    --text-main: #4A4036;        /* Dark Coffee */
    --text-muted: #8C7B6C;       /* Taupe */
    --accent-color: #C68733;     /* Muted Gold (derived from original) */
    --accent-hover: #A66D26;
    
    /* Layout */
    --max-width: 1100px;
    --header-height: 70px;
    --border-radius: 4px;
}

/* --- Reset & Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.8;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, .serif-font {
    font-family: 'Shippori Mincho', serif;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--text-main);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    margin: 1rem auto 0;
}

.section-title span {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* --- Header --- */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(74, 64, 54, 0.05);
}

.header-inner {
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    object-fit: contain;
}

/* Desktop Nav */
.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-book {
    background-color: var(--accent-color);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: background 0.3s, transform 0.2s;
}

.btn-book:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    color: #fff;
}

/* Mobile Menu Trigger */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* --- Layout Helpers --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 5rem 0;
}

/* --- Hero Section --- */
.hero {
    height: 80vh;
    min-height: 500px;
    background-image: url('../images/home-01.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(40, 30, 20, 0.35); /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

/* --- News Alert --- */
.news-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}

.news-content {
    background: #FFF8E1; /* Light yellow */
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 0 4px 4px 0;
}

.news-title {
    font-weight: bold;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

/* --- Cards (Menu) --- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.menu-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-5px);
}

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

.menu-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-title {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.menu-price {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.menu-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.menu-link {
    align-self: flex-start;
    color: var(--accent-color);
    font-weight: bold;
    border-bottom: 1px solid transparent;
}

.menu-link:hover {
    border-bottom-color: var(--accent-color);
}

/* --- Profile --- */
.profile-section {
    background: #fff;
}

.profile-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.profile-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.profile-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* --- Info Grid (Contact Page style) --- */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.info-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: var(--border-radius);
}

/* --- Footer --- */
.site-footer {
    background-color: var(--text-main);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-nav {
    margin-bottom: 1.5rem;
}

.footer-nav a {
    margin: 0 10px;
    color: #ddd;
}

.footer-nav a:hover {
    color: #fff;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    
    .menu-toggle { display: block; }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        text-align: center;
    }

    .nav-menu.active { display: flex; }
    
    .grid-2, .profile-container, .info-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 2rem;
    }

    .profile-img {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .profile-info { text-align: center; }
}
