/* Footer CSS Variables */
:root {
    --footer-bg: #1a252f;
    --footer-legal-bg: #0d161f;
    --footer-text: #b0b7c3;
    --footer-link: #e9ecef;
    --footer-link-hover: #dc3545;
    --footer-accent: #D4AF37;
}

/* Footer Base */
.footer-vizzer {
    background: var(--footer-bg);
    color: var(--footer-text);
    font-family: 'Raleway', sans-serif;
    margin-top: auto;
}

/* Footer Main Section */
.footer-main {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Logo in Footer */
.footer-logo {
    font-size: 2rem;
    color: white !important;
    text-decoration: none;
}

.footer-logo .badge-french {
    font-size: 0.7rem;
    margin-left: 8px;
}

/* Footer Titles */
.footer-title {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: white;
    border-bottom: 2px solid var(--footer-accent);
    padding-bottom: 10px;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-subtitle {
    font-weight: 600;
    color: var(--footer-text);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer About Text */
.footer-about {
    line-height: 1.7;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Footer Lists */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-link {
    color: var(--footer-link);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.footer-link:hover {
    color: var(--footer-link-hover);
    transform: translateX(5px);
}

.footer-link i {
    width: 20px;
    text-align: center;
}

/* Social Icons */
.social-links .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links .social-icon:hover {
    background: var(--footer-link-hover);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-item i {
    font-size: 1.1rem;
}

/* Newsletter Form */
.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 4px;
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--footer-accent);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.newsletter-form .btn-primary {
    background: var(--footer-link-hover);
    border: none;
    border-radius: 4px;
}

/* Legal Footer */
.footer-legal {
    background: var(--footer-legal-bg);
    font-size: 0.85rem;
}

.legal-links {
    display: inline-block;
}

.legal-link {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s;
    margin: 0 5px;
}

.legal-link:hover {
    color: var(--footer-accent);
}

/* Age Restriction & Badges */
.age-restriction,
.payment-methods,
.made-in-france {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-logo {
        font-size: 1.8rem;
    }
    
    .social-links .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .legal-links {
        display: block;
        margin-top: 5px;
    }
}

@media (max-width: 576px) {
    .footer-main .col-md-6 {
        margin-bottom: 30px;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
}