.heroSection {
    min-height: 100vh;
    background: linear-gradient(45deg, #1a1a1a 0%, #2d1b69 50%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.heroContent {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.heroTitle {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    margin: 0;
    letter-spacing: -3px;
    text-shadow: 0 0 50px rgba(45, 27, 105, 0.8);
    background: linear-gradient(45deg, #fff, #ff6b6b, #4ecdc4, #ff9a9e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 3s ease-in-out infinite;
}

.heroSubtitle {
    font-size: clamp(1.2rem, 3vw, 2.5rem);
    margin: 30px 0 50px;
    opacity: 0.9;
    font-weight: 300;
}

.heroParticles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="0.5" fill="white" opacity="0.3"/><circle cx="30" cy="40" r="0.3" fill="%23ff6b6b" opacity="0.5"/><circle cx="60" cy="20" r="0.4" fill="%234ecdc4" opacity="0.4"/><circle cx="80" cy="70" r="0.6" fill="white" opacity="0.2"/></svg>') repeat;
    animation: float 15s ease-in-out infinite;
}

.artBanner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: clamp(40px, 8vw, 80px) 20px;
    position: relative;
    overflow: hidden;
}

.artBannerContent {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.artText {
    color: white;
}

.artTitle {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #fff, #ff6b6b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.artDescription {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    line-height: 1.7;
    opacity: 0.9;
}

.artVisual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.artBlock {
    border-radius: 15px;
    background: #bbb;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.1);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.artBlock:hover {
    transform: scale(1.02) rotate(1deg);
    background: #999;
}

.artBlockImage {
    height: 120px;
    width: 100%;
    background: #ccc;
    background-size: cover;
    background-position: center;
}

.artBlockText {
    padding: 10px;
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    background: rgba(255,255,255,0.9);
    font-weight: bold;
}

.showcaseSection {
    background: #0a0a0a;
    padding: clamp(60px, 10vw, 120px) 20px;
    position: relative;
}

.showcaseContainer {
    max-width: 1400px;
    margin: 0 auto;
}

.showcaseTitle {
    text-align: center;
    font-size: clamp(2rem, 6vw, 5rem);
    color: white;
    margin-bottom: clamp(40px, 8vw, 80px);
    font-weight: 900;
}

.showcaseGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 4vw, 30px);
}

.showcaseItem {
    background: linear-gradient(135deg, #1e1e1e, #2e2e2e);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    height: 400px;
}

.showcaseItem:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.2);
}

.showcaseImage {
    height: 70%;
    width: 100%;
    background: #aaa;
    background-size: cover;
    background-position: center;
}

.showcaseInfo {
    padding: 20px;
    color: white;
    height: 30%;
}

.showcaseInfo h3 {
    margin: 0 0 8px 0;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.showcaseInfo p {
    margin: 0;
    opacity: 0.8;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.stylesMotion {
    background: linear-gradient(45deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    padding: clamp(60px, 10vw, 100px) 20px;
    position: relative;
    overflow: hidden;
}

.stylesTitle {
    text-align: center;
    font-size: clamp(2rem, 6vw, 4rem);
    color: #2d1b69;
    margin-bottom: clamp(40px, 8vw, 80px);
    font-weight: 900;
}

.stylesCarousel {
    display: flex;
    overflow: hidden;
    animation: scroll 30s linear infinite;
    scroll-behavior: smooth;
}

.styleCard {
    min-width: 280px;
    border-radius: 20px;
    background: #ddd;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.styleCardImage {
    height: 140px;
    background: #bbb;
    background-size: cover;
    background-position: center;
}

.styleCardText {
    padding: 20px;
    text-align: center;
    background: white;
}

.styleCardText div {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.styleCardText small {
    color: #666;
    font-size: 0.9rem;
}

.equipmentSection {
    background: #222;
    padding: clamp(60px, 10vw, 100px) 20px;
}

.equipmentContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.equipmentTitle {
    text-align: center;
    font-size: clamp(2rem, 6vw, 4rem);
    color: white;
    margin-bottom: clamp(40px, 8vw, 80px);
    font-weight: 800;
}

.equipmentGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 5vw, 40px);
}

.equipmentCard {
    background: #333;
    border-radius: 20px;
    padding: clamp(20px, 4vw, 30px);
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

.equipmentCard:hover {
    background: #444;
    transform: translateY(-5px);
}

.equipmentImage {
    width: 100%;
    max-width: 200px;
    height: 150px;
    background: #888;
    border-radius: 10px;
    margin: 0 auto 20px;
    background-size: cover;
    background-position: center;
}

.equipmentCard h3 {
    margin: 0 0 10px 0;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
}

.equipmentCard p {
    margin: 0;
    opacity: 0.8;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.processSection {
    background: #1a1a1a;
    padding: clamp(60px, 12vw, 120px) 20px;
    position: relative;
}

.processContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.processTitle {
    text-align: center;
    font-size: clamp(2rem, 6vw, 4rem);
    color: white;
    margin-bottom: clamp(50px, 10vw, 100px);
    font-weight: 800;
}

.processSteps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(20px, 5vw, 40px);
}

.processStep {
    text-align: center;
    color: white;
    position: relative;
}

.stepNumber {
    width: clamp(60px, 8vw, 80px);
    height: clamp(60px, 8vw, 80px);
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.stepTitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 15px;
    font-weight: bold;
}

.stepDescription {
    opacity: 0.8;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.artworkSection {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    padding: clamp(60px, 10vw, 100px) 20px;
}

.artworkContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.artworkTitle {
    text-align: center;
    font-size: clamp(2rem, 6vw, 4rem);
    color: white;
    margin-bottom: clamp(40px, 8vw, 80px);
    font-weight: 800;
}

.artworkGallery {
    display: grid;
    grid-auto-flow: dense;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(15px, 3vw, 25px);
}

.artworkItem {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: white;
}

.artworkItem:hover {
    transform: scale(1.02);
}

.artworkImage {
    aspect-ratio: 1;
    background: #bbb;
    background-size: cover;
    background-position: center;
}

.artworkCaption {
    padding: 10px;
    text-align: center;
    color: #333;
    font-weight: bold;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.testimonialsSection {
    background: #0d0d0d;
    padding: clamp(60px, 10vw, 100px) 20px;
}

.testimonialsContainer {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.testimonialsTitle {
    font-size: clamp(2rem, 6vw, 4rem);
    color: white;
    margin-bottom: clamp(40px, 8vw, 80px);
    font-weight: 800;
}

.testimonialsGrid {
    display: grid;
    grid-auto-flow: dense;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 4vw, 30px);
}

.testimonialCard {
    background: #1a1a1a;
    border-radius: 20px;
    padding: clamp(20px, 4vw, 30px);
    color: white;
    border-left: 4px solid #ff6b6b;
}

.testimonialPhoto {
    width: 60px;
    height: 60px;
    background: #777;
    border-radius: 50%;
    margin: 0 auto 15px;
    background-size: cover;
    background-position: center;
}

.testimonialCard p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin: 0 0 10px 0;
    font-style: italic;
}

.testimonialCard strong {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.timelineSection {
    background: #0f0f0f;
    padding: clamp(60px, 12vw, 120px) 20px;
    position: relative;
}

.timelineContainer {
    max-width: 1000px;
    margin: 0 auto;
}

.timelineTitle {
    text-align: center;
    font-size: clamp(2rem, 6vw, 4rem);
    color: white;
    margin-bottom: clamp(40px, 8vw, 80px);
    font-weight: 800;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #ff6b6b, #4ecdc4);
    transform: translateX(-50%);
}

.timelineItem {
    display: flex;
    margin-bottom: clamp(40px, 8vw, 60px);
    position: relative;
}

.timelineItem:nth-child(odd) {
    flex-direction: row;
}

.timelineItem:nth-child(even) {
    flex-direction: row-reverse;
}

.timelineItem:nth-child(odd) .timelineContent {
    margin-left: 60px;
}

.timelineItem:nth-child(even) .timelineContent {
    margin-right: 60px;
}

.timelineContent {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    border-radius: 20px;
    padding: clamp(20px, 4vw, 30px);
    width: 45%;
    color: white;
    position: relative;
    word-break: break-word;
    white-space: normal;
}

.timelineDate {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: bold;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.timelineContent h3 {
    margin: 0 0 10px 0;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.timelineContent p {
    margin: 0;
    font-size: clamp(0.9rem, 2vw, 1rem);
    opacity: 0.8;
}

.finalCta {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #2d1b69 100%);
    padding: clamp(60px, 12vw, 120px) 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ctaContent {
    max-width: 800px;
    margin: 0 auto;
    color: white;
    position: relative;
    z-index: 2;
}

.ctaTitle {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ctaSubtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 50px;
    opacity: 0.9;
    line-height: 1.6;
}

.ctaButtons {
    display: flex;
    gap: clamp(15px, 4vw, 30px);
    justify-content: center;
    flex-wrap: wrap;
}

.ctaBtn {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border: none;
    padding: clamp(15px, 3vw, 20px) clamp(25px, 5vw, 40px);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: bold;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
    text-decoration: none;
    display: inline-block;
}

.ctaBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(255, 107, 107, 0.5);
}

.ctaBtn.secondary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.ctaBtn.secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #ff6b6b;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

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

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .artBannerContent {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .processSteps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timelineContent {
        width: calc(100% - 60px);
        margin-left: 40px;
    }
    
    .timelineItem:nth-child(even) {
        flex-direction: row;
    }

    .artVisual {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .artBlockImage {
        height: 80px;
    }

    .artBlockText {
        font-size: 0.7rem;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .processSteps {
        grid-template-columns: 1fr;
    }
    
    .showcaseGrid {
        grid-template-columns: 1fr;
    }
    
    .equipmentGrid {
        grid-template-columns: 1fr;
    }
    
    .testimonialsGrid {
        grid-template-columns: 1fr;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Style pour le lien admin */
.adminAccess {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0.8;
}

.adminAccess:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.adminAccess:active {
    transform: translateY(-1px);
}

/* Masquer sur mobile pour éviter l'encombrement */
@media (max-width: 768px) {
    .adminAccess {
        bottom: 10px;
        right: 10px;
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}
