/* Custom styles for ASIA2 LP */

:root {
    --n-red: #b91c1c;
    --neon-pink: #ff00ff;
    --neon-blue: #00d4ff;
    --neon-purple: #9d00ff;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-family: 'Playfair Display', serif;
    color: #fff;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 375px) {
    .section-title {
        font-size: 1.4rem;
    }
}

.section-subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    color: #9ca3af;
    text-transform: uppercase;
    margin-top: 1rem;
}

/* Neon Glow Button */
.cta-neon-btn {
    display: block;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    color: #fff;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-neon-btn:hover {
    border-color: var(--n-red);
    box-shadow: 0 0 15px rgba(185, 28, 28, 0.3);
    transform: translateY(-2px);
}

/* Reveal Animations */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal {
    transform: translateY(30px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.active {
    opacity: 1 !important;
    transform: none !important;
}

/* Scroll reveal color effect */
.active .about-reveal-img {
    filter: grayscale(0);
}

/* Swiper Fade Animation Override */
.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
}

.swiper-fade .swiper-slide-active {
    pointer-events: auto;
}

/* Scroll bounce animation */
@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(0);
    }

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

.animate-bounce-slow {
    animation: bounce-slow 2s infinite ease-in-out;
}

/* Parallax Simple */
.parallax-img {
    will-change: transform;
    transform: scale(1.1);
}

/* FV Zoom/Pan Animation */
.fv-zoom-img {
    animation: kenBurns 20s infinite alternate ease-in-out;
    transition: transform 0.5s ease;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
        object-position: center;
    }

    100% {
        transform: scale(1.15);
        object-position: 55% 50%;
    }
}

@media (max-width: 768px) {
    .fv-zoom-img {
        /* On mobile, use a stronger horizontal pan for wide images */
        animation: panMobile 15s infinite alternate ease-in-out;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@keyframes panMobile {
    0% {
        transform: scale(1.3);
        object-position: 0% 50%;
    }

    100% {
        transform: scale(1.3);
        object-position: 100% 50%;
    }
}

.fv-title,
.fv-subtitle {
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8), 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Neon Text Effects */
.neon-text-pink {
    text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff;
}

.neon-text-white {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Mobile Menu */
#mobile-menu.menu-active {
    opacity: 1;
    visibility: visible;
}

.menu-link {
    transition: color 0.3s;
}

.menu-link:hover {
    color: var(--n-red);
}

/* Disable selection for images */
img {
    user-select: none;
    -webkit-user-drag: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--n-red);
}

::-webkit-scrollbar-thumb:hover {
    background: #ef4444;
}