/* Bijou Création - Styles personnalisés */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.animate-slide-down {
    animation: slideDown 0.3s ease-out forwards;
}

/* Delays pour les animations en cascade */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }

/* Style de base pour le body */
body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: #FDFBF7;
    color: #2D3748;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
}

/* Effets de survol pour les cartes produits */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-card img {
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

/* Boutons */
.btn-primary {
    background-color: #CCA43B;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: transparent;
    border: 2px solid #CCA43B;
    color: #CCA43B;
}

.btn-outline {
    border: 2px solid #CCA43B;
    color: #CCA43B;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #CCA43B;
    color: white;
}

/* Menu dropdown */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/* Section Ils parlent de nous */
.press-section {
    background: linear-gradient(135deg, #2D3748 0%, #1a202c 100%);
}

/* Filtres de boutique */
.filter-btn {
    transition: all 0.3s ease;
}

.filter-btn.active {
    background-color: #CCA43B;
    color: white;
}

/* Formulaire de contact */
.form-input {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    border-color: #CCA43B;
    box-shadow: 0 0 0 3px rgba(202, 164, 59, 0.1);
    outline: none;
}

/* Footer */
footer {
    background-color: #2D3748;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Images lazy loading placeholder */
img[loading="lazy"] {
    background-color: #E2E8F0;
}

/* Mobile menu */
.mobile-menu {
    transition: transform 0.3s ease;
}

.mobile-menu.hidden {
    transform: translateX(-100%);
}

/* Hero overlay */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

/* Accordion */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 500px;
}

/* Scrollbar personnalisée */
::-webkit-scrollbar {
    width: 8px;
}

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

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

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