/* ============================================
   STYLES POUR HEADER ET FOOTER EN ROUGE VIF
   ============================================ */

/* Header Principal */
.site-header {
    background-color: #FF0000 !important;
    color: white !important;
}

.site-header a,
.site-header button {
    color: white !important;
}

.site-header a:hover,
.site-header button:hover {
    color: #FFD700 !important;
}

.site-header .site-nav a {
    color: white !important;
}

.site-header .site-nav a:hover,
.site-header .site-nav a.active {
    color: #FFD700 !important;
}

/* Boutons dans le header */
.site-header .btn-primary {
    background-color: #CC0000 !important;
    border-color: #CC0000 !important;
    color: white !important;
}

.site-header .btn-primary:hover {
    background-color: #990000 !important;
    border-color: #990000 !important;
}

.site-header .btn-outline {
    border-color: white !important;
    color: white !important;
    background-color: transparent !important;
}

.site-header .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

/* Menu mobile */
#mobile-menu {
    background-color: #FF0000 !important;
    color: white !important;
}

#mobile-menu a,
#mobile-menu button {
    color: white !important;
}

#mobile-menu a:hover,
#mobile-menu button:hover {
    color: #FFD700 !important;
}

#mobile-menu .btn-primary {
    background-color: #CC0000 !important;
    border-color: #CC0000 !important;
}

#mobile-menu .btn-outline {
    border-color: white !important;
    color: white !important;
}

/* Topbar */
.site-topbar {
    background-color: #FF0000 !important;
    color: white !important;
}

/* Midbar */
.site-midbar {
    background-color: #CC0000 !important;
    color: white !important;
}

.site-midbar a {
    color: white !important;
}

.site-midbar a:hover {
    color: #FFD700 !important;
}

/* Footer */
.site-footer,
footer.bg-gray-800 {
    background-color: #FF0000 !important;
    color: white !important;
}

.site-footer a,
footer.bg-gray-800 a {
    color: white !important;
}

.site-footer a:hover,
footer.bg-gray-800 a:hover {
    color: #FFD700 !important;
}

.site-footer h3,
footer.bg-gray-800 h3 {
    color: white !important;
}

.site-footer p,
footer.bg-gray-800 p {
    color: white !important;
}

.site-footer .border-gray-700,
footer.bg-gray-800 .border-gray-700 {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Styles généraux pour les boutons */
.btn-primary {
    background-color: #FF0000;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #FF0000;
}

.btn-primary:hover {
    background-color: #CC0000;
    border-color: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #FF0000;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #FF0000;
}

.btn-outline:hover {
    background-color: #FF0000;
    color: white;
    transform: translateY(-2px);
}

/* Animations */
.phone-shake {
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) infinite;
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }
    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }
    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

/* Logo */
.logo img {
    height: 60px;
    width: auto;
}

/* Overlay menu mobile */
#mobile-menu-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Popup propagande */
.propagande-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.propagande-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    max-width: 500px;
    width: 90%;
    display: none;
}

.propagande-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
}

.propagande-close:hover {
    color: #FF0000;
}

/* Shadow text */
.shadow-text {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }
}
