/* Reset & Base Styles */
:root {
    --primary-color: #8D7B68;
    /* Warm Brown */
    --secondary-color: #A4907C;
    /* Lighter Brown */
    --accent-color: #C8B6A6;
    /* Beige Accent */
    --bg-color: #F9F5F0;
    /* Cream/Off-white Background */
    --text-color: #4A4036;
    /* Dark Brown Text */
    --white: #FFFFFF;
    --font-heading: 'Shippori Mincho', serif;
    --font-body: 'Zen Kaku Gothic New', sans-serif;
    --transition: all 0.3s ease;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.section-header p {
    font-size: 1rem;
    color: var(--secondary-color);
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.section-header p::before,
.section-header p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: var(--secondary-color);
}

.section-header p::before {
    left: -40px;
}

.section-header p::after {
    right: -40px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(249, 245, 240, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 15px;
}

.logo-sub {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--secondary-color);
    letter-spacing: 0.1rem;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.1rem;
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url('../img/open.jpg');
    /* Using a placeholder unsplash image for 'Restaurant Interior' look */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.5s ease forwards;
}

.hero h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.about-image {
    flex: 1;
    position: relative;
    height: 400px;
    /* Ensure height for absolute positioning of children */
}

.photo-collage {
    position: relative;
    width: 100%;
    height: 100%;
}

.collage-photo {
    position: absolute;
    width: 65%;
    height: 65%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--white);
    transition: transform 0.5s ease;
}

.photo-1 {
    top: 0;
    left: 0;
    z-index: 1;
}

.photo-2 {
    bottom: 0;
    right: 0;
    z-index: 2;
}

.photo-collage:hover .photo-1 {
    transform: translateY(-10px);
}

.photo-collage:hover .photo-2 {
    transform: translateY(10px);
}

/* Menu Section */
.menu {
    padding: 100px 0;
    background-color: #F2EBE5;
    /* Slightly darker cream */
}

.menu-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.menu-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.menu-image {
    width: 100%;
    aspect-ratio: 4/3;
    /* Standard photo aspect ratio */
    overflow: hidden;
}

.menu-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-photo {
    transform: scale(1.05);
    /* Subtle zoom effect on hover */
}

.menu-photo-meat {
    object-fit: cover;
    object-position: center 70%;
}

.stone-photo {
    width: 100%;
    max-width: 400px;
    /* Limit width slightly for better aesthetic if image is large */
    height: 350px;
    object-fit: cover;
    border-radius: 50% 50% 0 0;
    /* Arch shape */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.menu-placeholder-meat {
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #d29948, #e0b472);
    /* Meat tone approximation */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.menu-placeholder-fish {
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #6daeb0, #8ec5c7);
    /* Fish/Sea tone approximation */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.menu-info {
    padding: 30px;
}

.menu-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #EEE;
    padding-bottom: 15px;
}

.menu-title-row h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-color);
}

.price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
}

.menu-desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #666;
}

.menu-details {
    background-color: #FAFAFA;
    padding: 15px;
    border-radius: 6px;
}

.menu-details li {
    font-size: 0.9rem;
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.menu-details li::before {
    content: '•';
    color: var(--primary-color);
    margin-right: 10px;
}

/* Stone Section */
.stone {
    padding: 100px 0;
    background-color: var(--white);
    /* Ensure contrast with Menu section's cream bg */
}

.stone-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-direction: row-reverse;
    /* Image on right, Text on left for visual balance against About section */
}

.stone-text {
    flex: 1;
}

.stone-text h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.stone-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.stone-note {
    margin-top: 30px;
    padding: 15px;
    background-color: #F9F5F0;
    border-left: 3px solid var(--accent-color);
    border-radius: 0 4px 4px 0;
}

.stone-note p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

.stone-image {
    flex: 1;
    position: relative;
    /* Center the image in the flex item if needed, though flex-direction is row-reverse */
    display: flex;
    justify-content: center;
}

.stone-photo {
    width: 100%;
    max-width: 400px;
    /* Limit width slightly for better aesthetic if image is large */
    height: 350px;
    object-fit: cover;
    border-radius: 50% 50% 0 0;
    /* Arch shape */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Therapy Section */
.therapy {
    padding: 100px 0;
    background-color: #F2EBE5;
    /* Matching menu's cream bg */
}

.therapy-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.therapy-text {
    flex: 1;
}

.therapy-text h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.therapy-text p {
    margin-bottom: 20px;
}

.therapy-info {
    margin-top: 30px;
    padding: 15px;
    border-top: 1px solid var(--accent-color);
}

.practitioner {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.therapy-images {
    flex: 1;
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.therapy-photo {
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.main-photo {
    width: 60%;
    height: 350px;
}

.sub-photo {
    width: 40%;
    height: 200px;
}

/* Access Section */
.access {
    padding: 100px 0;
}

.access-content {
    display: flex;
    gap: 40px;
    align-items: stretch;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.access-box {
    flex: 1;
    text-align: center;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #EEE;
    display: flex;
    flex-direction: column;
}

.access-box p {
    margin-bottom: 15px;
}

.access-box strong {
    font-size: 1.2rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 20px;
}

.instagram-qr {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instagram-qr p {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.instagram-qr img {
    width: 150px;
    height: 150px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #EEE;
}

.access-map-link {
    margin-top: 20px;
}

.btn-map {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 30px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-map:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.map-container {
    flex: 1.5;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    height: 100%;
    min-height: 600px;
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .about-content,
    .stone-content,
    .therapy-content {
        flex-direction: column;
    }

    .therapy-images {
        width: 100%;
    }

    .main-photo,
    .sub-photo {
        width: 100%;
        height: 250px;
    }

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

    .access-content {
        flex-direction: column;
    }

    .map-container {
        min-height: 600px;
    }

}

/* Scroll Animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.visible {
    opacity: 1;
    transform: none;
}