/* assets/css/about.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 MOBILE ----- */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ----- HERO VIDEO – uniquement bouton ----- */
.about-hero {
    width: 100%;
    margin: 0;
    padding: 0;
}
.hero-video-container {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}
#about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.video-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);
    width: 90%;
    max-width: 800px;
    z-index: 20;
}
.hero-btn {
    display: inline-block;
    background: white;
    color: var(--noir);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: 0.3s;
    text-decoration: none;
}
.hero-btn:hover {
    background: var(--mauve);
    color: white;
    transform: scale(1.05);
}
.video-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 30;
}
.volume-btn {
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
    transition: 0.2s;
}
.volume-btn:hover {
    background: var(--mauve);
    transform: scale(1.1);
}

/* ----- MATIÈRES CARROUSEL (portraits) ----- */
.about-materials {
    padding: 80px 0;
    background: white;
    width: 100%;
}
.materials-carousel {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-top: 40px;
    padding-bottom: 15px;
    -webkit-overflow-scrolling: touch;
}
.materials-carousel::-webkit-scrollbar {
    display: none;
}
.materials-track {
    display: flex;
    gap: 25px;
    width: max-content;
}
.material-card {
    flex: 0 0 220px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.material-card:hover {
    transform: scale(1.02);
}
.material-card img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
}

/* ----- SECTIONS ALTERNÉES – images pleine largeur, sans séparateur ----- */
.about-story {
    width: 100%;
    background: var(--blanc-casse);
}
.story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.story-block-1 {
    background: white;
}
.story-block-2 {
    background: var(--blanc-casse);
}
.story-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}
.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.story-text {
    padding: 60px;
}
.story-text h2 {
    font-family: var(--font-titre);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--noir);
}
.story-text p {
    font-size: 1rem;
    color: var(--gris);
    line-height: 1.6;
    margin-bottom: 20px;
}
.story-btn {
    display: inline-block;
    background: var(--noir);
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: 0.2s;
}
.story-btn:hover {
    background: var(--mauve);
    color: white;
    transform: scale(1.05);
}

/* ----- NOUVELLE SECTION : OUR COMMITMENT ----- */
.about-commitment {
    padding: 80px 0;
    background: white;
    width: 100%;
}
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}
.commitment-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--blanc-casse);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}
.commitment-icon {
    font-size: 3rem;
    color: var(--mauve);
    margin-bottom: 20px;
}
.commitment-item h3 {
    font-family: var(--font-titre);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--noir);
}
.commitment-item p {
    font-size: 0.95rem;
    color: var(--gris);
    line-height: 1.5;
}

/* ----- RESPONSIVE MOBILE ----- */
@media (max-width: 1024px) {
    .story-text {
        padding: 40px;
    }
    .story-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .hero-video-container {
        height: 70vh;
    }
    .hero-btn {
        padding: 12px 30px;
        font-size: 0.8rem;
    }
    .volume-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .material-card {
        flex: 0 0 180px;
    }

    .story-block {
        grid-template-columns: 1fr;
    }
    .story-block-1 .story-image {
        order: -1;
    }
    .story-image {
        height: 400px;
    }
    .story-text {
        padding: 30px;
    }
    .story-text h2 {
        font-size: 1.8rem;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .commitment-item {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Footer (identique à men.css) */
    .site-footer .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .payment-icons {
        font-size: 1.8rem !important;
        gap: 12px !important;
        flex-wrap: wrap !important;
    }
    .footer-col ul {
        margin-bottom: 10px !important;
    }
    .footer-col h4 {
        margin-bottom: 15px !important;
    }
    .footer-contact p {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 576px) {
    .hero-video-container {
        height: 60vh;
    }
    .hero-btn {
        padding: 10px 24px;
        font-size: 0.7rem;
    }

    .material-card {
        flex: 0 0 150px;
    }

    .story-image {
        height: 350px;
    }
    .story-text {
        padding: 25px;
    }
    .story-text h2 {
        font-size: 1.5rem;
    }
    .story-text p {
        font-size: 0.9rem;
    }
    .story-btn {
        padding: 10px 28px;
        font-size: 0.75rem;
    }

    .commitment-item {
        padding: 25px 15px;
    }
    .commitment-icon {
        font-size: 2.5rem;
    }
    .commitment-item h3 {
        font-size: 1.2rem;
    }

    .payment-icons {
        font-size: 1.6rem !important;
        gap: 10px !important;
    }
    .footer-contact p {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 400px) {
    .hero-video-container {
        height: 50vh;
    }
    .material-card {
        flex: 0 0 130px;
    }
    .story-image {
        height: 300px;
    }
    .payment-icons {
        font-size: 1.4rem !important;
    }
}