/* =============================================
   Excellence Déménagement - Custom Styles
   Colors: #E1AE63 (Gold) | #0F1B3A (Navy)
   ============================================= */

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

/* Typography - Playfair Display pour les titres */
h1, h2, h3, h4, .font-display, .font-serif {
    font-family: "Playfair Display", serif;
}

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

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

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

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

/* Selection color */
::selection {
    background: #E1AE63;
    color: #0F1B3A;
}

/* Form focus styles */
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

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

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

/* Pagination styles */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0F1B3A;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.nav-links .page-numbers:hover {
    background: #E1AE63;
    color: #0F1B3A;
    border-color: #E1AE63;
}

.nav-links .page-numbers.current {
    background: #0F1B3A;
    color: white;
    border-color: #0F1B3A;
}

/* Phone button pulse effect */
@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(225, 174, 99, 0.4);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(225, 174, 99, 0);
    }
}

.pulse-gold {
    animation: pulse-gold 2s infinite;
}
