@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700&display=swap');

/* Tailwind will handle most styles, but here are specific overrides */

:root {
    --color-brown: #8D6E63;
    --color-yellow: #FFF59D;
    --color-lightblue: #E1F5FE;
    --text-color: #333;
}

body {
    font-family: "Zen Maru Gothic", serif;
    color: var(--text-color);
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-size: 16px;
    background-color: #f9f9f9;
    /* Soft background */
}

/* Swiper specific */
.swiper-slide {
    height: auto;
    width: 100%;
}

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

/* Scroll Down Animation */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {

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

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Custom Hamburger */
.hamburger-line {
    transition: all 0.3s ease-in-out;
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Modal Styles are handled via Tailwind CSS classes in HTML */