/* assets/css/privacy.css - Privacy Policy Page avec footer responsive comme women.css */

:root {
    --mauve: #B79AC5;
    --noir: #1A1A1A;
    --or: #D4AF8C;
    --blanc-casse: #F9F7F5;
    --gris: #3E3E3E;
    --rose-pale: #FCE4EC;
    --charcoal: #2C2C2C;
    --font-titre: 'Playfair Display', serif;
    --font-texte: 'Montserrat', sans-serif;
}

/* ----- RESET SUPPLEMENTAIRE POUR MOBILE ----- */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ----- STYLES SPÉCIFIQUES POUR LE TOP BAR (correction rectangle blanc + responsive sur une ligne) ----- */
.top-bar {
    background-color: var(--noir) !important;
    color: white !important;
    padding: 6px 0 !important;
    font-size: 0.8rem !important;
    width: 100% !important;
}

.top-bar .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

.top-bar-left {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}

.top-bar-right {
    display: flex !important;
    align-items: center !important;
}

.top-bar a, .top-bar span {
    color: white !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    white-space: nowrap !important;
}

/* Icônes en or sauf le globe */
.top-bar i:not(.fa-globe) {
    color: var(--or) !important;
    font-size: 0.9rem !important;
}

/* Le globe en noir */
.top-bar .fa-globe {
    color: var(--noir) !important;
    font-size: 0.9rem !important;
}

/* Style spécifique pour l'email */
.top-bar .contact-info,
.top-bar .contact-info a,
.top-bar a[href^="mailto:"] {
    color: white !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

/* ----- HERO SECTION ----- */
.privacy-hero {
    width: 100%;
    position: relative;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.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;
}

.hero-overlay p {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 1px;
    font-family: var(--font-texte);
}

/* ----- PRIVACY CONTENT SECTION ----- */
.privacy-content {
    padding: 80px 0;
    background: var(--blanc-casse);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.last-updated {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    font-family: var(--font-texte);
    color: var(--gris);
    font-size: 0.95rem;
}

.last-updated i {
    color: var(--mauve);
    font-size: 1.1rem;
}

.privacy-section {
    background: white;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.privacy-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.privacy-section h2 {
    font-family: var(--font-titre);
    font-size: 2rem;
    color: var(--noir);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.privacy-section 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;
}

.privacy-section h3 {
    font-family: var(--font-titre);
    font-size: 1.3rem;
    color: var(--noir);
    margin: 25px 0 15px;
}

.privacy-section p {
    font-family: var(--font-texte);
    color: var(--gris);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.privacy-list {
    list-style: none;
    padding: 0;
}

.privacy-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-family: var(--font-texte);
    color: var(--gris);
    line-height: 1.6;
    font-size: 1rem;
}

.privacy-list li i {
    color: var(--mauve);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-info {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-left: 4px solid var(--mauve);
}

.contact-details {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.contact-details i {
    color: var(--mauve);
    font-size: 1.2rem;
    width: 25px;
}

/* ----- FOOTER STYLES (IDENTIQUE À WOMEN.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 - TOUT SUR LA MÊME LIGNE */
@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;
    }
}

@media (max-width: 576px) {
    .top-bar .container {
        justify-content: space-between !important;
    }
    
    .top-bar-left {
        gap: 8px !important;
    }
    
    .top-bar a, .top-bar span {
        font-size: 0.6rem !important;
    }
    
    .top-bar i {
        font-size: 0.7rem !important;
    }
}

@media (max-width: 480px) {
    .top-bar-left {
        gap: 5px !important;
    }
    
    .top-bar a, .top-bar span {
        font-size: 0.55rem !important;
    }
}

@media (max-width: 400px) {
    .top-bar-left {
        gap: 3px !important;
    }
}

/* Responsive pour le contenu */
@media (max-width: 1024px) {
    .hero-overlay h1 {
        font-size: 2.8rem;
    }
    
    .privacy-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    /* Conteneur principal */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .hero-container {
        height: 60vh;
        min-height: 400px;
    }

    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .privacy-content {
        padding: 60px 0;
    }

    .privacy-section {
        padding: 25px;
        margin-bottom: 20px;
    }

    .privacy-section h2 {
        font-size: 1.8rem;
    }

    .privacy-section h3 {
        font-size: 1.2rem;
    }

    .last-updated {
        padding: 12px 20px;
        margin-bottom: 30px;
    }

    /* ----- FOOTER (IDENTIQUE À WOMEN.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-container {
        height: 50vh;
        min-height: 350px;
    }

    .hero-overlay h1 {
        font-size: 1.8rem;
    }

    .hero-overlay p {
        font-size: 0.95rem;
    }

    .privacy-content {
        padding: 40px 0;
    }

    .privacy-section {
        padding: 20px;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .privacy-section p {
        font-size: 0.95rem;
    }

    .privacy-list li {
        font-size: 0.95rem;
    }

    .last-updated {
        font-size: 0.85rem;
    }

    .contact-details {
        padding: 15px;
    }

    .contact-details p {
        font-size: 0.95rem;
    }

    /* ----- FOOTER (IDENTIQUE À WOMEN.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-container {
        height: 45vh;
        min-height: 300px;
    }

    .hero-overlay h1 {
        font-size: 1.5rem;
    }

    .privacy-section h2 {
        font-size: 1.3rem;
    }

    .privacy-section h3 {
        font-size: 1.1rem;
    }

    .contact-details p {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    /* ----- FOOTER – très petits écrans (identique à women.css) ----- */
    .payment-icons {
        font-size: 1.4rem;
    }
}