:root {
    --bg-color: #0a0a0a;
    --text-color: #f0f0f0;
    --accent-color: #e0b145;
    /* Slightly brighter gold */
    --accent-hover: #f5cc6a;
    --secondary-color: #8a1c1c;
    /* Deep Red */
    --dark-overlay: rgba(0, 0, 0, 0.6);
    /* Lighter overlay */
    --font-main: 'Noto Sans JP',
        sans-serif;
    --font-heading: 'Oswald',
        sans-serif;
    --font-accent: 'Shippori Mincho',
        serif;
    /* Casual/Rock font */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    width: 100%;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.05em;
}

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

ul {
    list-style: none;
}

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

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

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Buttons */
.btn-primary,
.btn-outline,
.btn-small,
.btn-reserve {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000;
    border: 1px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: #000;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-small:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    /* Ensure header is always on top */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 15px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    height: 60px;
    /* Adjust height for the new logo */
}

.logo a {
    display: block;
    height: 100%;
}

.logo img {
    max-height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    position: relative;
}

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

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

.btn-reserve {
    border: 1px solid var(--accent-color);
    padding: 8px 20px;
    color: var(--accent-color);
}

.btn-reserve:hover {
    background-color: var(--accent-color);
    color: #000;
}

.hamburger {
    display: none;
    cursor: pointer;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: slideshow 24s infinite;
}

.slide-1 {
    background-image: url('assets/images/header_food.jpg');
    animation-delay: 0s;
}

.slide-2 {
    background-image: url('assets/images/header_interior.jpg');
    animation-delay: 8s;
}

.slide-3 {
    background-image: url('assets/images/header_stage.jpg');
    animation-delay: 16s;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark overlay with vignette effect */
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 80%, #0a0a0a 100%);
    backdrop-filter: blur(2px);
    /* Subtle overall blur */
    z-index: 0;
}

/* Mask edges for extra "blurring outside" feel */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 100px 50px #0a0a0a;
    pointer-events: none;
    z-index: 1;
}

@keyframes slideshow {

    0%,
    10% {
        opacity: 0;
        transform: scale(1.05);
    }

    15%,
    35% {
        opacity: 1;
        transform: scale(1);
    }

    40%,
    100% {
        opacity: 0;
        transform: scale(1.05);
    }
}

.hero-content {
    z-index: 1;
    padding: 0 20px;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    display: block;
}

.hero-title span:nth-child(3) {
    color: var(--accent-color);
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 4rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background-color: #fff;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

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

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

.section-title {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: #888;
}

/* Services Section */
.services-section {
    background-color: #0f0f0f;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 0;
}

.service-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    transition: background 0.4s ease;
}

.service-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    transition: transform 0.4s ease;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.1em;
}

.service-content p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 20px;
    opacity: 0.8;
}

.btn-text {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px 20px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

/* Hover Effects */
.service-card:hover .service-bg {
    transform: scale(1.1);
}

.service-card:hover .service-bg::after {
    background: rgba(0, 0, 0, 0.4);
}

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

.service-card:hover .btn-text {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
}

/* Bento Section */
.bento-section {
    background-color: #fff;
    color: #333;
    padding: 80px 0;
}

.bento-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.bento-image {
    flex: 1;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.bento-image img {
    width: 100%;
    height: auto;
    display: block;
}

.bento-content {
    flex: 1;
    text-align: center;
}

.bento-logo {
    margin-bottom: 30px;
    display: inline-block;
}

.logo-circle {
    width: 120px;
    height: 120px;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
}

.logo-text-top {
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.logo-icon {
    font-size: 2rem;
    line-height: 1;
}

.logo-text-bottom {
    font-size: 0.9rem;
    margin-top: 5px;
}

.bento-content h2 {
    font-size: 4rem;
    font-family: serif;
    color: #333;
    margin-bottom: 10px;
    line-height: 1;
}

.bento-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #555;
}

.bento-desc {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 40px;
    color: #666;
}

/* Concept Section */
.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.concept-text h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    line-height: 1.4;
}

.concept-text p {
    margin-bottom: 20px;
    color: #ccc;
}

.concept-image img {
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    filter: grayscale(20%) contrast(110%);
}

/* Menu Section */
.menu-section {
    background-color: #111;
}

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

.menu-card {
    background-color: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

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

.menu-img-wrapper {
    height: 250px;
    overflow: hidden;
}

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

.menu-card:hover .menu-img-wrapper img {
    transform: scale(1.1);
}

.menu-content {
    padding: 30px;
}

.menu-content h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.menu-content p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 20px;
}

.plan-child-price {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.plan-body {
    padding: 30px;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    font-size: 0.95rem;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    font-size: 0.95rem;
}

.menu-list li:last-child {
    border-bottom: none;
}

/* Live Section */
.live-section {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/images/hero_bg.png');
    /* Reuse bg for texture */
    background-attachment: fixed;
    background-size: cover;
}

.event-list {
    max-width: 800px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.event-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 30px;
    min-width: 60px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-color);
}

.event-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.event-info {
    flex-grow: 1;
}

.event-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.event-artist {
    color: #aaa;
    font-size: 0.9rem;
}

.event-time {
    font-size: 0.8rem;
    color: #888;
    margin-top: 5px;
}

.hall-rental-info {
    text-align: center;
    background: rgba(197, 160, 89, 0.1);
    padding: 40px;
    border: 1px solid var(--accent-color);
    max-width: 800px;
    margin: 60px auto 0;
}

.hall-rental-info h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.hall-rental-info p {
    margin-bottom: 25px;
}

/* Access Section */
.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.access-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-group {
    margin-bottom: 30px;
}

.info-group h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.tel-number {
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.access-map {
    height: 400px;
    background-color: #222;
}

.access-details {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
}

.access-detail-group {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.access-detail-group h3 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.access-detail-group h3 span {
    font-size: 0.9rem;
    color: #aaa;
    font-weight: 400;
}

.access-route {
    margin-bottom: 20px;
}

.access-route:last-child {
    margin-bottom: 0;
}

.access-route h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 700;
}

.access-route h4 span {
    font-size: 0.85rem;
    color: #ccc;
    font-weight: 400;
    margin-left: 5px;
}

.access-route p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
}

.access-route strong {
    color: #fff;
    font-weight: 700;
    border-bottom: 1px dotted #fff;
}

@media (max-width: 768px) {
    .access-details {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact-section {
    background-color: #111;
    padding: 80px 0;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
.footer {
    background-color: #050505;
    padding: 60px 0 30px;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-color);
}

.footer-logo img {
    height: 70px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #888;
    font-size: 1.2rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.copyright {
    font-size: 0.8rem;
    color: #555;
}

/* Animations */
.fade-in-up,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-right {
    transform: translateX(30px);
}

.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Bento Page Styles */
.bento-page {
    background-color: #fff;
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
}

.bento-page .header {
    position: relative !important;
    background: #000 !important;
    z-index: 1000;
}

.bento-page .header .nav-list a {
    color: #fff !important;
}

.bento-hero {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #fff;
    display: block;
    overflow: hidden;
}

.bento-hero-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 450px;
    /* Desktop: Compact size */
    object-fit: cover;
    display: block;
}

/* Hero Overlay Styles */
.hero-overlay-content {
    display: none;
    /* Hide HTML overlay on desktop as image already has text */
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Shippori Mincho', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-logo .logo-circle {
    background: #fff;
    color: #333;
    text-shadow: none;
    width: 100px;
    height: 100px;
    border: 1px solid #333;
}

.hero-logo .logo-text-top {
    font-size: 0.7rem;
}

.hero-logo .logo-icon {
    font-size: 1.8rem;
}

.hero-logo .logo-text-bottom {
    font-size: 0.8rem;
}

/* Responsive */
/* Responsive */
@media (max-width: 1280px) {
    .hero-img {
        height: 350px;
        /* Tablet: Compact size */
        transform: scale(1.05);
        /* Zoom in slightly to hide watermark */
        transform-origin: center top;
        /* Keep top aligned */
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .bento-hero {
        overflow: hidden;
        /* Ensure zoomed image doesn't overflow */
    }

    .bento-hero-inner {
        display: flex;
        flex-direction: column;
    }

    .hero-overlay-content {
        display: flex;
        /* Show banner on mobile */
        flex-direction: column;
        position: relative;
        height: auto;
        padding: 40px 20px;
        background-color: #fffbf5;
        color: #333;
        text-shadow: none;
        justify-content: center;
        align-items: center;
        border-top: 1px solid #e0b145;
        border-bottom: 1px solid #e0b145;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .bento-page .hero-title {
        color: #000;
        /* Changed from gold to black */
        margin-bottom: 10px;
        letter-spacing: 0.05em;
    }

    .hero-subtitle {
        font-family: 'Shippori Mincho', serif;
        font-size: 1.1rem;
        color: #333;
        margin-bottom: 0;
        letter-spacing: 0.15em;
        /* Wide letter spacing for elegance */
    }

    .hero-img {
        height: 250px;
        /* Smartphone: Compact size */
        transform: scale(1.1);
        /* Zoom in more for mobile to hide watermark */
        transform-origin: center top;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }

    .header {
        padding: 15px 20px;
    }

    section {
        padding: 60px 0;
    }

    h2.section-title {
        font-size: 2rem;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 40px;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 30px;
        height: 2px;
        background-color: #fff;
        margin: 6px 0;
        transition: 0.4s;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title span:nth-child(3) {
        font-size: 2.5rem;
    }

    .concept-grid,
    .access-grid,
    .services-grid,
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .menu-content {
        padding: 20px 15px;
    }

    .menu-list li {
        flex-wrap: wrap;
        gap: 5px;
    }

    .menu-list li span:first-child {
        flex: 1;
        min-width: 150px;
    }

    .bento-wrapper {
        flex-direction: column;
        gap: 40px;
    }


    .bento-image {
        max-width: 100%;
    }


    @media (max-width: 1280px) {
        .hero-img {
            height: auto;
        }
    }

    @media (max-width: 768px) {
        .hero-img {
            height: auto;
        }
    }

    /* Hero overlay text styles removed as text is now integrated into the image */

    @media (max-width: 768px) {
        .hero-overlay-text h1 {
            font-size: 4rem;
        }

        .hero-overlay-text p {
            font-size: 1.5rem;
        }
    }
}

.badge-top {
    font-size: 0.6rem;
    font-weight: 700;
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-bottom {
    font-size: 0.7rem;
    font-weight: 700;
}

.bento-news {
    background-color: #8a1c1c;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.news-banner h2 {
    font-family: 'Shippori Mincho', serif;
    font-size: 2rem;
    margin-bottom: 5px;
}

.bento-menu {
    padding: 60px 0;
    background-color: #fffbf5;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bento-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.bento-card-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    position: relative;
}

.bento-card-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 5px;
}

.bento-card-header .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d35400;
}

.bento-card-header .price span {
    font-size: 0.9rem;
    color: #666;
    margin-left: 5px;
}

.bento-card.special .tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #d35400;
    color: #fff;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 4px;
}

.bento-card-img {
    height: 200px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.bento-card-body {
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 0.95rem;
}

.bento-info {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.info-box {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border: 2px solid #d35400;
    border-radius: 8px;
}

.line-cta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #ccc;
}

.line-text h3 {
    font-size: 1.5rem;
    color: #00b900;
    /* LINE Green */
    margin-bottom: 10px;
}

.line-text p {
    margin-bottom: 10px;
}

.line-text .note {
    font-size: 0.85rem;
    color: #888;
}

.shop-details {
    text-align: center;
}

.access-detail-group h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.access-detail-group summary {
    list-style: none;
    cursor: pointer;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    border-radius: 8px;
}

.access-detail-group summary:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.access-detail-group summary::-webkit-details-marker {
    display: none;
}

.access-detail-group[open] summary {
    border-bottom: none;
    background-color: rgba(0, 0, 0, 0.05);
}

.more-btn {
    font-size: 0.85rem;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.more-btn i {
    transition: transform 0.3s ease;
}

.access-detail-group[open] .more-btn {
    background: #666;
}

.access-detail-group[open] .more-btn i {
    transform: rotate(180deg);
}

.details-content {
    padding: 20px 0;
    animation: fadeInDown 0.4s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.access-detail-group h3 span:not(.more-icon) {
    font-size: 0.9rem;
    font-weight: normal;
    color: #666;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .bento-hero h1 {
        font-size: 3rem;
    }

    .line-cta {
        flex-direction: column;
        text-align: center;
    }
}

/* Bento Image Fitting */
.bento-card-img {
    height: 260px;
    /* Increased height for better visibility */
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    /* Remove padding to maximize image size */
}

.bento-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensure full image is visible */
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    /* Add subtle shadow to the food */
}

/* Stylish Info Section */
.bento-info {
    padding: 80px 0;
    background-color: #fdfbf7;
    /* Warm paper color */
    background-image: radial-gradient(#e6e6e6 1px, transparent 1px);
    background-size: 20px 20px;
}

.info-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border: none;
    border-radius: 2px;
    box-shadow:
        0 1px 4px rgba(0, 0, 0, 0.05),
        0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Tape effect */
.info-box::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.line-cta {
    display: block;
    text-align: center;
    margin-bottom: 50px;
    padding: 40px;
    background-color: #f0fdf0;
    /* Light green bg for LINE */
    border-radius: 12px;
    border: 2px dashed #00b900;
}

.line-text h3 {
    font-size: 1.6rem;
    color: #00b900;
    margin-bottom: 15px;
    font-weight: 700;
}

.line-text p {
    margin-bottom: 10px;
    color: #444;
    line-height: 1.6;
}

.line-text .note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 185, 0, 0.2);
}

.btn-line {
    display: inline-block;
    background-color: #06C755;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
}

.btn-line:hover {
    background-color: #05b34c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(6, 199, 85, 0.4);
}

.shop-details {
    text-align: center;
    position: relative;
    padding-top: 40px;
}

.shop-details::before {
    content: 'SHOP INFO';
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: #d35400;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    opacity: 0.6;
}

.shop-details h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Shippori Mincho', serif;
}

.shop-address {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #555;
}

.shop-tel {
    font-size: 1.5rem;
    font-family: 'Oswald', sans-serif;
    color: #333;
    margin-bottom: 20px;
    display: block;
}

.shop-hours {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .bento-hero h1 {
        font-size: 2.5rem;
        /* Reduced from 3rem */
        word-break: break-word;
    }

    .hero-title {
        font-size: 2.5rem;
        /* Ensure hero title fits */
        word-break: break-word;
        padding: 0 10px;
    }

    .section-title {
        font-size: 2rem;
        /* Reduced section title size */
        word-break: break-word;
    }

    .line-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .info-box {
        padding: 30px 20px;
    }

    .shop-details h3 {
        font-size: 1.5rem;
        word-break: break-word;
    }
}

/* Instagram CTA */
.instagram-cta {
    display: block;
    text-align: center;
    margin-bottom: 50px;
    padding: 40px;
    background-color: #fff0f5;
    /* Light pinkish bg */
    border-radius: 12px;
    border: 2px dashed #E1306C;
    /* Instagram Pink */
}

.instagram-text h3 {
    font-size: 1.6rem;
    color: #E1306C;
    margin-bottom: 15px;
    font-weight: 700;
}

.instagram-text p {
    margin-bottom: 10px;
    color: #444;
    line-height: 1.6;
}

.btn-instagram {
    display: inline-block;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(220, 39, 67, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(220, 39, 67, 0.4);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .instagram-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}

/* Party Page Styles */
.page-hero {
    height: 60vh;
    min-height: 400px;
}

.party-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.feature-item h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-item ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plan-card {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    border: 1px solid #333;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.plan-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.02);
}

.plan-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-color);
    color: #000;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 0.8rem;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.plan-header {
    background: #222;
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.plan-header h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1;
}

.plan-price .tax {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
}

.plan-scene {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #aaa;
}

.plan-body {
    padding: 30px;
}

.plan-detail-group {
    margin-bottom: 25px;
}

.plan-detail-group:last-child {
    margin-bottom: 0;
}

.plan-detail-group h4 {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.plan-detail-group p,
.plan-detail-group ul {
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.6;
}

.plan-detail-group ul {
    list-style: disc;
    padding-left: 20px;
}

.plan-detail-group ul li {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: none;
    }

}


.event-desc {
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.6;
}

.btn-small.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #555;
    color: #555;
}

.btn-small.disabled:hover {
    border-color: #555;
    color: #555;
}

.event-date .year {
    font-size: 0.7rem;
    color: #888;
    margin-top: 2px;
}

.event-price {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-top: 5px;
    font-weight: 700;
}

.event-price .note {
    font-size: 0.8rem;
    color: #888;
    font-weight: 400;
}

.event-flyer {
    max-width: 100%;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.event-flyer img {
    width: 100%;
    height: auto;
    display: block;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.contact-info-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 4px;
    display: inline-block;
}

.contact-label {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 10px;
}

.contact-tel,
.contact-email {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-tel a,
.contact-email a {
    color: #fff;
    transition: var(--transition);
}

.contact-tel a:hover,
.contact-email a:hover {
    color: var(--accent-color);
}


/* Lunch Menu Styles */
.lunch-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.menu-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    /* Reduced from 20px */
    border-radius: 4px;
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--accent-color);
}

.menu-item.highlight {
    background: rgba(224, 177, 69, 0.1);
    border: 1px solid rgba(224, 177, 69, 0.3);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.menu-item h3 {
    font-size: 0.95rem;
    /* Reduced from 1rem */
    color: #fff;
    font-weight: 500;
}

.menu-item .price {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-size: 1rem;
    /* Reduced from 1.1rem */
    font-weight: 700;
}

.menu-desc {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 5px;
}

.lunch-includes {
    background: #222;
    padding: 30px;
    border-radius: 8px;
    border: 1px dashed #444;
}

.include-title {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.include-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.include-items span {
    background: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #ddd;
}

.note {
    font-size: 0.8rem;
    color: #888;
}

/* Event Menu Styles */
.menu-grid-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.menu-image-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    /* Reduced from 15px */
    border-radius: 8px;
    text-align: center;
}

.menu-image-card h3 {
    margin-bottom: 15px;
    color: var(--accent-color);
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.menu-image-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}


/* Rental Page Styles */
.rental-pricing-container {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.pricing-table th,
.pricing-table td {
    padding: 15px;
    border: 1px solid #444;
    text-align: center;
}

.pricing-table th {
    background: #222;
    color: var(--accent-color);
    font-weight: 700;
}

.pricing-table .highlight-cell {
    background: #333;
    font-weight: 700;
    vertical-align: middle;
}

.pricing-table .stage-fee-row {
    background: rgba(224, 177, 69, 0.1);
}

.pricing-table .stage-fee-row td {
    font-weight: 700;
    color: var(--accent-color);
}

.stage-fee-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
}

.stage-fee-box h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.rental-notes {
    background: #222;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    max-width: 800px;
    margin: 40px auto 0;
}

/* Schedule Timeline Styles */
.schedule-example-section {
    max-width: 800px;
    margin: 60px auto 0;
}

.schedule-timeline {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: #444;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item .time {
    width: 80px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-color);
    text-align: right;
    padding-right: 20px;
}

.timeline-item .event {
    padding-left: 40px;
    font-size: 1.1rem;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 96px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #222;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.highlight .event {
    font-weight: 700;
    color: #fff;
    font-size: 1.3rem;
}

.timeline-item.highlight::after {
    background: var(--accent-color);
    width: 14px;
    height: 14px;
    left: 94px;
}

@media (max-width: 600px) {
    .schedule-timeline::before {
        left: 70px;
    }

    .timeline-item .time {
        width: 60px;
        font-size: 1rem;
    }

    .timeline-item::after {
        left: 66px;
    }

    .timeline-item.highlight::after {
        left: 64px;
    }
}

.rental-notes h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.note-list {
    list-style: disc;
    padding-left: 20px;
    color: #ccc;
}

.note-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.text-accent {
    color: var(--accent-color);
    font-weight: 700;
}

.rental-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 40px auto 0;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.info-card h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.info-card .big-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Staff Section */
/* Staff Section Redesign */
.staff-section {
    background: #fff;
    padding: 100px 0;
}

.staff-section .section-title {
    color: #000;
}

.staff-section .section-subtitle {
    color: #666;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.staff-card {
    text-align: center;
    position: relative;
    padding-top: 20px;
}

.staff-photo-wrapper {
    position: relative;
    width: 320px;
    height: 380px;
    margin: 0 auto 30px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.staff-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.8;
    transition: transform 0.4s ease;
}

/* Owner Shape - Blue Triangle pointing up-right */
.shape-1 {
    background-color: #a0d8ef;
    clip-path: polygon(0% 100%, 100% 100%, 100% 20%);
    transform: rotate(-10deg) scale(1.1);
}

/* Bento Shape - Pink Triangle pointing up-left */
.shape-2 {
    background-color: #f5b2b2;
    clip-path: polygon(0% 20%, 0% 100%, 100% 100%);
    transform: rotate(10deg) scale(1.1);
}

/* Sound Shape - Green Polygon */
.shape-3 {
    background-color: #e0e05a;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    transform: rotate(5deg) scale(1.0);
}

.staff-img {
    max-width: 120%;
    max-height: 120%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
    transform: scale(1.2);
}

/* Shape rotation on hover */
.staff-card:hover .shape-1 {
    transform: rotate(-5deg) scale(1.1);
}

.staff-card:hover .shape-2 {
    transform: rotate(15deg) scale(1.1);
}

.staff-card:hover .shape-3 {
    transform: rotate(10deg) scale(1.0);
}

/* Guitar decoration with job title badge */
.staff-guitar-decoration {
    position: absolute;
    bottom: -47px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background banner for title */
.staff-guitar-decoration::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -20px;
    right: -20px;
    height: 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-top: 3px solid #c41e3a;
    z-index: -1;
}

.staff-guitar-decoration img {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.5));
    position: absolute;
    z-index: 5;
}

.guitar-1 img {
    transform: rotate(-25deg);
    left: 10px;
    bottom: 5px;
}

.guitar-2 img {
    transform: rotate(20deg);
    right: 10px;
    bottom: 5px;
}

.guitar-3 img {
    transform: rotate(-15deg);
    left: 15px;
    bottom: 5px;
}

.staff-title {
    position: relative;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    z-index: 6;
    padding: 18px 0;
}

.staff-info {
    padding: 0 15px;
    margin-top: 58px;
    /* Increased from 50px to move names down */
    text-align: center;
}

.staff-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #222;
    font-family: 'Noto Sans JP', sans-serif;
}

.staff-comment {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
    position: relative;
    padding: 0 20px;
    font-style: italic;
}

.staff-comment::before {
    content: '“';
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 2rem;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: serif;
}

.staff-comment::after {
    content: '”';
    position: absolute;
    bottom: -20px;
    right: 0;
    font-size: 2rem;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: serif;
}

@media (max-width: 768px) {
    .staff-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .staff-photo {
        height: 350px;
    }
}

/* Gallery Section (Slideshow) */
.gallery-section {
    padding: 60px 0;
    background-color: #000;
    overflow: hidden;
}

.gallery-slider {
    width: 100%;
    margin-top: 40px;
    position: relative;
}

.gallery-track {
    display: flex;
    width: calc(400px * 8);
    /* 400px width * 8 images (4 original + 4 duplicate) */
    animation: scroll 40s linear infinite;
}

.slide-item {
    width: 400px;
    height: 300px;
    padding: 0 10px;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(30%);
    transition: 0.3s;
}

.slide-item img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-400px * 4));
        /* Move by half the total width */
    }
}

/* Mobile Responsive for Gallery */
@media (max-width: 768px) {
    .slide-item {
        width: 300px;
        height: 220px;
    }

    .gallery-track {
        width: calc(300px * 8);
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-300px * 4));
        }
    }
}

/* FAQ Page Styles */
.faq-section {
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #333;
    font-weight: 700;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #d35400;
    transition: transform 0.3s;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
    /* Approximate max height */
    border-top: 1px solid #eee;
}

.faq-answer p,
.payment-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #333;
    /* Ensure text is dark */
}

.payment-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    color: #333;
    /* Ensure list text is dark */
}

.payment-list li {
    margin-bottom: 10px;
    padding-left: 15px;
    border-left: 3px solid #d35400;
}

.text-red {
    color: #e74c3c;
    font-weight: bold;
}

/* FAQ Link Section on Home */
.faq-link-section {
    background-color: #111;
    padding: 80px 0;
    border-top: 1px solid #333;
}

.faq-link-section p {
    color: #ccc;
}

.child-price-note {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
    text-align: left;
    max-width: 600px;
    width: 100%;
}

.child-price-note h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
}

.child-price-note p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

/* Live Event Mobile Optimization (Moved to end for priority) */
@media (max-width: 768px) {
    .event-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 20px !important;
    }

    .event-date {
        flex-direction: row !important;
        align-items: baseline !important;
        gap: 10px !important;
        margin-right: 0 !important;
        margin-bottom: 15px !important;
        min-width: auto !important;
    }

    .event-date .day {
        font-size: 1.5rem !important;
    }

    .event-date .month,
    .event-date .year {
        font-size: 0.9rem !important;
    }

    .event-info h3 {
        font-size: 1.2rem !important;
    }

    .event-action {
        width: 100% !important;
        margin-top: 20px !important;
    }

    .event-action .btn-small {
        width: 100% !important;
        text-align: center !important;
        padding: 12px !important;
    }

    .event-flyer {
        margin-top: 15px !important;
    }
}

/* Showbill Section */
.showbill-section {
    background-color: #f0ebe0;
    /* Creamy background similar to the image */
    padding: 60px 0;
    overflow: hidden;
    /* Hide scrollbar if needed */
}

.showbill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 5%;
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 15px;
}

.showbill-header .section-title {
    font-family: 'Oswald', sans-serif;
    /* Using Oswald for a bold look */
    font-size: 3rem;
    color: #2c2c2c;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.see-all-link {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: #8b5a2b;
    /* Brownish color */
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.see-all-link:hover {
    color: #5e3a1a;
}

.showbill-container {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 5%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* For smooth scrolling on iOS */
    scrollbar-width: none;
    /* Firefox */
}

.showbill-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.showbill-card {
    flex: 0 0 300px;
    /* Fixed width for cards */
    background-color: #e8e4d9;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.date-badge {
    position: absolute;
    top: 0;
    left: 20px;
    background-color: #4a6fa5;
    /* Blue-ish color from image */
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    z-index: 10;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Alternate badge color */
.showbill-card:nth-child(even) .date-badge {
    background-color: #a57c4a;
    /* Brown-ish color */
}

.date-badge .month {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.date-badge .day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.card-image {
    height: 180px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showbill-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
    text-align: center;
}

.card-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-time {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    font-family: 'Noto Sans JP', sans-serif;
}

.btn-reserve-seat {
    display: block;
    width: 100%;
    padding: 10px 0;
    background-color: transparent;
    border: 1px solid #8b5a2b;
    color: #8b5a2b;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-reserve-seat:hover {
    background-color: #8b5a2b;
    color: #fff;
}

/* Downloads Section */
.downloads-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.scroll-hint {
    font-size: 0.85rem;
    color: #888;
    margin-top: 10px;
    display: none;
    /* Hidden on desktop */
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Slightly smaller min-width */
    gap: 20px;
    margin-top: 40px;
}

.download-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    /* Smaller padding */
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.download-icon {
    font-size: 2.5rem;
    /* Smaller icon */
    color: #c41e3a;
    margin-bottom: 15px;
}

.download-content h3 {
    font-size: 1rem;
    /* Smaller title */
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.download-content p {
    font-size: 0.8rem;
    /* Smaller subtitle */
    color: #666;
    margin-bottom: 15px;
}

.btn-download {
    display: inline-block;
    padding: 8px 20px;
    /* Smaller button */
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.btn-download:hover {
    background-color: #c41e3a;
    color: #fff;
}

.btn-download i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .scroll-hint {
        display: block;
        /* Show on mobile */
    }

    .downloads-grid {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .download-card {
        min-width: 220px;
        /* Smaller min-width for mobile */
        flex: 0 0 auto;
        scroll-snap-align: center;
    }
}