@charset "UTF-8";

/* Base Settings */
html {
    scroll-behavior: smooth;
    font-size: 14px;
}
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Copy Prevention */
.disable-copy {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Enforce No Shadow / No Radius on Images */
.no-shadow-radius {
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Parallax Background */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll;
    }
}

/* Swiper Customize */
.fv-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

/* Pure CSS Infinite Marquee */
.marquee-container {
    display: flex;
    overflow: hidden;
    width: 100%;
}
.marquee-track {
    display: flex;
    animation: marquee-scroll 25s linear infinite;
    will-change: transform;
}
@media (min-width: 768px) {
    .marquee-track {
        animation-duration: 35s;
    }
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.voice-swiper .swiper-slide {
    height: auto; 
}
.voice-pagination .swiper-pagination-bullet {
    background: #B8905B;
    opacity: 0.5;
}
.voice-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Header Hamburger Animation */
#hamburger-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
#hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}
#hamburger-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Animated Wave */
.wave-container {
    position: absolute;
    bottom: -1px; /* prevent 1px gap */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 20;
    pointer-events: none;
}
.wave-container svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 40px;
}
@media (min-width: 768px) {
    .wave-container svg {
        height: 100px;
    }
}
.wave-parallax > use {
    animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.wave-parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}
.wave-parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}
.wave-parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}
.wave-parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}
@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* Custom padding for SP on .p-6 elements */
@media (max-width: 767px) {
    .p-6 {
        padding: 40px 10px !important;
    }
}
