/* Stylesheet for Les Déterminés - Spoiler Alert Project Page */

@font-face {
    font-family: 'Thunder';
    src: url('../06- Spoiler alert/font/Thunder-BoldLC.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../06- Spoiler alert/font/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

html {
    background: #FEE42F !important;
    min-height: 100%;
}

body {
    background: #FEE42F !important;
    min-height: 100%;
}

/* Page Wrapper */
.determines-page-wrapper {
    position: relative;
    width: 100%;
    min-width: 1728px;
    background: #FEE42F;
    overflow-x: hidden;
}

.determines-layout-container {
    position: relative;
    width: 1728px;
    margin: 0 auto;
    background: #FEE42F;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 80px;
    box-sizing: border-box;
}

/* Hero Section */
.determines-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 75px;
    width: 1064px;
    margin: 40px auto 60px auto;
    box-sizing: border-box;
}

.determines-logo-container {
    width: 873px;
    height: 276px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.determines-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Descriptif Card */
.determines-descriptif-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 25px 24px;
    gap: 15px;
    width: 1064px;
    min-height: 223px;
    background: url('../06- Spoiler alert/header/Descriptif.webp') no-repeat center/contain;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.determines-descriptif-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.determines-descriptif-text {
    width: 1000px;
    font-family: 'Source Code Pro', monospace;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #101010;
    margin: 0;
    text-align: left;
}

.determines-descriptif-text strong {
    font-weight: 600;
}

/* Bouton Tout Voir */
.determines-bouton-tout-voir {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    width: 22px;
    height: 13px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.determines-descriptif-container:hover .determines-bouton-tout-voir {
    transform: translateY(8px);
    filter: invert(53%) sepia(0%) saturate(0%) brightness(90%) contrast(85%);
}

.determines-fluent-arrow {
    margin: 0 auto;
    width: 22px;
    height: 13px;
    display: block;
}

.determines-fluent-arrow img {
    width: 100%;
    height: 100%;
    display: block;
}

/* CONTENT LIST SECTION */
.determines-content-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 90px;
    margin-top: 30px;
}

/* Charte Graphique Section */
.determines-charte-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 1000px;
}

/* Color Palette */
.determines-couleurs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 580px;
}

.palette-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 180px;
}

.palette-color-box {
    width: 180px;
    height: 180px;
    box-shadow: 0px 2px 9.7px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
}

.palette-color-box.yellow {
    background: #FEE42F;
}

.palette-color-box.white {
    background: #FFFFFF;
}

.palette-color-box.black {
    background: #101010;
}

.palette-label {
    width: 180px;
    height: 32px;
    font-family: 'Thunder', 'Impact', 'Arial Black', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    letter-spacing: 0.03em;
    color: #101010;
    margin: 0;
}

/* Typographie Container */
.determines-typo-container {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.typo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.typo-title {
    font-family: 'Thunder', 'Impact', 'Arial Black', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #101010;
    margin: 0 0 10px 0;
}

.typo-title.poppins {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 28px;
}

.typo-alphabet {
    font-family: 'Thunder', 'Impact', 'Arial Black', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #101010;
    margin: 0;
    word-break: break-all;
}

.typo-alphabet.poppins {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
}

/* Posters Section (Bloc Affiches) */
.determines-affiches-section {
    position: relative;
    width: 1728px;
    height: 900px;
}

.determines-affiche-wrapper {
    position: absolute;
    width: 870px;
    height: 650px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), z-index 0.5s ease;
}

.determines-affiche-wrapper.affiche-1 {
    left: calc(50% - 485px);
    top: 50px;
    z-index: 2;
}

.determines-affiche-wrapper.affiche-2 {
    left: calc(50% - 395px);
    top: 130px;
    z-index: 1;
}

/* Hover over section: separate posters */
.determines-affiches-section:hover .determines-affiche-wrapper.affiche-1 {
    transform: translateX(-160px);
}

.determines-affiches-section:hover .determines-affiche-wrapper.affiche-2 {
    transform: translateX(160px);
}

/* Hover individual poster: pull to front and scale up */
.determines-affiches-section .determines-affiche-wrapper:hover {
    z-index: 10 !important;
}

.determines-affiches-section:hover .determines-affiche-wrapper.affiche-1:hover {
    transform: translateX(-160px) scale(1.03);
}

.determines-affiches-section:hover .determines-affiche-wrapper.affiche-2:hover {
    transform: translateX(160px) scale(1.03);
}

.determines-affiche-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mockups Section (Métro/Abribus) */
.determines-mockups-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 1728px;
}

.determines-mockup-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
}

.determines-mockup-card img {
    display: block;
    object-fit: cover;
}

.determines-mockup-card.metro-1 {
    width: 800px;
    height: 730px;
}

.determines-mockup-card.metro-1 img {
    width: 100%;
    height: 100%;
}

.determines-mockup-card.metro-2 {
    width: 880px;
    height: 730px;
}

.determines-mockup-card.metro-2 img {
    width: 100%;
    height: 100%;
}

/* Social Media (Réseaux Sociaux) Section */
.determines-reseaux-section {
    position: relative;
    width: 1728px;
    height: 1182px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.reseaux-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url('../06- Spoiler alert/fond-réseaux-sociaux.webp') no-repeat center/cover;
    z-index: 0;
}

/* Phone Mockup Frame */
.phone-mockup-container {
    position: relative;
    width: 585.52px;
    height: 934px;
    background: url('../06- Spoiler alert/Fond-instagram-les déterminés.webp') no-repeat center/contain;
    filter: drop-shadow(0px 5.89464px 8.84195px rgba(0, 0, 0, 0.04)) drop-shadow(0px 14.7366px 26.5259px rgba(0, 0, 0, 0.05)) drop-shadow(0px 26.5259px 82.5249px rgba(0, 0, 0, 0.1));
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Screen area inside mockup */
.phone-screen {
    position: absolute;
    width: 456.3px;
    height: 465.7px;
    left: 64.6px;
    top: 157.6px;
    border-radius: 2px;
    overflow: hidden;
    background: #101010;
}

.phone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
