@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap');

:root {
    --primary-color: #101258;
    --accent-cream: #FFF4CC;
    --accent-beige: #EFE0CE;
    --text-brown: #4A3728;
    --section-margin-sp: 80px;
    --section-margin-pc: 120px;
}

body {
    font-family: 'Noto Serif JP', serif;
    color: var(--text-brown);
    line-height: 1.8;
    letter-spacing: 0.05em;
    background-color: #fff;
    overflow-x: hidden;
}

/* Base Styles */
h1,
h2,
h3,
h4 {
    color: var(--primary-color);
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Custom Spacing */
.section-margin {
    margin-bottom: var(--section-margin-sp);
}

@media (min-width: 1024px) {
    .section-margin {
        margin-bottom: var(--section-margin-pc);
    }
}

/* Section Header Styles - Text Only */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-eng {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2;
}

.section-title-jp {
    font-size: 0.9rem;
    color: var(--text-brown);
    opacity: 0.7;
    margin-top: 5px;
    letter-spacing: 0.2em;
}

/* Swiper Styles */
.swiper-fv {
    width: 100%;
}

.swiper-fv .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Parallax */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 1024px) {
    .parallax-bg {
        background-attachment: scroll;
        /* Mobile doesn't handle fixed well */
    }
}

/* CTA */
.cta-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    display: flex;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Top Button */
.btn-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 40;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-top.active {
    opacity: 1;
}

/* Right Click Disable Message */
#no-right-click-msg {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px;
    z-index: 9999;
}

/* Modal Overlay */
.luminous-backdrop {
    background-color: rgba(16, 18, 88, 0.9);
}

/* Mobile Menu */
#mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    color: #fff;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
}

#mobile-menu.open {
    transform: translateY(0);
}

.mobile-nav-link {
    font-size: 1.5rem;
    margin: 15px 0;
}

/* Responsive Image for FV */
.responsive-fv-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery Slider fix - strictly inside site container */
.gallery-container {
    width: 100%;
    max-width: 1152px;
    /* Equivalent to lg:max-w-6xl */
    margin: 0 auto;
    padding: 0 1rem;
    overflow: hidden;
}

.swiper-gallery {
    width: 100%;
    padding: 10px 0;
    /* Space for accidental shadows if added later */
}

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

.staff-icon {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
}