@charset "UTF-8";

/* Global Settings */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

/* Margin Utility */
.section-margin-large {
    margin-bottom: 80px;
}

@media (min-width: 768px) {
    .section-margin-large {
        margin-bottom: 120px;
    }
}

/* Text Shadow for overlay text */
.shadow-text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Swiper Settings */
.fv-swiper {
    width: 100%;
    /* Height is auto based on image, but we ensure it doesn't collapse */
    min-height: 300px;
}

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

.fv-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
    /* Remove bottom gap */
}


/* Gallery Swiper (SP only) */
.gallery-swiper {
    padding-bottom: 30px;
}

.gallery-swiper .swiper-pagination-bullet-active {
    background-color: #333;
}

/* Voice Swiper */
.voice-swiper {
    overflow: visible !important;
    /* Allow shadow to be seen */
}

/* Parallax Effect */
.bg-fixed {
    background-attachment: scroll;
    /* Default for mobile */
}

@media (min-width: 1024px) {
    .bg-fixed {
        background-attachment: fixed;
    }
}

/* Mobile Menu Transitions */
#mobile-menu.open {
    transform: translateX(0);
}

.menu-link {
    display: block;
    width: 100%;
    padding: 10px 0;
    transition: color 0.3s;
}

.menu-link:hover {
    color: #FDFBF7;
    /* Cream */
    opacity: 0.8;
}

/* Disable Select */
body {
    user-select: none;
    -webkit-user-select: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #FDFBF7;
}

::-webkit-scrollbar-thumb {
    background: #A69279;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8c7b66;
}