/* KPop Lightsticks - Prestige-based theme, K-Pop color palette */

/* ===== FONTS ===== */
body {
    font-family: 'Open Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

/* ===== K-POP ACCENT (magenta/pink - used as gold-500 in template) ===== */
.bg-gold-500 {
    background-color: #E91E8C;
}
.bg-gold-500\/5 {
    background-color: rgba(233, 30, 140, 0.05);
}
.bg-gold-500\/20 {
    background-color: rgba(233, 30, 140, 0.2);
}
.text-gold-500 {
    color: #E91E8C;
}
.text-gold-500\/20 {
    color: rgba(233, 30, 140, 0.2);
}
.border-gold-500 {
    border-color: #E91E8C;
}
.fill-gold-500 {
    fill: #E91E8C;
}
.hover\:text-gold-500:hover {
    color: #E91E8C;
}
.hover\:bg-gold-500:hover {
    background-color: #E91E8C;
}
.group:hover .group-hover\:text-gold-500 {
    color: #E91E8C;
}
.group:hover .group-hover\:bg-gold-500 {
    background-color: #E91E8C;
}

/* ===== DARK COLOR ===== */
.bg-dark {
    background-color: #0A0A0A;
}
.bg-dark\/85 {
    background-color: rgba(10, 10, 10, 0.85);
}
.text-dark {
    color: #0A0A0A;
}
.border-dark {
    border-color: #0A0A0A;
}
.hover\:bg-dark:hover {
    background-color: #0A0A0A;
}
.hover\:border-dark:hover {
    border-color: #0A0A0A;
}
.group:hover .group-hover\:bg-dark {
    background-color: #0A0A0A;
}

/* ===== CREAM BACKGROUND (light pink tint) ===== */
.bg-cream {
    background-color: #FDF2F8;
}
.bg-cream\/50 {
    background-color: rgba(253, 242, 248, 0.5);
}
.hover\:bg-cream:hover {
    background-color: #FDF2F8;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollDot {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

.animate-scroll-dot {
    animation: scrollDot 2s ease-in-out infinite;
}

/* ===== HEADER STYLES ===== */
#header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.08);
}

#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* ===== FAQ STYLES ===== */
.faq-item.active .faq-plus-vertical {
    display: none;
}

.faq-item.active .faq-icon {
    transform: rotate(0deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-content {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

/* ===== TESTIMONIAL CAROUSEL (MOBILE) ===== */
#testimonial-carousel { position: relative; }
#testimonial-track { display: flex; transition: transform 0.3s ease; }
#testimonial-track > div { flex: 0 0 100%; padding: 0 0.5rem; }
.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background-color: #d1d5db;
    transition: all 0.3s ease;
    cursor: pointer;
}
.testimonial-dot.active {
    background-color: #E91E8C;
    width: 24px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #FDF2F8; }
::-webkit-scrollbar-thumb { background: #E91E8C; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #c41875; }

/* ===== FOCUS / SELECTION ===== */
button:focus-visible, a:focus-visible, input:focus-visible {
    outline: 2px solid #E91E8C;
    outline-offset: 2px;
}
::selection { background-color: #E91E8C; color: #0A0A0A; }
::-moz-selection { background-color: #E91E8C; color: #0A0A0A; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media print {
    header, footer, #mobile-menu, button, .no-print { display: none !important; }
    body { background: white; color: black; }
    a { color: black; text-decoration: underline; }
}
