/* assets/css/contact.css - Contact Page avec footer responsive comme privacy.css */

:root {
    --mauve: #B79AC5;
    --mauve-dark: #9B7BAA;
    --mauve-light: #E6D9F2;
    --noir: #1A1A1A;
    --or: #D4AF8C;
    --blanc-casse: #F9F7F5;
    --gris: #3E3E3E;
    --gris-light: #F5F5F5;
    --rose-pale: #FCE4EC;
    --charcoal: #2C2C2C;
    --success: #4CAF50;
    --danger: #F44336;
    --warning: #FFC107;
    --font-titre: 'Playfair Display', serif;
    --font-texte: 'Montserrat', sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ----- RESET SUPPLEMENTAIRE POUR MOBILE ----- */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ----- HERO VIDEO SECTION ----- */
.contact-hero {
    width: 100%;
    position: relative;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.hero-overlay h1 {
    font-family: var(--font-titre);
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    animation: fadeInUp 1s ease;
}

.hero-overlay p {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 1px;
    font-family: var(--font-texte);
    animation: fadeInUp 1s ease 0.2s both;
}

.video-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 20;
}

.volume-btn {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border: 2px solid white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.volume-btn:hover {
    background: var(--mauve);
    transform: scale(1.1);
}

/* ----- CONTACT INFORMATION SECTION ----- */
.contact-info-section {
    padding: 80px 0;
    background: var(--blanc-casse);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Left Column */
.contact-details-col h2,
.contact-payment-col h2 {
    font-family: var(--font-titre);
    font-size: 2rem;
    color: var(--noir);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.contact-details-col h2::after,
.contact-payment-col h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--mauve), var(--mauve-dark));
    border-radius: 2px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: white;
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--mauve-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--mauve-dark);
    flex-shrink: 0;
}

.contact-text h3 {
    font-family: var(--font-titre);
    font-size: 1.2rem;
    color: var(--noir);
    margin-bottom: 5px;
}

.contact-text a {
    color: var(--mauve);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s;
    display: inline-block;
    margin-bottom: 5px;
}

.contact-text a:hover {
    color: var(--mauve-dark);
    text-decoration: underline;
}

.contact-desc {
    color: var(--gris);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Social Icons - Fond noir visible */
.contact-social {
    margin-top: 40px;
}

.contact-social h3 {
    font-family: var(--font-titre);
    font-size: 1.2rem;
    color: var(--noir);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--noir); /* Fond noir */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; /* Icônes en blanc */
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.social-icon:hover {
    background: var(--mauve); /* Mauve au survol */
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Right Column - Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.payment-method {
    background: white;
    border-radius: var(--radius-md);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.payment-method i {
    font-size: 2rem;
    color: var(--mauve);
}

.payment-method span {
    font-family: var(--font-texte);
    font-weight: 500;
    color: var(--noir);
}

.coming-soon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-md);
    padding: 15px;
    color: white;
}

.coming-soon p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.coming-soon i {
    font-size: 1.2rem;
}

/* ----- IMAGE BANNER SECTION (TEXTE CENTRÉ) ----- */
.image-banner-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.image-banner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 21/9;
    object-fit: cover;
}

.banner-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
    z-index: 10;
    width: 90%;
    max-width: 800px;
    background: transparent; /* Pas de fond */
}

.banner-text-overlay h3 {
    font-family: var(--font-titre);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.banner-text-overlay p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 300;
    font-family: var(--font-texte);
}

.banner-email {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--mauve);
    padding-bottom: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.banner-email:hover {
    color: var(--mauve);
    border-bottom-color: white;
}

/* ----- FOOTER STYLES (IDENTIQUE À PRIVACY.CSS) ----- */
.site-footer {
    background-color: var(--noir);
    color: var(--blanc-casse);
    padding: 60px 0 30px;
    font-family: var(--font-texte);
    margin-top: 60px;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: var(--font-titre);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
    font-family: var(--font-texte);
}

.footer-col a:hover {
    color: var(--mauve);
}

.footer-logo {
    font-family: var(--font-titre);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
    color: white;
}

.footer-contact p {
    margin: 5px 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    font-family: var(--font-texte);
}

.payment-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    font-size: 2rem;
    color: rgba(255,255,255,0.6);
}

.payment-icons i {
    transition: color 0.2s;
}

.payment-icons i:hover {
    color: var(--mauve);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    font-family: var(--font-texte);
}

/* =========================================== */
/* ===== RESPONSIVE MOBILE FIRST ===== */
/* =========================================== */

/* Responsive pour top bar (comme privacy) */
@media (max-width: 992px) {
    .top-bar .container {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 10px !important;
    }
    
    .top-bar-left {
        gap: 12px !important;
    }
    
    .top-bar {
        font-size: 0.75rem !important;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        padding: 0 8px !important;
    }
    
    .top-bar-left {
        gap: 10px !important;
    }
    
    .top-bar a, .top-bar span {
        font-size: 0.7rem !important;
    }
    
    .top-bar i {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 650px) {
    .top-bar .container {
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 0 5px !important;
    }
    
    .top-bar-left {
        flex-wrap: nowrap !important;
        gap: 8px !important;
    }
    
    .top-bar a, .top-bar span {
        white-space: nowrap !important;
        font-size: 0.65rem !important;
    }
}

/* Responsive pour le contenu */
@media (max-width: 1024px) {
    .hero-overlay h1 {
        font-size: 2.8rem;
    }
    
    .contact-grid {
        gap: 30px;
    }
    
    .banner-text-overlay h3 {
        font-size: 2rem;
    }
    
    .banner-email {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .hero-video-container {
        height: 60vh;
        min-height: 400px;
    }

    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .volume-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }

    .banner-img {
        aspect-ratio: 16/9;
    }

    .banner-text-overlay h3 {
        font-size: 1.8rem;
    }

    .banner-text-overlay p {
        font-size: 1rem;
    }

    .banner-email {
        font-size: 1.1rem;
    }

    /* ----- FOOTER (IDENTIQUE À PRIVACY.CSS 768px) ----- */
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .payment-icons {
        font-size: 1.8rem;
        gap: 12px;
        flex-wrap: wrap;
    }
    .footer-col ul {
        margin-bottom: 10px;
    }
    .footer-col h4 {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero-video-container {
        height: 50vh;
        min-height: 350px;
    }

    .hero-overlay h1 {
        font-size: 1.8rem;
    }

    .hero-overlay p {
        font-size: 0.95rem;
    }

    .contact-info-section {
        padding: 60px 0;
    }

    .contact-details-col h2,
    .contact-payment-col h2 {
        font-size: 1.8rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 15px;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .payment-method {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .banner-text-overlay h3 {
        font-size: 1.5rem;
    }

    .banner-text-overlay p {
        font-size: 0.9rem;
    }

    .banner-email {
        font-size: 1rem;
    }

    /* ----- FOOTER (IDENTIQUE À PRIVACY.CSS 576px) ----- */
    .payment-icons {
        font-size: 1.6rem;
        gap: 10px;
    }
    .footer-contact p {
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .hero-video-container {
        height: 45vh;
        min-height: 300px;
    }

    .hero-overlay h1 {
        font-size: 1.5rem;
    }

    .contact-details-col h2,
    .contact-payment-col h2 {
        font-size: 1.5rem;
    }

    .contact-text h3 {
        font-size: 1.1rem;
    }

    .contact-text a {
        font-size: 0.9rem;
    }

    .contact-desc {
        font-size: 0.8rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .coming-soon p {
        font-size: 0.9rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .banner-text-overlay h3 {
        font-size: 1.2rem;
    }

    .banner-text-overlay p {
        font-size: 0.8rem;
    }

    .banner-email {
        font-size: 0.9rem;
    }

    /* ----- FOOTER – très petits écrans (identique à privacy.css) ----- */
    .payment-icons {
        font-size: 1.4rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}