.about-container {
    width: 100%;
    text-align: center;
    padding-top: 4rem;
}

.about-container .page-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem) !important;
    color: var(--perigord-black) !important;
    font-weight: 800;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.about-container .page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--perigord-yellow);
    border-radius: 2px;
}

.about-section {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-section .section-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    text-align: left;
}

.about-section .section-content.reverse {
    flex-direction: row-reverse;
}

.about-section .section-image {
    width: 50%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.presentation-photo {
    flex-shrink: 0;
}

.presentation-photo img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--perigord-yellow);
    position: relative;
    overflow: hidden;
}

.presentation-photo {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
}

.presentation-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: skewX(-25deg);
    transition: left 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.presentation-photo:hover::before {
    left: 150%;
}

.about-section .section-text {
    flex: 1;
}

.about-section .section-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--perigord-black);
    margin-bottom: 2rem;
    font-weight: 800;
    padding-bottom: 0.5rem;
    display: inline-block;
    background: linear-gradient(transparent 65%, rgba(254, 222, 123, 0.4) 65%);
    background-size: 100% 100%;
    line-height: 1.3;
    padding: 0 0.3rem;
    border-radius: 4px;
}

.about-section .section-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 1.2rem;
}

.about-section .section-text p strong {
    color: inherit;
    font-weight: 600;
    background-color: rgba(254, 222, 123, 0.3);
    padding: 0.1em 0.3em;
    border-radius: 4px;
}

.about-section .section-text .highlight-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--perigord-black);
    text-align: center;
    margin: 2rem 0;
}

.about-container .parallax-divider {
    height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Photo placeholder for parallax */
.about-container .parallax-divider.photo-placeholder-parallax {
    background: linear-gradient(135deg, rgba(254, 222, 123, 0.4) 0%, rgba(254, 222, 123, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-container .parallax-divider.photo-placeholder-parallax::after {
    content: 'Photo paysage placeholder';
    color: var(--perigord-black);
    font-size: 2rem;
    font-weight: 600;
    opacity: 0.6;
}

/* Events Section */
.events-section {
    padding: 6rem 3rem;
    text-align: left;
}

.events-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--perigord-black);
    margin-bottom: 4rem;
    margin-left: 3rem;
    font-weight: 800;
    display: inline-block;
    background: linear-gradient(transparent 65%, rgba(254, 222, 123, 0.4) 65%);
    background-size: 100% 100%;
    line-height: 1.3;
    padding: 0 0.3rem;
    border-radius: 4px;
}

.event-block {
    max-width: 1200px;
    margin: 0 auto;
}

.event-block {
    padding-bottom: 4rem;
    margin-bottom: 4rem;
    border-bottom: 3px solid rgba(254, 222, 123, 0.3);
}

.event-block:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.event-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.event-content.reverse {
    flex-direction: row-reverse;
}

.event-photo {
    flex-shrink: 0;
    width: 40%;
}

.event-photo .polaroid-frame {
    position: relative;
    width: 100%;
    padding: 15px;
    background-color: rgba(254, 222, 123, 0.3);
    border-radius: 8px;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.event-photo .polaroid-frame:hover {
    transform: rotate(-2deg) scale(1.03);
}

.event-photo .polaroid-frame.polaroid-right {
    transform: rotate(2deg);
}

.event-photo .polaroid-frame.polaroid-right:hover {
    transform: rotate(2deg) scale(1.03);
}

.event-photo .photo-placeholder.event-placeholder {
    width: 100%;
    height: 280px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(254, 222, 123, 0.3) 0%, rgba(254, 222, 123, 0.5) 100%);
    color: var(--perigord-black);
    font-size: 1.2rem;
    font-weight: 600;
}

.event-photo .event-image {
    width: 100%;
    height: 280px;
    border-radius: 6px;
    object-fit: cover;
}

.event-text {
    flex: 1;
}

.event-text h3 {
    font-size: 1.5rem;
    color: var(--perigord-black);
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: inline-block;
    background: linear-gradient(transparent 65%, rgba(254, 222, 123, 0.4) 65%);
    padding: 0 0.3rem;
    border-radius: 4px;
}

.event-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 1.2rem;
}

.event-text p strong {
    color: inherit;
    font-weight: 600;
    background-color: rgba(254, 222, 123, 0.3);
    padding: 0.1em 0.3em;
    border-radius: 4px;
}

.origin-section {
    padding: 6rem 3rem;
}

.origin-section .section-content {
    justify-content: center;
}

.origin-section .section-text {
    max-width: 900px;
}

.origin-text-block {
    padding: 2rem 3rem;
    margin-top: 2rem;
    border-left: 6px solid var(--perigord-yellow);
    position: relative;
}

.origin-text-block::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 6rem;
    color: var(--perigord-yellow);
    opacity: 0.4;
    font-family: Georgia, serif;
    line-height: 1;
}

.origin-text-block p {
    color: #333 !important;
    font-size: 1.1rem;
    line-height: 1.9;
}

.origin-text-block .highlight-text {
    color: var(--perigord-black) !important;
    font-size: 1.8rem !important;
    font-weight: 800;
    text-align: center;
    margin: 2.5rem 0 !important;
    background: linear-gradient(transparent 60%, rgba(254, 222, 123, 0.5) 60%);
    display: inline-block;
    padding: 0 0.5rem;
}

/* Interview Section */
.interview-section {
    padding: 6rem 3rem;
}

.interview-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--perigord-black);
    margin-bottom: 4rem;
    margin-left: 3rem;
    font-weight: 800;
    display: inline-block;
    background: linear-gradient(transparent 65%, rgba(254, 222, 123, 0.4) 65%);
    background-size: 100% 100%;
    line-height: 1.3;
    padding: 0 0.3rem;
    border-radius: 4px;
    text-align: left;
}

.interview-section {
    text-align: left;
}

.interview-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.interview-card .interview-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.interview-card.reverse .interview-content {
    flex-direction: row-reverse;
}

.interview-photo {
    flex-shrink: 0;
}

.interview-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--perigord-yellow);
}

.interview-text {
    flex: 1;
    text-align: left;
}

.interview-card.reverse .interview-text {
    text-align: right;
}

.interview-text h3 {
    font-size: 1.1rem;
    color: var(--perigord-black);
    background-color: var(--perigord-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

.interview-text .interview-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--perigord-black);
    margin-bottom: 1rem;
}

.interview-text .interview-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.interview-text .interview-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--perigord-black);
    padding-left: 1.5rem;
    border-left: 4px solid var(--perigord-yellow);
    margin: 0 0 1.5rem 0;
}

.interview-card.reverse .interview-quote {
    padding-left: 0;
    padding-right: 1.5rem;
    border-left: none;
    border-right: 4px solid var(--perigord-yellow);
}

.interview-text .interview-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.interview-text .interview-description strong {
    color: inherit;
    font-weight: 600;
    background-color: rgba(254, 222, 123, 0.3);
    padding: 0.1em 0.3em;
    border-radius: 4px;
}

.interview-text .interview-description p {
    margin-bottom: 1rem;
}

.interview-text .personality-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 1rem 0;
}

.interview-text .personality-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.5rem;
    color: #333;
    line-height: 1.7;
}

.interview-text .personality-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 18px;
    height: 18px;
    background-color: rgba(254, 222, 123, 0.4);
    border-radius: 50%;
}

.interview-text .personality-list li::after {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--perigord-black);
    font-size: 0.7rem;
    font-weight: bold;
}

.interview-card.reverse .interview-text .personality-list {
    text-align: left;
}

/* Photo placeholder */
.interview-photo .photo-placeholder {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--perigord-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(254, 222, 123, 0.3) 0%, rgba(254, 222, 123, 0.5) 100%);
    color: var(--perigord-black);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Staff Grid */
.staff-title {
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--perigord-black);
    margin-top: 5rem;
    margin-bottom: 3rem;
    margin-left: 3rem;
    font-weight: 800;
    display: inline-block;
    background: linear-gradient(transparent 65%, rgba(254, 222, 123, 0.4) 65%);
    background-size: 100% 100%;
    line-height: 1.3;
    padding: 0 0.3rem;
    border-radius: 4px;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.staff-member {
    text-align: center;
    transition: transform 0.3s ease;
}

.staff-member:hover {
    transform: translateY(-5px);
}

.staff-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border: 3px solid var(--perigord-yellow);
    transition: all 0.3s ease;
}

.staff-member:hover img {
    box-shadow: 0 8px 25px rgba(254, 222, 123, 0.4);
}

.staff-name {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--perigord-black);
}

.staff-member {
    cursor: grab;
    user-select: none;
}

.staff-member:active {
    cursor: grabbing;
}

.staff-member.dragging {
    opacity: 0.3;
}

.staff-member.drag-over {
    transform: scale(1.05);
}

.staff-member.drag-over img,
.staff-member.drag-over .photo-placeholder.small {
    border-color: var(--perigord-black);
    box-shadow: 0 8px 25px rgba(254, 222, 123, 0.6);
}

/* Ghost element pendant le drag */
.staff-member.drag-ghost {
    opacity: 1;
}

.staff-member.drag-ghost img,
.staff-member.drag-ghost .photo-placeholder.small {
    box-shadow: 0 8px 25px rgba(254, 222, 123, 0.5);
}

/* Staff Match Game */
.staff-title.game-active {
    color: var(--perigord-black);
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.staff-timer {
    display: none;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--perigord-black);
    text-align: center;
    margin-bottom: 2rem;
    font-family: monospace;
}

.photo-slot {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.photo-slot img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border: 3px solid var(--perigord-yellow);
    cursor: grab;
    transition: all 0.3s ease;
}

.photo-slot img:hover {
    box-shadow: 0 8px 25px rgba(254, 222, 123, 0.4);
}

.photo-slot img:active {
    cursor: grabbing;
}

.photo-slot img.dragging {
    opacity: 0.4;
}

.photo-slot.drag-over {
    background-color: rgba(254, 222, 123, 0.3);
    border: 3px dashed var(--perigord-yellow);
}

.staff-member.matched .photo-slot {
    background-color: rgba(76, 175, 80, 0.15);
}

.staff-member.matched img,
.staff-member.matched .photo-placeholder.small {
    border-color: #4CAF50;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
}

.staff-member.matched .staff-name {
    color: #4CAF50;
}

.staff-member.mismatched .photo-slot {
    background-color: rgba(244, 67, 54, 0.1);
}

/* Photo placeholder small for staff grid */
.photo-placeholder.small {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border: 3px solid var(--perigord-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(254, 222, 123, 0.3) 0%, rgba(254, 222, 123, 0.5) 100%);
    color: var(--perigord-black);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.photo-placeholder.small.draggable-placeholder {
    cursor: grab;
}

.photo-placeholder.small.draggable-placeholder:active {
    cursor: grabbing;
}

.photo-placeholder.small.dragging {
    opacity: 0.4;
}

.photo-placeholder.small:hover {
    box-shadow: 0 8px 25px rgba(254, 222, 123, 0.4);
}

/* Car animation trigger - hidden clickable */
.car-trigger {
    cursor: text;
    user-select: text;
}

@media (max-width: 768px) {
    .about-section {
        padding: 2rem 1rem;
    }

    .about-section .section-content,
    .about-section .section-content.reverse {
        flex-direction: column;
    }

    .about-section .section-image {
        width: 100%;
    }

    .presentation-photo img {
        width: 200px;
        height: 200px;
    }

    .about-container .parallax-divider {
        background-attachment: scroll;
        height: 200px;
    }

    .about-section .section-text .highlight-text {
        font-size: 1.25rem;
    }

    .interview-section {
        padding: 2rem 1rem;
    }

    .interview-card .interview-content,
    .interview-card.reverse .interview-content {
        flex-direction: column;
        text-align: center;
    }

    .interview-text,
    .interview-card.reverse .interview-text {
        text-align: center;
    }

    .interview-photo img {
        width: 150px;
        height: 150px;
    }

    .interview-quote,
    .interview-card.reverse .interview-quote {
        padding-left: 0;
        padding-right: 0;
        border-left: none;
        border-right: none;
        border-top: 4px solid var(--perigord-yellow);
        padding-top: 1rem;
    }

    .interview-text .personality-list,
    .interview-card.reverse .interview-text .personality-list {
        text-align: left;
    }

    .interview-photo .photo-placeholder {
        width: 150px;
        height: 150px;
    }

    .staff-title {
        margin-left: 0;
        margin-top: 3rem;
    }

    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .staff-member img,
    .photo-placeholder.small {
        width: 120px;
        height: 120px;
    }

    .staff-name {
        font-size: 1rem;
    }

    .photo-slot {
        width: 120px;
        height: 120px;
    }

    .photo-slot img,
    .photo-slot .photo-placeholder.small {
        width: 120px;
        height: 120px;
    }

    .staff-timer {
        font-size: 1.8rem;
    }

    /* Events Section Mobile */
    .events-section {
        padding: 2rem 1rem;
    }

    .events-section h2 {
        margin-left: 0;
    }

    .event-content,
    .event-content.reverse {
        flex-direction: column;
    }

    .event-photo {
        width: 100%;
    }

    .event-photo .photo-placeholder.event-placeholder {
        height: 200px;
    }

    .about-container .parallax-divider.photo-placeholder-parallax::after {
        font-size: 1.2rem;
    }
}
