/* ===========================================
   PORTFOLIO MARTIN HOUZIAUX - STYLES COMMUNS
   =========================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #FAF0E6;
    font-family: 'Nunito', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}

p {
    font-family: 'Nunito', sans-serif;
    letter-spacing: 1px;
}

span {
    font-family: 'Bebas Neue', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #4071F4;
}

/* Container principal */
.main-container {
    max-width: 1200px;
    margin: 60px auto;
    background-color: #FAF0E6;
    padding: 0 20px;
}

/* Header du projet */
.project-header {
    text-align: center;
    padding: 40px 30px 30px;
}

.project-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    color: #B22222;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.project-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(14px, 2vw, 18px);
    color: #666;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
}

/* Section principale avec image */
.hero-section {
    padding: 40px 0;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    background-color: #d3d3d3;
    margin: 0 auto 30px;
    display: block;
    object-fit: cover;
}

/* Sections de contenu en colonnes */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 40px 0 20px;
}

.content-column {
    padding: 0;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(20px, 2.5vw, 28px);
    color: #B22222;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-bottom: 2px solid #B22222;
    display: inline-block;
    padding-bottom: 5px;
}

.section-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

/* Section membres de l'ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â©quipe */
.team-section {
    padding: 20px 0 30px;
}

.team-section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 5px;
}

/* Galerie d'images - 2 colonnes */
.gallery-section {
    padding: 40px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

/* Galerie d'images - une colonne (pour certaines pages) */
.gallery-grid.single-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gallery-item {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Section galerie avec titres (Manetie) */
.gallery-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 4vw, 42px);
    color: #4071F4;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
    border-bottom: 3px solid #4071F4;
    display: inline-block;
    padding-bottom: 8px;
}

.gallery-section-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

/* Section autres projets */
.other-projects {
    background-color: #FAF0E6;
    padding: 50px 0;
    text-align: center;
}

.other-projects h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 4vw, 36px);
    color: #4071F4;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 3px solid #4071F4;
    display: inline-block;
    padding-bottom: 8px;
}

.projet-cards {
    margin-bottom: 0.4vh;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.projects-grid > a {
    flex: 0 0 calc(25% - 20px);
    min-width: 220px;
    text-decoration: none;
    color: inherit;
}

/* Cartes projets */
.card {
    margin-bottom: 5vh;
    padding: 0px;
    width: 100%;
    border: none;
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.card-img {
    width: 100%;
    height: auto;
    display: block;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.card:hover .card-img-overlay {
    opacity: 1;
}

.card-img-overlay.bgred {
    background-color: rgba(178, 34, 34, 0.95);
}

.card-img-overlay.mksblue {
    background-color: rgba(19, 0, 144, 0.95);
}

.card-img-overlay.mksorange {
    background-color: rgba(254, 112, 2, 0.95);
}

.card-img-overlay.bgviolet {
    background-color: rgba(211, 149, 255, 0.95);
}

.card-img-overlay.bggreen {
    background-color: rgba(0, 128, 0, 0.95);
}

.dates {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 45px;
    color: white;
    margin-bottom: 10px;
}

.card-title {
    font-family: 'Bebas Neue', sans-serif;
    color: white;
    font-size: 30px;
    text-align: center;
    margin: 0;
}

/* Divider */
.divider {
    height: 2px;
    background-color: #e0e0e0;
    margin: 30px 0;
}

/* Couleurs d'accent */
.ciel { color: #FEB68F; }
.red { color: #B22222; }
.yellow { color: #F4CA16; }
.blue { color: #4071F4; }

/* ===========================================
   STYLES SPÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â°CIFIQUES PAGE INDEX
   =========================================== */

/* Section Intro */
.intro {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.intro h2 {
    font-size: clamp(18px, 2.5vw, 28px);
    letter-spacing: 3px;
    color: #464646;
    margin-bottom: 1rem;
}

.intro h1 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.intro .martinpp {
    width: 100%;
    max-width: 35vh;
    height: auto;
}

/* Section ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ propos */
#apropos {
    padding: 80px 0;
}

#apropos h1 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 1rem;
    text-align: center;
}

#apropos hr {
    border-top: 2px solid #B22222;
    width: 80px;
    margin: 0 auto 3rem auto;
    opacity: 1;
}

#apropos p {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.8;
    text-align: center;
    font-weight: 400;
}

/* Section CompÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â©tences */
#competences {
    padding: 80px 0;
}

#competences h1 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 1rem;
    text-align: center;
}

#competences hr {
    border-top: 2px solid #F4CA16;
    width: 80px;
    margin: 0 auto 3rem auto;
    opacity: 1;
}

#competences h4 {
    font-size: clamp(24px, 3vw, 32px);
    margin: 3rem 0 2rem 0;
}

#competences h5 {
    font-size: clamp(14px, 1.5vw, 18px);
    margin-bottom: 0.5rem;
}

/* Barres de progression */
progress[value] {
    appearance: none;
    border: none;
    width: 100%;
    height: 12px;
    background-color: #e0e0e0;
    border-radius: 20px;
    overflow: hidden;
}

progress::-webkit-progress-bar {
    background-color: #e0e0e0;
    border-radius: 20px;
}

progress::-webkit-progress-value {
    background-color: #7732a8;
    border-radius: 20px;
    transition: width 0.5s ease;
}

progress::-moz-progress-bar {
    background-color: #7732a8;
    border-radius: 20px;
}

.skill-row {
    margin-bottom: 1.5rem;
}

/* Cercles de compÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â©tences */
.circle-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.circle-skill {
    text-align: center;
}

/* Section Projets */
#projets {
    padding: 80px 0;
}

#projets h1 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 1rem;
    text-align: center;
}

#projets hr {
    border-top: 2px solid #4071F4;
    width: 80px;
    margin: 0 auto 3rem auto;
    opacity: 1;
}

/* Section Centres d'intÃ©rÃªt */
#hobbies {
    padding: 80px 0;
}

#hobbies h1 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 1rem;
    text-align: center;
}

#hobbies hr {
    border-top: 2px solid #FEB68F;
    width: 80px;
    margin: 0 auto 3rem auto;
    opacity: 1;
}

.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Grille personnalisÃ©e pour les hobbies: 4 en haut, 2 centrÃ©s en bas */
.hobbies-grid-custom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.hobby-link-centered {
    grid-column: span 1;
}

/* Centrer les 2 derniÃ¨res cartes */
.hobby-link-centered:nth-last-child(2) {
    grid-column: 2 / 3;
}

.hobby-link-centered:nth-last-child(1) {
    grid-column: 3 / 4;
}

.hobby-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.hobby-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.hobby-link:hover .hobby-card {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #FEB68F;
}

.hobby-card:hover {
    cursor: pointer;
}

.hobby-icon {
    font-size: 60px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.hobby-link:hover .hobby-icon {
    transform: scale(1.1) rotate(5deg);
}

.hobby-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hobby-description {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Section Contact */
.infos {
    padding: 80px 0;
}

.infos h1 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 1rem;
    text-align: center;
}

.infos hr {
    border-top: 2px solid #B22222;
    width: 80px;
    margin: 0 auto 3rem auto;
    opacity: 1;
}

.infos h2 {
    font-size: clamp(20px, 2.5vw, 28px);
    margin-bottom: 2rem;
    text-align: center;
}

.infos h3 {
    font-size: clamp(16px, 2vw, 22px);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.infos p {
    font-size: clamp(16px, 1.8vw, 20px);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.infos a:hover h3,
.infos a:hover p {
    color: #4071F4;
}

#map iframe {
    width: 100%;
    max-width: 550px;
    height: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.page-loopgame .project-header h1,
.page-loopgame .section-title {
    color: #28a745;
}

.page-loopgame .section-title {
    border-bottom-color: #28a745;
}

.page-manetie .project-header h1,
.page-manetie .section-title {
    color: #4071F4;
}

.page-manetie .section-title {
    border-bottom-color: #4071F4;
}

.page-neighborstore .project-header h1,
.page-neighborstore .section-title {
    color: #AB6FF6;
}

.page-neighborstore .section-title {
    border-bottom-color: #AB6FF6;
}

.page-ranchbot .project-header h1,
.page-ranchbot .section-title {
    color: #F4CA16;
}

.page-ranchbot .section-title {
    border-bottom-color: #F4CA16;
}

.page-saxsoldier .project-header h1,
.page-saxsoldier .section-title {
    color: #4071F4;
}

.page-saxsoldier .section-title {
    border-bottom-color: #4071F4;
}

/* ===========================================
   COMPÃƒÆ’Ã¢â‚¬Â°TENCES - CONCEPT 1 (CARTES BADGES)
   =========================================== */

.skills-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Classe pour carte double largeur */
.skill-card-wide {
    grid-column: span 2;
}

.skill-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 15px;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 280px;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.skill-card.seo {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.skill-card.analytics {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.skill-card.netlinking {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.skill-card.cms {
    background: linear-gradient(135deg, #a8e063 0%, #56ab2f 100%);
}

.skill-card.conversion {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);

}

.skill-card.tech {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.skill-card.soft {
    background: linear-gradient(135deg, #f7b733 0%, #fc4a1a 100%);
}

.skill-card.management {
    background: linear-gradient(135deg, #ad5389 0%, #3c1053 100%);
}

.skill-card-title {
    font-size: 28px;
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 20px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.skill-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-badge {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 800;
    border: 2px solid rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Nunito';
}

.skill-badge:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Lien de tÃƒÆ’Ã‚Â©lÃƒÆ’Ã‚Â©chargement CV */
.cv-download-link p {
    display: inline-block;
    padding: 12px 25px;
    background-color: #B22222;
    color: white !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    margin-top: 10px;
}

.cv-download-link:hover p {
    background-color: #4071F4;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(64, 113, 244, 0.3);
}

/* Copyright Footer */
.copyright-footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.copyright-footer p {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Page Mon Kit Solaire - Couleurs entreprise */
.page-monkitsolaire .project-header h1,
.page-monkitsolaire .section-title {
    color: #FE7002; /* Orange MKS */
}

.page-monkitsolaire .section-title {
    border-bottom-color: #FE7002;
}

/* Hover states et accents avec le violet MKS */
.page-monkitsolaire .gallery-item:hover::before {
    background: rgba(19, 0, 144, 0.85); /* Violet MKS */
}

.page-monkitsolaire .other-projects h2 {
    color: #130090; /* Violet MKS */
    border-bottom-color: #130090;
}

/* ===========================================
   RESPONSIVE
   =========================================== */

/* Tablettes */
@media (max-width: 1024px) and (min-width: 769px) {
    .hobbies-grid-custom {
        grid-template-columns: repeat(2, 1fr);
    }

    .hobby-link-centered:nth-last-child(2),
    .hobby-link-centered:nth-last-child(1) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .main-container {
        margin: 20px;
        padding: 0 15px;
    }

    .two-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid > a {
        flex: 0 0 calc(50% - 20px);
    }

    /* CompÃƒÆ’Ã‚Â©tences - Cartes responsive */
    .skills-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .skill-card {
        min-height: auto;
    }

    /* Annuler la double largeur sur mobile */
    .skill-card-wide {
        grid-column: span 1;
    }

    /* Hobbies responsive */
    .hobbies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hobbies-grid-custom {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hobby-link-centered:nth-last-child(2),
    .hobby-link-centered:nth-last-child(1) {
        grid-column: 1;
    }

    .hobby-card {
        padding: 30px 20px;
    }

    .hobby-icon {
        font-size: 50px;
    }

    .hobby-title {
        font-size: 24px;
    }

    .hobby-description {
        font-size: 15px;
    }

    /* Intro responsive */
    .intro {
        text-align: center;
    }

    .intro .martinpp {
        max-width: 250px;
        margin: 2rem auto;
    }

    #competences h4,
    #competences h5 {
        text-align: center;
    }

    .circle-container {
        gap: 1rem;
    }

    #map iframe {
        height: 300px;
    }

    cv-download-link p {
        padding: 10px 20px;
        font-size: 16px;
    }

    .copyright-footer {
        padding: 20px 15px;
        margin-top: 30px;
    }
    
    .copyright-footer p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .intro,
    #apropos,
    #competences,
    #projets,
    .infos {
        padding: 40px 0;
    }

    .card-title {
        font-size: 18px;
    }

    .dates {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .projects-grid > a {
        flex: 0 0 100%;
    }

    .card {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===========================================
   STYLES PAGES HOBBIES
   =========================================== */

.hobby-page {
    background-color: #FAF0E6;
    min-height: 100vh;
    padding: 60px 0;
}

.hobby-header {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
}

.hobby-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    color: #FEB68F;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hobby-icon-large {
    font-size: 80px;
    margin-bottom: 20px;
}

.back-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #FEB68F;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.back-button:hover {
    background-color: #4071F4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(64, 113, 244, 0.3);
}

.content-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #FEB68F;
    letter-spacing: 1px;
}

.content-section p {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Galeries images communes */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
    color: #666;
    font-size: 16px;
}

/* Hardware - Specs */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.spec-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px;
    border-radius: 12px;
    color: white;
    transition: transform 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-5px);
}

.spec-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
    opacity: 0.9;
    letter-spacing: 1px;
}

.spec-card p {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: white;
}

.highlight-box {
    background: linear-gradient(135deg, #FEB68F 0%, #F4CA16 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    color: white;
}

.highlight-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.highlight-box p {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
    color: white;
}

.stats-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.stats-list li {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
}

.stats-list li:last-child {
    border-bottom: none;
}

.stats-list li::before {
    content: "⚡";
    font-size: 24px;
    margin-right: 15px;
}

/* Cinéma */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.movie-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 30px;
    border-radius: 15px;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.movie-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.movie-card p {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    margin: 0;
    color: white;
    line-height: 1.6;
}

.badge-achievement {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.badge-achievement h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: white;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.badge-achievement p {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    color: white;
    margin: 0;
    font-weight: 600;
}

.saga-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 35px;
    border-radius: 15px;
    color: white;
    margin: 30px 0;
}

.saga-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.saga-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.saga-list li {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    padding: 12px 0;
    display: flex;
    align-items: center;
}

.saga-list li::before {
    content: "🎬";
    font-size: 24px;
    margin-right: 15px;
}

/* Musique */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.stat-label {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.concert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.concert-card {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    padding: 30px;
    border-radius: 15px;
    color: white;
    transition: all 0.3s ease;
}

.concert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(250, 112, 154, 0.3);
}

.concert-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.concert-card p {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    margin: 5px 0;
    color: white;
}

.spotify-banner {
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
    padding: 40px;
    border-radius: 15px;
    color: white;
    text-align: center;
    margin: 30px 0;
}

.spotify-banner h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.spotify-banner p {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    margin: 0;
    color: white;
}

/* Jeux vidéo */
.game-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 35px;
    border-radius: 15px;
    color: white;
    margin: 30px 0;
}

.game-highlight h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.game-highlight p {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    margin: 8px 0;
    color: white;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.game-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 30px;
    border-radius: 15px;
    color: white;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
}

.game-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.game-card p {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    margin: 5px 0;
    color: white;
}

.stats-box {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
}

.stats-box p {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    margin: 8px 0;
    color: white;
    font-weight: 600;
}

.platform-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: white;
    margin: 10px 0;
    letter-spacing: 1px;
}

/* Sport */
.team-highlight {
    background: linear-gradient(135deg, #FF0000 0%, #8B0000 100%);
    padding: 40px;
    border-radius: 15px;
    color: white;
    text-align: center;
    margin: 30px 0;
}

.team-highlight h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.team-highlight p {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    margin: 10px 0;
    color: white;
}

.bayern-section {
    background: linear-gradient(135deg, #DC052D 0%, #0066B2 100%);
    padding: 35px;
    border-radius: 15px;
    color: white;
    margin: 30px 0;
}

.bayern-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.bayern-section p {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    margin: 10px 0;
    color: white;
}

.players-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
}

.player-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.race-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.race-card {
    background: linear-gradient(135deg, #a8e063 0%, #56ab2f 100%);
    padding: 30px;
    border-radius: 15px;
    color: white;
    transition: all 0.3s ease;
}

.race-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(168, 224, 99, 0.3);
}

.race-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.race-card p {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    margin: 8px 0;
    color: white;
    font-weight: 600;
}

.pr-box {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    text-align: center;
}

.pr-box h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.pr-box p {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    color: white;
    margin: 8px 0;
    font-weight: 700;
}

.boxing-section {
    background: linear-gradient(135deg, #4a4a4a 0%, #1a1a1a 100%);
    padding: 35px;
    border-radius: 15px;
    color: white;
    margin: 30px 0;
}

.boxing-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.boxing-section p {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    margin: 0;
    color: white;
}

/* Automobile */
.brand-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.my-car p{
    color: white;
}

.brand-card {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 35px;
    border-radius: 15px;
    color: white;
    transition: all 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

.brand-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.brand-card p {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    margin: 8px 0;
    color: white;
    line-height: 1.6;
}

.amg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.amg-badge {
    background: linear-gradient(135deg, #C0C0C0 0%, #808080 100%);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.amg-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.4);
}

.civic-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.civic-badge {
    background: linear-gradient(135deg, #DC0000 0%, #8B0000 100%);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.civic-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(220, 0, 0, 0.4);
}

.my-car {
    background: linear-gradient(135deg, #DC0000 0%, #000000 100%);
    padding: 40px;
    border-radius: 15px;
    color: white;
    margin: 30px 0;
    box-shadow: 0 8px 30px rgba(220, 0, 0, 0.3);
}

.my-car h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-align: center;
}

.car-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.spec-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.spec-item h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0.9;
    letter-spacing: 1px;
}

.spec-item p {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: white;
}

/* Responsive pages hobbies */
@media (max-width: 768px) {
    .hobby-icon-large {
        font-size: 60px;
    }

    .content-section {
        padding: 25px;
    }

    .spec-grid,
    .movie-grid,
    .stats-grid,
    .concert-grid,
    .game-grid,
    .race-grid,
    .brand-section,
    .amg-grid,
    .civic-section,
    .car-specs,
    .image-gallery {
        grid-template-columns: 1fr;
    }

    .players-list {
        flex-direction: column;
    }
}

/* ===========================================
   LIGHTBOX GALERIE IMAGES
   =========================================== */

/* Effet au survol des images de la galerie */
.gallery-item {
    position: relative;
    cursor: pointer;
}

.gallery-item::before {
    content: '🔍 Cliquer pour zoomer';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
    white-space: nowrap;
}

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

.gallery-item:hover img {
    filter: brightness(0.85);
    transition: filter 0.3s ease;
}

.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

#lightbox-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

#lightbox-image img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

/* Bouton fermer - PRÈS DE L'IMAGE */
.lightbox-close {
    position: absolute;
    top: -70px;
    right: -70px;
    width: 55px;
    height: 55px;
    background: #FEB68F;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 26px;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-close:hover {
    background: #B22222;
    transform: rotate(90deg) scale(1.1);
}

/* Boutons navigation - PRÈS DE L'IMAGE */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(254, 182, 143, 0.95);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 32px;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #B22222;
    transform: translateY(-50%) scale(1.1);
}

/* Compteur d'images */
.lightbox-counter {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    z-index: 10001;
}

/* Responsive lightbox */
@media (max-width: 768px) {
    .gallery-item::before {
        font-size: 10px;
        padding: 5px 10px;
        bottom: 5px;
    }

    .lightbox-close {
        top: -60px;
        right: -60px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .lightbox-prev {
        left: -65px;
    }

    .lightbox-next {
        right: -65px;
    }

    #lightbox-image img {
        max-width: 95vw;
        max-height: 80vh;
    }

    .lightbox-counter {
        bottom: 10px;
        font-size: 12px;
        padding: 6px 12px;
    }
}
