/* Furla Italia - Custom Styles */
/* Elegant Burgundy/Wine + Gold Color Palette for Italian Luxury Leather Goods */

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

/* ===== BURGUNDY/WINE COLOR PALETTE ===== */
/* Primary accent - elegant wine/burgundy for Italian luxury */
.bg-furla-100 {
    background-color: #f8e8e8;
}
.bg-furla-200 {
    background-color: #edd4d4;
}
.bg-furla-500 {
    background-color: #8B3A42;
}
.bg-furla-600 {
    background-color: #722F37;
}
.text-furla-200 {
    color: #edd4d4;
}
.text-furla-500 {
    color: #8B3A42;
}
.text-furla-600 {
    color: #722F37;
}
.border-furla-500 {
    border-color: #8B3A42;
}
.ring-furla-500 {
    --tw-ring-color: #8B3A42;
}

/* ===== GOLD ACCENT ===== */
.bg-gold-100 {
    background-color: #fef7e8;
}
.bg-gold-200 {
    background-color: #fcedc7;
}
.text-gold-500 {
    color: #B8860B;
}
.text-gold-600 {
    color: #9a7309;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse-soft {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

.animate-fade-up-delay {
    animation: fadeUp 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-pulse {
    animation: pulse-soft 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ===== HEADER STYLES ===== */
#header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

/* ===== MOBILE MENU ===== */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #a8a29e;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #78716c;
}

/* ===== FOCUS STYLES FOR ACCESSIBILITY ===== */
button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid #8B3A42;
    outline-offset: 2px;
}

/* ===== FORM INPUT STYLES ===== */
input::placeholder {
    color: #a8a29e;
}

input:focus {
    outline: none;
}

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

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background-color: #d6d3d1;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.testimonial-dot.active {
    background-color: #8B3A42;
}

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

/* ===== SELECTION STYLES ===== */
::selection {
    background-color: #8B3A42;
    color: white;
}

::-moz-selection {
    background-color: #8B3A42;
    color: white;
}
