/* Contenu principal pour interview/* Style sophistiqué pour le site de Nicolas Gullon - BUT MMI */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;700&display=swap');


:root {
    --bleu-clair: #a4d1d9;
    --bleu-moyen: #7ab8c4;
    --bleu-fonce: #4a8999;
    --noir: #1a1a1a;
    --blanc: #ffffff;
    --gris-clair: #f8f9fa;
    --gris-moyen: #e9ecef;
    --accent: #f7df1e;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    background-color: var(--blanc);
    color: var(--noir);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
}

/* ===== ANIMATIONS ET EFFETS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background: linear-gradient(135deg, var(--bleu-fonce) 0%, var(--bleu-moyen) 50%, var(--bleu-clair) 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPgogIDxkZWZzPgogICAgPHBhdHRlcm4gaWQ9InBhdHRlcm4iIHg9IjAiIHk9IjAiIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+CiAgICAgIDxjaXJjbGUgY3g9IjEwIiBjeT0iMTAiIHI9IjEuNSIgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA1KSIvPgogICAgPC9wYXR0ZXJuPgogIDwvZGVmcz4KICA8cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIiAvPgo8L3N2Zz4=');
    opacity: 0.3;
    z-index: -1;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blanc);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.logo::after {
    content: 'Nicolas Gullon';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    color: var(--accent);
    overflow: hidden;
    transition: var(--transition);
}

.logo:hover::after {
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

nav a:not(.logo) {
    color: var(--blanc);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

nav a:not(.logo)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--blanc);
    transition: var(--transition);
}

nav a:not(.logo):hover {
    color: var(--blanc);
}

nav a:not(.logo):hover::after {
    width: 100%;
}

/* ===== CONTENU PRINCIPAL ===== */
main {
    margin-top: 6rem;
    padding: 3rem 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    min-height: calc(100vh - 6rem);
    animation: fadeIn 0.8s ease-out forwards;
}

/* ===== HERO SECTION ===== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--noir);
    position: relative;
}

.hero-content h1 span {
    color: var(--bleu-fonce);
    position: relative;
    display: inline-block;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--bleu-clair);
    z-index: -1;
    opacity: 0.6;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 500px;
}

.hero-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: auto;
    transform: scale(1.02);
    transition: var(--transition);
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 137, 153, 0.4) 0%, rgba(164, 209, 217, 0.2) 100%);
    z-index: 1;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--bleu-clair);
}

/* ===== PORTFOLIO PAGE ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    background: var(--blanc);
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 137, 153, 0.15) 0%, rgba(164, 209, 217, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

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

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7), transparent);
    transform: translateY(100%);
    transition: var(--transition);
    z-index: 2;
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h3 {
    color: var(--blanc);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.portfolio-info p {
    color: var(--gris-clair);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--bleu-fonce), var(--bleu-moyen));
    color: var(--blanc);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, var(--bleu-moyen), var(--bleu-clair));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 137, 153, 0.3);
}

/* ===== CV PAGE ===== */
.cv-container {
    background-color: var(--blanc);
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.cv-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, var(--bleu-fonce), var(--bleu-clair));
}

.cv-section {
    margin-bottom: 3rem;
    animation: slideIn 0.6s forwards;
    opacity: 0;
}

.cv-section:nth-child(1) { animation-delay: 0.1s; }
.cv-section:nth-child(2) { animation-delay: 0.3s; }
.cv-section:nth-child(3) { animation-delay: 0.5s; }
.cv-section:nth-child(4) { animation-delay: 0.7s; }

.cv-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--bleu-fonce);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.cv-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--bleu-fonce);
}

.cv-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gris-moyen);
    position: relative;
    padding-left: 2rem;
}

.cv-item:last-child {
    border-bottom: none;
}

.cv-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--bleu-moyen);
}

.cv-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--noir);
    margin-bottom: 0.3rem;
}

.cv-item .date {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0.8rem;
    font-style: italic;
}

.cv-item p {
    font-size: 0.95rem;
    color: #555;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.skill-group h4 {
    font-size: 1rem;
    color: var(--bleu-fonce);
    margin-bottom: 1rem;
    font-weight: 600;
}

.skill-item {
    margin-bottom: 0.8rem;
}

.skill-name {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.skill-bar {
    height: 6px;
    background-color: var(--gris-moyen);
    border-radius: 3px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(to right, var(--bleu-fonce), var(--bleu-clair));
    border-radius: 3px;
    transition: width 1.5s ease-out;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, var(--bleu-fonce) 0%, var(--bleu-moyen) 100%);
    color: var(--blanc);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPgogIDxkZWZzPgogICAgPHBhdHRlcm4gaWQ9InBhdHRlcm4iIHg9IjAiIHk9IjAiIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICAgIDxjaXJjbGUgY3g9IjMwIiBjeT0iMzAiIHI9IjIiIGZpbGw9InJnYmEoMjU1LCAyNTUsIDI1NSwgMC4wNSkiLz4KICAgIDwvcGF0dGVybj4KICA8L2RlZnM+CiAgPHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIgLz4KPC9zdmc+');
    opacity: 0.2;
    z-index: 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--blanc);
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-section p:hover {
    opacity: 1;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--blanc);
    font-size: 1.5rem;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    nav {
        flex-direction: column;
        padding: 1rem;
    }

    main {
        margin-top: 8rem;
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .portfolio-item img {
        height: 200px;
    }

    .portfolio-info {
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Styles pour le carrousel de logos */
.logos-carousel-section {
    margin: 4rem 0;
    padding: 3rem;
    background-color: var(--blanc);
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.logos-carousel-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--bleu-fonce);
    position: relative;
}

.logos-carousel-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--bleu-clair);
}

.logos-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
}

.logos-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 700%; /* 7 logos x 100% */
}

.logo-slide {
    width: 14.28%; /* 1/7 of the container width (100% ÷ 7) */
    padding: 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Version modifiée pour afficher les logos en couleur par défaut */
.partner-logo {
    max-width: 150px;
    height: auto;
    filter: grayscale(0);     /* 0% de grayscale = couleurs originales */
    opacity: 1;               /* 100% d'opacité = couleurs vives */
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1);    /* Effet d'agrandissement au survol */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Légère ombre au survol */
}

.logo-caption {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--bleu-fonce);
    font-weight: 500;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.carousel-control {
    background: none;
    border: 2px solid var(--bleu-moyen);
    color: var(--bleu-fonce);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-control:hover {
    background-color: var(--bleu-moyen);
    color: var(--blanc);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 200px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gris-moyen);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--bleu-moyen);
    transform: scale(1.2);
}

/* Responsive styles */
@media (max-width: 992px) {
    .logos-carousel-section {
        padding: 2rem;
    }

    .logo-slide {
        padding: 0 1rem;
    }

    .partner-logo {
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    .logos-carousel-section h2 {
        font-size: 1.8rem;
    }

    .partner-logo {
        max-width: 100px;
    }

    .logo-caption {
        font-size: 0.9rem;
    }

    .carousel-dots {
        max-width: 150px;
    }
}

@media (max-width: 576px) {
    .logos-carousel-section {
        padding: 1.5rem;
    }

    .logo-slide {
        padding: 0 0.5rem;
    }

    .partner-logo {
        max-width: 80px;
    }

    .carousel-control {
        width: 35px;
        height: 35px;
    }
}

.simple-video-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: var(--transition);
}

.video-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 70px rgba(0, 0, 0, 0.2);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    z-index: 2;
}

.play-button i {
    color: var(--blanc);
    font-size: 2rem;
    transition: var(--transition);
}

.video-container:hover .play-button {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 137, 153, 0.3) 0%, rgba(164, 209, 217, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition);
}

/* ===== CONTENU TEXTE SIMPLE ===== */
.simple-text-content {
    padding: 2rem;
    background-color: var(--blanc);
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.simple-text-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--bleu-fonce);
}

.simple-text-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--bleu-fonce);
    font-weight: 600;
}

.simple-text-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

/* ===== STYLES RESPONSIFS ===== */
@media (max-width: 992px) {
    .simple-video-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .simple-text-content {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 1.5rem;
    }

    .simple-text-content h2 {
        font-size: 1.8rem;
    }

    .simple-text-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .play-button {
        width: 50px;
        height: 50px;
    }

    .play-button i {
        font-size: 1.2rem;
    }

    .simple-text-content {
        padding: 1rem;
    }
}

/* Ajoutez ces règles à la fin de votre fichier style.css */

/* Enlever la flèche sous le titre */
.section-title::after {
    display: none !important;
}

/* Enlever le bouton de lecture personnalisé */
.play-button {
    display: none !important;
}

/* Améliorer le style de l'iframe pour qu'elle s'adapte bien */
.video-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9; /* Garde les proportions 16:9 */
    border-radius: 12px;
}

/* Enlever les overlays sur l'iframe YouTube */
.video-container::before {
    display: none !important;
}


/* Corrections spécifiques pour la page interview */
.main-layout .section-title::after {
    display: none !important;
}

.main-layout .play-button {
    display: none !important;
}

.main-layout .video-container::before {
    display: none !important;
}

																																																																																																											/* Section avec image et contenu */
.image-section {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Image à gauche, contenu à droite */
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

/* Image à gauche */
.large-image {
    width: 100%; /* Pour que l'image prenne toute la largeur de son conteneur */
    max-width: 600px; /* Taille max de l'image, ajuste la taille selon tes préférences */
    height: auto; /* Garder les proportions de l'image */
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); /* Ombre pour l'effet de profondeur */
}

/* Contenu à droite */
.interview-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--bleu-fonce);
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

/* ===== PAGE CONTACT ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info h2,
.contact-form-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--bleu-fonce);
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--gris-clair);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-item:hover {
    background-color: var(--blanc);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bleu-fonce), var(--bleu-moyen));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--noir);
    margin-bottom: 0.3rem;
}

.contact-details p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.contact-details a {
    color: var(--bleu-fonce);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--bleu-moyen);
    text-decoration: underline;
}

/* ===== FORMULAIRE DE CONTACT ===== */
.contact-form-section {
    background-color: var(--blanc);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--noir);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--gris-moyen);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: var(--blanc);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bleu-moyen);
    box-shadow: 0 0 0 3px rgba(122, 184, 196, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 137, 153, 0.3);
}

/* ===== SECTION DISPONIBILITÉ ===== */
.availability-section {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.availability-card {
    background: linear-gradient(135deg, var(--bleu-clair) 0%, var(--bleu-moyen) 100%);
    color: var(--blanc);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 15px 40px rgba(74, 137, 153, 0.2);
}

.availability-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.availability-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.availability-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-weight: 500;
}

.status-indicator {
    width: 12px;
    height: 12px;
    background-color: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* ===== RESPONSIVE CONTACT ===== */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-item {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .availability-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .availability-status {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .submit-btn {
        align-self: stretch;
        justify-content: center;
    }
}
/* ===== CORRECTIONS MOBILE ===== */

/* Header plus compact sur mobile */
@media (max-width: 768px) {
    header {
        position: fixed;
        z-index: 1001;
    }
    
    nav {
        flex-direction: column;
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-links {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }
    
    nav a:not(.logo) {
        font-size: 0.8rem;
        padding: 0.3rem 0;
    }
    
    /* Ajuster la marge du main pour compenser le header plus petit */
    main {
        margin-top: 7rem; /* Réduit de 8rem à 7rem */
        padding: 1.5rem 1rem;
    }
}

/* Portfolio grid amélioré pour mobile */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .portfolio-item {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    
    .portfolio-item img {
        height: 200px;
        object-fit: cover;
    }
    
    /* Forcer l'affichage des infos sur mobile (pas de hover) */
    .portfolio-info {
        position: relative;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
        padding: 1.5rem;
    }
    
    .portfolio-item::before {
        opacity: 0;
    }
}

/* Très petits écrans */
@media (max-width: 480px) {
    nav {
        padding: 0.6rem 0.8rem;
    }
    
    .nav-links {
        gap: 0.8rem;
    }
    
    nav a:not(.logo) {
        font-size: 0.75rem;
    }
    
    main {
        margin-top: 6.5rem;
        padding: 1rem 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .portfolio-item img {
        height: 180px;
    }
    
    .portfolio-info {
        padding: 1.2rem;
    }
    
    .portfolio-info h3 {
        font-size: 1.1rem;
    }
    
    .portfolio-info p {
        font-size: 0.9rem;
    }
}

/* Menu hamburger pour très petits écrans */
@media (max-width: 400px) {
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    nav a:not(.logo) {
        font-size: 0.7rem;
    }
    
    main {
        margin-top: 8rem; /* Plus d'espace car menu vertical */
    }
}

/* Hero section responsive */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        max-width: 100%;
    }
    
    .hero-image {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Contact page mobile */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Carrousels responsive */
@media (max-width: 768px) {
    .logos-carousel-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .carousel-controls {
        gap: 1rem;
    }
    
    .carousel-control {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Video sections responsive */
@media (max-width: 768px) {
    .simple-video-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .simple-text-content {
        padding: 1.5rem;
    }
    
    .simple-text-content h2 {
        font-size: 1.6rem;
    }
    
    .simple-text-content h3 {
        font-size: 1.2rem;
    }
}

/* Footer responsive */
@media (max-width: 768px) {
    footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}
																																																																																																							  /* Style pour les liens dans le footer */
.footer-section a {
    color: var(--blanc);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent);
    transform: translateX(3px);
}