/* Google Fonts: Zen Maru Gothic for Japanese, Quicksand for English accents */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700&family=Quicksand:wght@300;400;500;700&display=swap');

:root {
    --primary: #FFCC99; /* Light Orange */
    --primary-light: #FFE5CC;
    --primary-dark: #FFB366;
    --accent: #FFA07A; /* Light Salmon */
    --bg-cream: #FFFAF5;
    --text-main: #5D4037; /* Dark Brown */
    --text-light: #8D6E63;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(255, 179, 102, 0.15);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Zen Maru Gothic', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-cream);
    line-height: 1.8;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 204, 153, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 204, 153, 0.1) 0%, transparent 20%);
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, .logo {
    font-family: 'Quicksand', 'Zen Maru Gothic', sans-serif;
}

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

ul {
    list-style: none;
}

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

.mobile-br {
    display: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 250, 245, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 204, 153, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

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

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

/* --- Mobile Menu Toggle --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-dark);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero .container > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image .hero-slideshow {
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 500px;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out; /* Slow and blurry transition */
    border-radius: 50% 50% 50% 70% / 50% 50% 70% 50%;
    box-shadow: var(--shadow);
    animation: morph 8s ease-in-out infinite;
    border: 10px solid var(--white);
}

.hero-slideshow .slide.active {
    opacity: 1;
}

@keyframes morph {
    0% { border-radius: 50% 50% 50% 70% / 50% 50% 70% 50%; }
    50% { border-radius: 70% 50% 50% 50% / 50% 70% 50% 50%; }
    100% { border-radius: 50% 50% 50% 70% / 50% 50% 70% 50%; }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(255, 204, 153, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 204, 153, 0.6);
}

/* --- Sections --- */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    display: inline-block;
    position: relative;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* --- Message Section --- */
.message-box {
    background: var(--white);
    padding: 4rem;
    border-radius: 40px;
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.message-box p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* --- Menu Grid --- */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-10px);
}

.menu-item .slideshow-container {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    background: #EAEAEA;
}

.menu-item .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.menu-item .slide.active {
    opacity: 1;
}

.menu-item .photo-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #AAA;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 0;
}

.menu-item .slide {
    z-index: 1;
}

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

/* --- Info Section --- */
.info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.info-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 40px;
    box-shadow: var(--shadow);
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 0.5rem 0;
}

.hours-table .day {
    font-weight: 700;
    width: 120px;
}

/* --- Contact Form --- */
.contact-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    border-radius: 40px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--primary-light);
    border-radius: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-cream);
}

.btn-submit {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* --- Social --- */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 1.5rem;
}

.social-icon:hover {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent);
}

/* --- Footer --- */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .info-container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--bg-cream);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: 0.5s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .hero .container > div {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-top: 2rem;
    }

    .hero-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        margin: 0 auto 2rem;
    }
    
    .info-container {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }

    .message-box, .contact-container, .info-card {
        padding: 2rem 1.5rem;
    }

    .message-box p {
        font-size: 0.85rem;
    }

    .mobile-br {
        display: block;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.4rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        width: 100%;
    }
}
