/* Custom styles for Les Indétronables */

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --light-color: #f3f4f6;
    --dark-color: #1f2937;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.navbar-brand img {
    transition: transform 0.3s ease;
    max-height: 40px;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

/* Cards */
.card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 1rem;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.card-body {
    padding: 2rem;
}

/* Registration Form */
.card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
}

.card .bg-light {
    background-color: #f8f9fa !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.card .bg-light .card-title {
    color: #E31E24;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card .bg-light .card-text,
.card .bg-light ul li {
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.6;
}

.card .bg-light ul {
    padding-left: 1.2rem;
}

.card .bg-light ul li {
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

/* Forms */
.form-control {
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

/* Badges */
.badge {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: #003153;
    color: #ffffff;
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer h5 {
    color: #E31E24;
    font-family: 'Russo One', sans-serif;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer p {
    color: #b0b0b0;
    line-height: 1.6;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #E31E24;
    text-decoration: none;
}

.partners-list li a {
    display: block;
    padding: 0.3rem 0;
    color: #b0b0b0;
    transition: all 0.3s ease;
}

.partners-list li a:hover {
    color: #E31E24;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(227, 30, 36, 0.9);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link i {
    font-size: 1.2rem;
    color: white;
}

.social-link:hover {
    background: #E31E24;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-link:hover i {
    color: white;
}

/* Footer specific social links */
.footer .social-link {
    background: rgba(255, 255, 255, 0.15);
}

.footer .social-link:hover {
    background: #E31E24;
}

.footer .social-link i {
    color: white;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-divider {
    margin: 2rem 0;
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    padding-top: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer h5 {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .text-end {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    .footer-logo {
        height: 35px;
    }
}

/* Membership Status Cards */
.status-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 1rem;
    padding: 2rem;
}

.status-card .badge {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
}

/* Benefits Icons */
.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Benefits text */
.text-muted {
    color: #b0b0b0 !important;
    font-weight: 500;
}

.benefit-text {
    color: #d4d4d4 !important;
    font-weight: 500;
}

/* Partner Cards */
.partner-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
}

.partner-card img {
    object-fit: cover;
    height: 200px;
    width: 100%;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .card-body {
        padding: 1.5rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .navbar-brand img {
        max-height: 30px;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer h5 {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .text-end {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    .footer-logo {
        height: 35px;
    }
}

/* WhatsApp Integration */
.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
}
