/* Variables de couleur - Charte graphique noir et violet */
:root {
    --violet-primary: #9d4edd;       /* Violet vif principal */
    --violet-secondary: #c77dff;     /* Violet secondaire plus clair */
    --violet-dark: #7b2cbf;          /* Violet plus foncé pour contraste */
    --violet-light: #e0aaff;         /* Violet très clair */
    --black-primary: #121212;        /* Noir principal - presque noir */
    --black-secondary: #1e1e1e;      /* Noir secondaire - gris très foncé */
    --text-dark: #1a1a1a;            /* Texte sombre */
    --text-light: #ffffff;           /* Texte clair */
    --accent: #10e956;               /* Accent - vert fluo pour contraste */
    --bg-dark: #0a0a0a;              /* Fond sombre - noir profond */
    --bg-card: #1a1a1a;              /* Fond de carte - noir moins profond */
    --box-shadow: 0 10px 30px rgba(157, 78, 221, 0.2); /* Ombre moderne */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

header {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--violet-primary);
    text-decoration: none;
}

.logo span {
    color: var(--accent);
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 2rem;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
    position: relative;
}

nav a:hover {
    color: var(--violet-primary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--violet-primary);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.hero {
    padding: 12rem 0 6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 85vh;
}

.hero-text {
    width: 55%;
}

.hero-image {
    width: 40%;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--black-secondary);
    border-radius: 20px;
    z-index: -1;
    transform: rotate(-3deg);
    border: 1px solid var(--violet-dark);
}

.hero-image::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    background-color: var(--violet-dark);
    border-radius: 20px;
    z-index: -2;
    bottom: -10%;
    right: -10%;
    opacity: 0.3;
}

.hero-image img {
    width: 100%;
    max-width: 380px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

.photo-placeholder {
    width: 100%;
    max-width: 380px;
    height: 450px;
    background-color: var(--black-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet-light);
    font-size: 1rem;
    text-align: center;
    padding: 1rem;
    border: 1px solid var(--violet-primary);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.2;
}

h1 span {
    color: var(--violet-primary);
    position: relative;
    display: inline-block;
}

h1 span::after {
    content: '';
    position: absolute;
    height: 12px;
    background-color: rgba(157, 78, 221, 0.3);
    width: 100%;
    left: 0;
    bottom: 8px;
    z-index: -1;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--violet-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background-color: var(--violet-primary);
    color: var(--text-light);
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--violet-primary);
    margin-right: 1rem;
    box-shadow: 0 5px 15px rgba(157, 78, 221, 0.25);
}

.btn:hover {
    background-color: var(--violet-dark);
    border-color: var(--violet-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(157, 78, 221, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--violet-primary);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--violet-primary);
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(157, 78, 221, 0.25);
}

.social-links {
    display: flex;
    margin-top: 2.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: var(--black-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.social-icon:hover {
    background-color: var(--violet-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(157, 78, 221, 0.2);
    border-color: var(--violet-primary);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--violet-primary);
    transition: all 0.3s;
}

.social-icon:hover svg {
    fill: var(--text-light);
}

.section-title {
    text-align: center;
    margin: 5rem 0 3rem;
    position: relative;
    color: var(--text-light);
    font-size: 2.2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--violet-primary);
    border-radius: 2px;
}

.featured-works {
    padding: 2rem 0 5rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.work-card {
    background-color: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(157, 78, 221, 0.3);
    border-color: var(--violet-primary);
}

.work-image {
    width: 100%;
    height: 220px;
    background-color: var(--black-secondary);
    position: relative;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.work-card:hover .work-image img {
    transform: scale(1.05);
}

.work-info {
    padding: 1.8rem;
}

.work-info h3 {
    color: var(--violet-light);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.work-info p {
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    opacity: 0.85;
}

.work-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background-color: rgba(157, 78, 221, 0.15);
    color: var(--violet-light);
    padding: 0.3rem 0.9rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.cta-section {
    background-color: var(--black-secondary);
    background-image: linear-gradient(45deg, var(--black-secondary), var(--violet-dark));
    padding: 5rem 0;
    color: var(--text-light);
    text-align: center;
    margin-top: 4rem;
    border-top: 1px solid rgba(157, 78, 221, 0.3);
    border-bottom: 1px solid rgba(157, 78, 221, 0.3);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-light {
    background-color: var(--text-light);
    color: var(--violet-dark);
    border-color: var(--text-light);
}

.btn-light:hover {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(157, 78, 221, 0.1);
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

footer a {
    color: var(--violet-primary);
    text-decoration: none;
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
    }

    .hero-text, .hero-image {
        width: 100%;
    }

    .hero-image {
        margin-top: 3rem;
        order: -1;
    }

    .hero-image img, .photo-placeholder {
        max-width: 320px;
    }

    h1 {
        font-size: 2.8rem;
    }

    .social-links {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }

    nav {
        margin-top: 1rem;
    }

    nav ul {
        justify-content: center;
    }

    nav li {
        margin: 0 1rem;
    }

    .featured-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    h1 {
        font-size: 2.3rem;
    }

    .btn {
        display: block;
        margin: 1rem auto;
        max-width: 250px;
    }
}

@media screen and (max-width: 576px) {
    .hero {
        padding-top: 7rem;
    }

    .hero-image img, .photo-placeholder {
        max-width: 90%;
        height: 330px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    h1 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}
.skills-section {
    padding: 5rem 0;
    background-color: var(--bg-dark);
    position: relative;
}

.skills-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(157, 78, 221, 0) 0%, rgba(157, 78, 221, 0.5) 50%, rgba(157, 78, 221, 0) 100%);
}

.skills-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.skill-category {
    background-color: var(--black-secondary);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(157, 78, 221, 0.3);
    border-color: var(--violet-primary);
}

.category-title {
    color: var(--violet-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--violet-primary);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.skill-item {
    display: flex;
    align-items: center;
    background-color: rgba(30, 30, 30, 0.5);
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s;
}

.skill-item:hover {
    background-color: rgba(157, 78, 221, 0.1);
    box-shadow: 0 5px 15px rgba(157, 78, 221, 0.15);
}

.skill-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.skill-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--violet-primary);
}

.skill-info {
    flex: 1;
}

.skill-info h4 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.skill-bar {
    height: 8px;
    background-color: rgba(157, 78, 221, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--violet-dark) 0%, var(--violet-primary) 100%);
    border-radius: 4px;
    transition: width 1.5s ease-in-out;
}

.skills-text {
    margin-top: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.skills-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    opacity: 0.9;
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .skill-category {
        padding: 1.5rem;
    }
}
.gallery-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--black-secondary) 100%);
}

.gallery-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.gallery-hero h1 span {
    color: var(--violet-primary);
}

.gallery-hero p {
    font-size: 1.2rem;
    color: var(--violet-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--violet-primary);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.back-btn:hover {
    color: var(--violet-secondary);
    transform: translateX(-5px);
}

.back-btn::before {
    content: '←';
    font-size: 1.2rem;
}

/* ======== SECTION COMMUNE ======== */
.section-subtitle {
    font-size: 2rem;
    color: var(--violet-primary);
    margin-bottom: 2rem;
    position: relative;
    text-align: center;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--violet-primary);
    border-radius: 2px;
}

/* ======== FEATURED POSTER SECTION ======== */
.featured-poster {
    padding: 4rem 0;
    background-color: var(--bg-dark);
}

.poster-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.poster-showcase {
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
}

.poster-showcase:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(157, 78, 221, 0.3);
    border-color: var(--violet-primary);
}

.poster-showcase img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 15px 30px rgba(157, 78, 221, 0.2);
}

.poster-info {
    max-width: 600px;
    margin: 0 auto;
}

.poster-info h3 {
    color: var(--violet-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.poster-info p {
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ======== LOGOS CAROUSEL SECTION ======== */
.logos-section {
    padding: 4rem 0;
    background-color: var(--black-secondary);
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    background-color: var(--bg-card);
}

/* ======== LOGO ITEMS ======== */
.logo-item {
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.logo-item:hover {
    border-color: var(--violet-primary);
    box-shadow: 0 10px 20px rgba(157, 78, 221, 0.2);
    transform: translateY(-5px);
}

/* Logo items avec images */
.logo-item:has(img) {
    padding: 0;
    background-color: white;
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}

.logo-item:has(img):hover img {
    transform: scale(1.05);
}

.logo-item:has(img) .logo-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--text-light);
    padding: 1rem;
    margin: 0;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Logo items avec placeholders */
.logo-item:not(:has(img)) {
    background-color: white;
    padding: 2rem;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--violet-primary) 0%, var(--violet-secondary) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.logo-item:not(:has(img)) .logo-title {
    color: var(--violet-dark);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

/* ======== CAROUSEL CONTROLS ======== */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    background-color: var(--violet-primary);
    color: var(--text-light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(157, 78, 221, 0.25);
}

.carousel-btn:hover {
    background-color: var(--violet-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(157, 78, 221, 0.4);
}

.carousel-btn:disabled {
    background-color: var(--black-secondary);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ======== CAROUSEL INDICATORS ======== */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(157, 78, 221, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--violet-primary);
    transform: scale(1.2);
}

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
    .gallery-hero h1 {
        font-size: 2.5rem;
    }

    .poster-showcase {
        padding: 2rem;
    }

    .carousel-slide {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }

    .logo-item:not(:has(img)) {
        padding: 1.5rem;
    }

    .logo-placeholder {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .gallery-hero {
        padding: 6rem 0 3rem;
    }

    .gallery-hero h1 {
        font-size: 2rem;
    }

    .carousel-slide {
        grid-template-columns: 1fr;
    }
}
/* Styles spécifiques pour la page contact */
.hero-section {
    padding: 12rem 0 6rem;
    text-align: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.2;
}

.hero-title span {
    color: var(--violet-primary);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    height: 12px;
    background-color: rgba(157, 78, 221, 0.3);
    width: 100%;
    left: 0;
    bottom: 8px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--violet-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-description {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section {
    padding: 2rem 0 5rem;
}

.contact-info {
    background-color: var(--bg-card);
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(157, 78, 221, 0.2);
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(157, 78, 221, 0.3);
    border-color: var(--violet-primary);
}

.contact-info h3 {
    color: var(--violet-light);
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.contact-info > p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-light);
    opacity: 0.9;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 10px;
    transition: all 0.3s;
}

.contact-item:hover {
    background-color: rgba(157, 78, 221, 0.1);
    box-shadow: 0 5px 15px rgba(157, 78, 221, 0.15);
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-text {
    flex: 1;
}

.contact-label {
    color: var(--violet-primary);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
    display: block;
}

.contact-value {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.contact-value a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-value a:hover {
    color: var(--violet-primary);
}

.social-section {
    padding: 4rem 0;
    text-align: center;
}

.social-title {
    text-align: center;
    margin: 5rem 0 3rem;
    position: relative;
    color: var(--text-light);
    font-size: 2.2rem;
}

.social-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--violet-primary);
    border-radius: 2px;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: var(--black-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(157, 78, 221, 0.3);
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--violet-primary);
}

.social-icon:hover {
    background-color: var(--violet-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(157, 78, 221, 0.2);
    border-color: var(--violet-primary);
    color: var(--text-light);
}

/* Navigation active */
nav a.active {
    color: var(--violet-primary);
}

nav a.active::after {
    width: 100%;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .hero-section {
        padding-top: 8rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .social-links {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .contact-info {
        padding: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .hero-section {
        padding-top: 7rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .contact-info {
        padding: 1.5rem;
    }
}
/* Styles spécifiques pour les cartes cliquables */
.work-card {
    cursor: pointer;
    position: relative;
}

.work-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1) 0%, rgba(199, 125, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 15px;
}

.work-card:hover::before {
    opacity: 1;
}

.work-image > div {
    transition: transform 0.3s ease;
}

.work-card:hover .work-image > div {
    transform: scale(1.05);
}

.view-project::after {
    content: ' →';
    transition: transform 0.3s ease;
}

.work-card:hover .view-project {
    color: var(--violet-primary);
}

.work-card:hover .view-project::after {
    transform: translateX(5px);
}

/* Effet de clic pour les cartes */
.work-card:active {
    transform: translateY(-5px) scale(0.98);
}

/* Focus pour l'accessibilité */
.work-card:focus {
    outline: 2px solid var(--violet-primary);
    outline-offset: 2px;}