/* Zoro Action Figure - Prestige theme, palette Zoro (verde + scuro) */

/* ===== 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;
}

/* ===== ACCENT (Zoro green - gold-500 classes reused) ===== */
.bg-gold-500 {
    background-color: #2D7A3E;
}
.bg-gold-500\/5 {
    background-color: rgba(45, 122, 62, 0.05);
}
.bg-gold-500\/20 {
    background-color: rgba(45, 122, 62, 0.2);
}
.text-gold-500 {
    color: #2D7A3E;
}
.text-gold-500\/20 {
    color: rgba(45, 122, 62, 0.2);
}
.border-gold-500 {
    border-color: #2D7A3E;
}
.fill-gold-500 {
    fill: #2D7A3E;
}
.hover\:text-gold-500:hover {
    color: #2D7A3E;
}
.hover\:bg-gold-500:hover {
    background-color: #2D7A3E;
}
.group:hover .group-hover\:text-gold-500 {
    color: #2D7A3E;
}
.group:hover .group-hover\:bg-gold-500 {
    background-color: #2D7A3E;
}

/* ===== DARK ===== */
.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 ===== */
.bg-cream {
    background-color: #F5F0EB;
}
.bg-cream\/50 {
    background-color: rgba(245, 240, 235, 0.5);
}
.hover\:bg-cream:hover {
    background-color: #F5F0EB;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}
.animate-fade-up { animation: fadeUp 0.8s ease-out forwards; }
.animate-scroll-dot { animation: scrollDot 2s ease-in-out infinite; }

/* ===== INNER PAGE LAYOUT (hero below header, FAQ above footer) ===== */
.pt-24 { padding-top: 6rem; }
.mb-24 { margin-bottom: 6rem; }

/* ===== HEADER ===== */
#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 ===== */
.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 ===== */
#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: #2D7A3E; width: 24px; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F5F0EB; }
::-webkit-scrollbar-thumb { background: #2D7A3E; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #246030; }

/* ===== FOCUS / SELECTION ===== */
button:focus-visible, a:focus-visible, input:focus-visible {
    outline: 2px solid #2D7A3E;
    outline-offset: 2px;
}
::selection { background-color: #2D7A3E; color: #0A0A0A; }
::-moz-selection { background-color: #2D7A3E; 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; }
}
