* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Euclid Circular A', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #FFFFFF;
    color: #000000;
    overflow-x: hidden; /* Déjà présent ✓ */
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    /* ENLEVER : overflow-x: hidden; */
}

/* Logo Container */
.logo-container {
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 100vh;
    height: 100vh;
    z-index: 1;
}

/* SVG Logo */
.logo-svg {
    width: 100%;
    height: 100%;
}

/* Rotating Text */
.rotating-text-container {
    position: absolute;
    bottom: -56%;
    left: -28.5%;
    width: 150vh;
    height: 150vh;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

.rotating-text {
    position: absolute;
    width: 100%;
    height: 100%;
}

.rotating-text text {
    font-size: 1.159vh;
    font-weight: 300;
    fill: #000000;
    letter-spacing: 0.1em;
}

/* Hello Text */
.hello-text {
    position: absolute;
    bottom: 32%;
    right: 20%;
    font-size: 3vh;
    font-weight: 300;
    line-height: 1.5;
    text-align: right;
    z-index: 2;
}

.hello-text strong {
    font-weight: 700;
}

/* Navigation Bar */
.nav-bar {
    position: fixed;
    bottom: 8vh;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    border-radius: 50px;
    padding: 1.5vh 3vh;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 4vh;
    z-index: 1000;
}

.nav-logo {
    width: 3vh;
    height: 3vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo img {
    width: 100%;
    height: 100%;
}

.nav-links {
    display: flex;
    gap: 6vh;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-size: 2vh;
    font-weight: 500;
    padding: 1vh 2vh;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.nav-links a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Icons Section */


.icons-section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 20vh;
}

.icons-container {
    display: flex;
    gap: 8vh;
    align-items: center;
    justify-content: center;
}

.icon-item {
    width: 10vh;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    opacity: 0;
    transition: transform 0.3s ease;
}

/* Animations différentes pour chaque icône */
.icon-item:nth-child(1) {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.icon-item:nth-child(2) {
    animation: fadeInScale 0.8s ease forwards;
    animation-delay: 0.4s;
}

.icon-item:nth-child(3) {
    animation: fadeInRotate 0.8s ease forwards;
    animation-delay: 0.6s;
}

.icon-item:nth-child(4) {
    animation: fadeInLeft 0.8s ease forwards;
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInRotate {
    from {
        opacity: 0;
        transform: rotate(-180deg);
    }
    to {
        opacity: 1;
        transform: rotate(0deg);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.icon-item:hover {
    transform: scale(1.1);
}

.icon-item svg,
.icon-item img {
    width: 100%;
    height: 100%;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    display: none;
    background: #000000;
    color: #FFFFFF;
    padding: 1vh 2vh;
    border-radius: 50px;
    font-size: 1.8vh;
    font-weight: 500;
    white-space: nowrap;
    transform: translate(-50%, -50%);
}

.custom-cursor.active {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-container,
    .rotating-text-container {
        width: 60vh;
        height: 60vh;
        bottom: -25%;
        left: -15%;
    }

    .rotating-text-container {
        display: none;
    }

    .rotating-text text {
        font-size: 3vh;
    }

    .hello-text {
        font-size: 2.5vh;
        bottom: 15%;
        right: 5%;
    }

    .nav-bar {
        padding: 1.2vh 2vh;
        gap: 2.5vh;
    }

    .nav-links {
        gap: 2vh;
    }

    .nav-links a {
        font-size: 1.8vh;
    }

    .icons-container {
        gap: 4vh;
    }

    .icon-item {
        width: 8vh;
        height: 8vh;
    }
}

/* Section Photographie */
.photo-section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Changé de center à flex-start */
    position: relative;
    padding: 5%;
    padding-left: 10%; /* Ajouté pour décaler à gauche */
    overflow: hidden;
}

.photo-grid {
    display: flex;
    flex-direction: column;
    gap: 5%;
    width: 40%;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.photo-grid.animate {
    opacity: 1;
    transform: translateY(0);
}

.photo-item {
    overflow: hidden;
    background: #f0f0f0;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-horizontal {
    width: 100%;
    height: 30vh;
}

.photo-row {
    display: flex;
    gap: 5%;
    margin-top: 5%;
}

.photo-vertical {
    width: 47.5%;
    height: 40vh;
}

/* Voir plus link */
.voir-plus {
    position: absolute;
    bottom: 8%;
    left: 10%; /* Aligné avec padding-left de photo-section */
    font-size: 2.5vh;
    font-weight: 300;
    color: #000000;
    text-decoration: none;
    font-style: italic;
    transition: all 0.3s ease;
}

.voir-plus::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #000000;
    transition: width 0.3s ease;
}

.voir-plus:hover::after {
    width: 100%;
}

/* Logo Photo */
.photo-logo {
    position: absolute;
    top: 50%; /* Changé : centré verticalement */
    transform: translateY(-50%); /* Centrage vertical parfait */
    right: -15%; /* Ajusté pour mieux déborder */
    width: 90vh; /* Augmenté de 50vh à 70vh */
    height: 90vh; /* Augmenté de 50vh à 70vh */
    z-index: 1;
    opacity: 0;
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.photo-logo.animate {
    opacity: 1;
}

.photo-logo img {
    width: 100%;
    height: 100%;
}

/* Section Graphisme */
.graphisme-section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    padding: 5%;
    padding-right: 10%;
    overflow: hidden;
}

.graphisme-grid {
    display: flex;
    flex-direction: column;
    gap: 5%;
    width: 40%;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.graphisme-grid.animate {
    opacity: 1;
    transform: translateY(0);
}

.graphisme-item {
    overflow: hidden;
    background: #f0f0f0;
}

.graphisme-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.graphisme-item:hover img {
    transform: scale(1.05);
}

.graphisme-row {
    display: flex;
    gap: 5%;
}

.graphisme-vertical {
    width: 47.5%;
    height: 40vh;
}

.graphisme-horizontal {
    width: 100%;
    height: 30vh;
    margin-top: 5%;
}

/* Voir plus à droite */
.voir-plus-right {
    left: auto;
    right: 10%;
}

/* Logo Graphisme */
.graphisme-logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -15%;
    width: 80vh;
    height: 80vh;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.graphisme-logo.animate {
    opacity: 1;
}

.graphisme-logo img {
    width: 100%;
    height: 100%;
}

/* Section Web Design */
.web-section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 5%;
    padding-left: 10%;
    overflow: hidden;
}

.web-grid {
    display: flex;
    flex-direction: column;
    gap: 5%;
    width: 40%;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.web-grid.animate {
    opacity: 1;
    transform: translateY(0);
}

.web-item {
    overflow: hidden;
    background: #f0f0f0;
}

.web-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.web-item:hover img {
    transform: scale(1.05);
}

.web-horizontal {
    width: 100%;
    height: 30vh;
    margin-top: 5%;
}

/* Logo Web */
.web-logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -15%;
    width: 90vh;
    height: 90vh;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.web-logo.animate {
    opacity: 1;
}

.web-logo img {
    width: 100%;
    height: 100%;
}

/* Section Vidéo */
.video-section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    padding: 5%;
    padding-right: 10%;
    overflow: hidden;
}

.video-grid {
    display: flex;
    flex-direction: column;
    gap: 5%;
    width: 40%;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.video-grid.animate {
    opacity: 1;
    transform: translateY(0);
}

.video-item {
    overflow: hidden;
    background: #f0f0f0;
}

.video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-item:hover img {
    transform: scale(1.05);
}

.video-horizontal {
    width: 100%;
    height: 30vh;
    margin-top: 5%;

}

/* Logo Vidéo */
.video-logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -15%;
    width: 90vh;
    height: 90vh;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.video-logo.animate {
    opacity: 1;
}

.video-logo img {
    width: 100%;
    height: 100%;
}

/* Footer Contact */
.contact-footer {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10% 5%;
    overflow: hidden;
}

.contact-container {
    width: 100%;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 5vh;
}

.form-row {
    display: flex;
    gap: 5%;
}

.form-field {
    flex: 1;
    position: relative;
}

.form-field.full-width {
    width: 100%;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #000000;
    background: transparent;
    padding: 1.5vh 0;
    font-size: 2vh;
    font-family: 'Euclid Circular A', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #000000;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #666666;
    font-weight: 300;
}

.form-field input:focus,
.form-field textarea:focus {
    border-bottom-color: #000000;
}

.form-field textarea {
    height: 15vh;
    resize: none;
    font-family: 'Euclid Circular A', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.submit-btn {
    align-self: flex-start;
    background: transparent;
    border: none;
    font-size: 2.5vh;
    font-weight: 300;
    font-style: italic;
    color: #000000;
    cursor: pointer;
    padding: 1vh 0;
    margin-top: 2vh;
    position: relative;
    transition: all 0.3s ease;
}

.submit-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #000000;
    transition: width 0.3s ease;
}

.submit-btn:hover::after {
    width: 100%;
}

.form-success {
    margin-top: 3vh;
    color: #2b572b;
    font-size: 2vh;
    font-weight: 500;
    display: none;
}

.form-success.show {
    display: block;
}

/* Logo Footer */
.footer-logo {
    position: absolute;
    bottom: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 180vh;
    height: auto;
    z-index: 1;
    opacity: 0.05;
    pointer-events: none;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

/* =========================
   CV — Sections éditoriales
========================= */

.cv-section {
    width: 100%;
    height: 100vh;
    padding: 8% 10%;
    display: flex;
    gap: 10%;
}

.cv-column {
    width: 50%;
}

.cv-column h2 {
    font-size: 3.5vh;
    font-weight: 500;
    margin-bottom: 4vh;
}

.cv-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 3vh;
}

.cv-simple-list {
    list-style: none;
}

.cv-simple-list li {
    display: flex;
    justify-content: space-between;
    font-size: 2.2vh;
    padding: 1vh 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.cv-item {
    margin-bottom: 4vh;
}

.cv-date {
    display: block;
    font-size: 2vh;
    font-weight: 500;
    opacity: 0.6;
    margin-bottom: 1vh;
}

.cv-column p,
.cv-column li {
    font-size: 2.2vh;
    font-weight: 300;
    line-height: 1.5;
}

.cv-column strong {
    font-weight: 500;
}
/* =========================
   Animations Scroll CV
========================= */

.cv-section,
.cv-column,
.cv-item {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cv-section.animate,
.cv-column.animate,
.cv-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   Lien téléchargement CV
========================= */
/*
.cv-download {
    display: inline-block;
    margin-top: 4vh;
    font-size: 2.2vh;
    font-weight: 300;
    color: #000000;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.cv-download::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #000000;
    transition: width 0.3s ease;
}

.cv-download:hover::after {
    width: 58%;
}
*/

.cv-download {
    display: inline-flex;
    margin-top: 4vh;
    align-items: center;
    gap: 1vh;
    font-size: 2.2vh;
    color: #000;
    text-decoration: none;
    font-weight: 300;
    position: relative;
    width: fit-content;
}

.cv-download::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.3s ease;
}

.cv-download:hover::after {
    width: 100%;
}

/* Responsive */

@media (max-width: 768px) {
    .cv-section {
        flex-direction: column;
        height: auto;
        padding: 15% 8%;
    }

    .cv-column {
        width: 100%;
    }
}



/* Responsive Footer */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 3vh;
    }
    
    .footer-logo {
        width: 60vh;
        bottom: -10%;
    }
}

/* =========================
   Page À propos
========================= */

.about-section {
    width: 100%;
    height: 100vh;
    display: flex;
}

/* Image — 60% largeur / 100vh hauteur */
.about-image {
    width: 60%;
    height: 100vh;
    overflow: hidden;
    background: #f0f0f0;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Texte — 40% */
.about-text {
    width: 40%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
}

.about-text h1 {
    font-size: 6vh;
    font-weight: 500;
    margin-bottom: 4vh;
}

.about-text p {
    font-size: 2.2vh;
    font-weight: 300;
    line-height: 1.6;
    max-width: 55ch;
}

.about-text strong {
    font-weight: 500;
}

/* =========================
   Responsive
========================= */

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        height: auto;
    }

    .about-image {
        width: 100%;
        height: 50vh;
    }

    .about-text {
        width: 100%;
        height: auto;
        padding: 10% 8%;
    }

    .about-text h1 {
        font-size: 5vh;
    }

    .about-text p {
        font-size: 2vh;
    }
}

/* ========================================
   RESPONSIVE - MENU MOBILE
======================================== */

/* Menu Hamburger - caché par défaut */
.menu-toggle {
    display: none;
    position: fixed;
    top: 8vh;
    right: 5vw;
    width: 6vh;
    height: 6vh;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.menu-toggle:active {
    transform: scale(0.95);
}

.menu-toggle.hidden {
    display: none;
}

.menu-toggle img {
    width: 50%;
    height: 50%;
}

/* Menu Full Screen */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #FFFFFF;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-logo {
    width: 20vh;
    height: 20vh;
    margin-bottom: 3vh;
}

.mobile-menu-logo img {
    width: 100%;
    height: 100%;
}

.mobile-menu-links {
    list-style: none;
    text-align: center;
}

.mobile-menu-links li {
    margin: 3vh 0;
}

.mobile-menu-links a {
    text-decoration: none;
    color: #000000;
    font-size: 4vh;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.mobile-menu-links a:hover {
    opacity: 0.6;
}

.mobile-menu-close {
    position: absolute;
    top: 8vh;
    right: 5vw;
    width: 6vh;
    height: 6vh;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 4vh;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.mobile-menu-close:active {
    transform: scale(0.95);
}

/* Responsive Mobile */
@media (max-width: 768px) {
    /* Masquer la nav-bar desktop */
    .nav-bar {
        display: none;
    }
    
    /* Afficher le bouton hamburger */
    .menu-toggle {
        display: flex;
    }
    
    /* Hero responsive */
    .hero {
        height: 100vh;
    }
    
    .logo-container {
        bottom: -35%;
        left: -20%;
        width: 80vh;
        height: 80vh;
    }
    
    .rotating-text-container {
        bottom: -60%;
        left: -35%;
        width: 130vh;
        height: 130vh;
    }
    
    .rotating-text text {
        font-size: 1vh;
    }
    
    .hello-text {
        bottom: 80%;
        right: 10%;
        font-size: 2.5vh;
    }
}

@media (max-width: 480px) {
    .logo-container {
        bottom: -0%;
        left: -40%;
        width: 55vh;
        height: 55vh;
    }
    
    .rotating-text-container {
        bottom: -65%;
        left: -40%;
        width: 120vh;
        height: 120vh;
    }
    
    .hello-text {
        font-size: 2.2vh;
        bottom: 55%;
        right: 8%;
    }
    
    .mobile-menu-links a {
        font-size: 3.5vh;
    }
}

/* ========================================
   RESPONSIVE - SECTION ICONS
======================================== */

@media (max-width: 768px) {
    .icons-section {
        height: auto;
        padding: 15vh 5vw;
        margin-top: 10vh;
    }
    
    .icons-container {
        flex-direction: column;
        gap: 6vh;
    }
    
    .icon-item {
        width: 15vh;
        height: 15vh;
    }
}

@media (max-width: 480px) {
    .icons-section {
        padding: 12vh 5vw;
    }
    
    .icon-item {
        width: 12vh;
        height: 12vh;
    }
}

/* ========================================
   RESPONSIVE - SECTION PHOTOGRAPHIE
======================================== */

@media (max-width: 768px) {
    .photo-section {
        height: auto;
        min-height: 100vh;
        padding: 10vh 5vw;
        padding-left: 5vw;
        justify-content: center;
    }
    
    .photo-grid {
        width: 90vw;
        gap: 3vh;
    }
    
    .photo-horizontal {
        height: 35vh;
    }
    
    .photo-row {
        flex-direction: row;
        gap: 3vh;
        margin-top: 3vh;
    }
    
    .photo-vertical {
        width: calc(50% - 1.5vh);
        height: 35vh;
    }
    
    .photo-logo {
        width: 60vh;
        height: 60vh;
        right: -30%;
        bottom: 5%;
        transform: translateY(0);
    }
    
    .voir-plus {
        bottom: 5%;
        left: 5vw;
        font-size: 2.2vh;
    }
}

@media (max-width: 480px) {
    .photo-horizontal {
        height: 30vh;
    }
    
    .photo-vertical {
        height: 30vh;
    }
    
    .photo-logo {
        width: 50vh;
        height: 50vh;
        right: -35%;
    }
    .photo-logo {
        display: none;
    }
    .graphisme-logo {
        display: none;
    }
    .web-logo {
        display: none;
    }
    .video-logo {
        display: none;
    }
}

/* ========================================
   RESPONSIVE - SECTION GRAPHISME
======================================== */

@media (max-width: 768px) {
    .graphisme-section {
        height: auto;
        min-height: 100vh;
        padding: 10vh 5vw;
        padding-right: 5vw;
        justify-content: center;
    }

    .photo-logo {
        display: none;
    }
    .graphisme-logo {
        display: none;
    }
    .web-logo {
        display: none;
    }
    .video-logo {
        display: none;
    }
    
    .graphisme-grid {
        width: 90vw;
        gap: 3vh;
    }
    
    .graphisme-row {
        flex-direction: row;
        gap: 3vh;
    }
    
    .graphisme-vertical {
        width: calc(50% - 1.5vh);
        height: 35vh;
    }
    
    .graphisme-horizontal {
        height: 35vh;
        margin-top: 3vh;
    }
    
    .graphisme-logo {
        width: 50vh;
        height: 50vh;
        left: -25%;
        bottom: 5%;
        transform: translateY(0);
    }
    
    .voir-plus-right {
        right: 5vw;
        bottom: 5%;
        font-size: 2.2vh;
    }
}

@media (max-width: 480px) {
    .graphisme-vertical {
        height: 30vh;
    }
    
    .graphisme-horizontal {
        height: 30vh;
    }
    
    .graphisme-logo {
        width: 45vh;
        height: 45vh;
        left: -30%;
    }
}

/* ========================================
   RESPONSIVE - SECTION WEB DESIGN
======================================== */

@media (max-width: 768px) {
    .web-section {
        height: auto;
        min-height: 100vh;
        padding: 10vh 5vw;
        padding-left: 5vw;
        justify-content: center;
    }
    
    .web-grid {
        width: 90vw;
        gap: 3vh;
    }
    
    .web-horizontal {
        height: 35vh;
        margin-top: 0;
    }
    
    .web-horizontal:first-child {
        margin-top: 0;
    }
    
    .web-horizontal:last-child {
        margin-top: 3vh;
    }
    
    .web-logo {
        width: 60vh;
        height: 60vh;
        right: -30%;
        bottom: 5%;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .web-horizontal {
        height: 30vh;
    }
    
    .web-logo {
        width: 50vh;
        height: 50vh;
        right: -35%;
    }
}

/* ========================================
   RESPONSIVE - SECTION VIDÉO
======================================== */

@media (max-width: 768px) {
    .video-section {
        height: auto;
        min-height: 100vh;
        padding: 10vh 5vw;
        padding-right: 5vw;
        justify-content: center;
    }
    
    .video-grid {
        width: 90vw;
        gap: 3vh;
    }
    
    .video-horizontal {
        height: 35vh;
        margin-top: 0;
    }
    
    .video-horizontal:first-child {
        margin-top: 0;
    }
    
    .video-horizontal:last-child {
        margin-top: 3vh;
    }
    
    .video-logo {
        width: 55vh;
        height: 55vh;
        left: -28%;
        bottom: 5%;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .video-horizontal {
        height: 30vh;
    }
    
    .video-logo {
        width: 50vh;
        height: 50vh;
        left: -32%;
    }
}

/* ========================================
   RESPONSIVE - FOOTER CONTACT
======================================== */

@media (max-width: 768px) {
    .contact-footer {
        min-height: 100vh;
        padding: 15vh 5vw 10vh;
    }
    
    .contact-container {
        max-width: 100%;
    }
    
    .contact-form {
        gap: 4vh;
    }
    
    .form-row {
        flex-direction: column;
        gap: 4vh;
    }
    
    .form-field input,
    .form-field textarea {
        font-size: 1.8vh;
        padding: 1.2vh 0;
    }
    
    .form-field textarea {
        height: 18vh;
    }
    
    .submit-btn {
        font-size: 2.2vh;
    }
    
    .footer-logo {
        width: 120vh;
        bottom: -20%;
    }
}

@media (max-width: 480px) {
    .contact-footer {
        padding: 12vh 5vw 8vh;
    }
    
    .form-field input,
    .form-field textarea {
        font-size: 1.6vh;
    }
    
    .submit-btn {
        font-size: 2vh;
    }
    
    .footer-logo {
        width: 100vh;
        bottom: -15%;
    }
}