/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #f5f5f5;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

/* Variables */
:root {
    --bg-black: #0a0a0a;
    --bg-dark: #1a1a1a;
    --bg-medium: #2a2a2a;
    --text-primary: #f5f5f5;
    --text-secondary: #999;
    --border-light: #333;
    --accent-gold: #d4af37;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation minimaliste */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo img {
    height: 90px;
    width: auto;
    opacity: 0.9;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.logo img:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(212, 175, 55, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 80px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--accent-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    margin: 4px 0;
    transition: 0.3s;
}

/* Hero Section WOW */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-black), var(--bg-dark));
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: floatGradient 8s ease-in-out infinite;
}

@keyframes floatGradient {
    0%, 100% { transform: translateX(0) translateY(0); }
    33% { transform: translateX(-20px) translateY(-10px); }
    66% { transform: translateX(20px) translateY(10px); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 1000px;
    position: relative;
}

.hero h1 {
    font-size: 120px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 30px;
    letter-spacing: -2px;
    line-height: 1.1;
    background: linear-gradient(135deg, #f5f5f5 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

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

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-location {
    font-size: 18px;
    color: var(--accent-gold);
    margin-bottom: 60px;
    letter-spacing: 1px;
    font-weight: 400;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    padding: 20px 40px;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.6s ease;
}

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

.btn-contact:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-contact span {
    transition: transform 0.3s ease;
}

.btn-contact:hover span {
    transform: translateX(8px);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Sections */
.section {
    padding: 140px 0;
    position: relative;
}

/* Studio Section WOW */
.studio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
    position: relative;
}

.studio-text h2 {
    font-size: 64px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 50px;
    letter-spacing: -2px;
    line-height: 1.1;
    position: relative;
}

.studio-text h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--accent-gold);
}

.studio-text p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
    max-width: 500px;
}

.studio-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: block;
}

.studio-content img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    animation: continuousRotate 15s linear infinite, continuousFloat 3s ease-in-out infinite;
}

/* Override for enregistrement, mixage, mastering, production and realisation-video pages - no floating */
.enregistrement .studio-content .portfolio-item img,
.mixage .studio-content .portfolio-item img,
.mastering .studio-content .portfolio-item img,
.production .studio-content .portfolio-item img,
.realisation-video .studio-content .portfolio-item video,
.realisation-video .portfolio-item img {
    animation: none !important;
}

/* Video styling for portfolio items */
.portfolio-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Carousel */
.video-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.carousel-container {
    flex: 1;
    position: relative;
    height: 500px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.8);
    color: var(--bg-dark);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.video-carousel:hover .carousel-arrow {
    opacity: 1;
    pointer-events: auto;
}

.carousel-arrow:hover {
    background: var(--accent-gold);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

.carousel-arrow-left {
    left: 20px;
}

.carousel-arrow-right {
    right: 20px;
}

/* Make service section carousels smaller */
.services-section .video-carousel {
    max-width: 400px;
}

.services-section .carousel-container {
    height: 400px;
}

/* Carousels Grid Layout */
.carousels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.carousel-item {
    text-align: center;
}

.carousel-item h3 {
    font-size: 24px;
    font-weight: 400;
    color: var(--accent-gold);
    margin-bottom: 30px;
    letter-spacing: -1px;
    position: relative;
}

.carousel-item h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
    opacity: 0.6;
}

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

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

/* Equipment Section WOW */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

.equipment-item {
    background: linear-gradient(135deg, var(--bg-medium), var(--bg-dark));
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.equipment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

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

.equipment-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.3);
}

.equipment-header {
    padding: 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    border-bottom: 1px solid var(--border-light);
}

.equipment-name {
    font-size: 28px;
    font-weight: 300;
    color: var(--accent-gold);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.equipment-brand {
    font-size: 16px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.equipment-content {
    padding: 40px;
}

.equipment-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.equipment-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.equipment-spec {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--accent-gold);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.equipment-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.equipment-item:hover .equipment-glow {
    opacity: 1;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.equipment-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), rgba(212, 175, 55, 0.5));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--bg-black);
    font-weight: 500;
    opacity: 0.9;
    transition: all 0.4s ease;
}

.equipment-item:hover .equipment-icon {
    transform: scale(1.1) rotate(10deg);
    opacity: 1;
}

/* Services Section WOW */
.services-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.services-text h3 {
    font-size: 32px;
    font-weight: 400;
    color: var(--accent-gold);
    margin: 50px 0 20px 0;
    letter-spacing: -1px;
    position: relative;
}

.services-text h3:first-child {
    margin-top: 0;
}

.services-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    opacity: 0.6;
}

.services-text h2 {
    font-size: 64px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 80px;
    letter-spacing: -2px;
    line-height: 1.1;
    position: relative;
}

.services-text h2::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--accent-gold);
}

.services-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.services-list li {
    font-size: 22px;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.services-list li a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
    padding: 30px;
    position: relative;
    z-index: 2;
}

.services-list li:hover::before {
    opacity: 1;
}

.services-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.services-list li:hover::before {
    opacity: 1;
}

.services-list li:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.services-list li:hover a {
    color: var(--accent-gold);
}

/* Portfolio Section WOW */
.portfolio {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-black) 100%);
    position: relative;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.portfolio h2 {
    font-size: 64px;
    font-weight: 200;
    color: var(--text-primary);
    margin-bottom: 100px;
    text-align: center;
    letter-spacing: -2px;
    position: relative;
}

.portfolio h2::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--accent-gold);
}

.portfolio h3 {
    font-size: 42px;
    font-weight: 300;
    color: var(--accent-gold);
    margin: 60px 0 40px 0;
    text-align: center;
    letter-spacing: -1px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.portfolio h3:first-of-type {
    margin-top: 0;
}

.portfolio h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--accent-gold);
    opacity: 0.6;
}

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

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    position: relative;
    z-index: 1;
    margin-bottom: 80px;
}

.portfolio-item {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--bg-medium), var(--bg-dark));
    border-radius: 20px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: portfolioItemAppear 0.8s ease forwards;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.2s; }
.portfolio-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes portfolioItemAppear {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: all 0.8s ease;
    border-radius: 20px;
}

.portfolio-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-gold), transparent, var(--accent-gold));
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.8s ease;
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.portfolio-item:hover::after {
    opacity: 0.6;
}

.portfolio-item:hover {
    transform: scale(1.08) translateY(-10px) rotateY(3deg);
    box-shadow: 0 40px 120px rgba(212, 175, 55, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1) saturate(1.2);
    position: relative;
    z-index: 1;
}

.portfolio-item:hover img {
    transform: scale(1.08) rotateX(2deg);
    filter: brightness(1) contrast(1.2) saturate(1.3);
}

.portfolio-item .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-primary);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 4;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.9),
        0 4px 20px rgba(212, 175, 55, 0.3),
        0 0 40px rgba(212, 175, 55, 0.1);
    pointer-events: none;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    text-align: center;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-item:hover .overlay-text {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, transparent 60%);
    opacity: 0;
    transition: all 0.8s ease;
    border-radius: 20px;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.portfolio-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-gold), transparent, var(--accent-gold));
    border-radius: 20px;
    opacity: 0;
    z-index: 3;
    transition: opacity 0.8s ease;
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.portfolio-item:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4) 0%, transparent 60%);
}

.portfolio-item:hover::after {
    opacity: 0.8;
    animation: shimmer 1s ease-in-out infinite;
}

/* Contact Section WOW */
.contact-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.contact-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.contact-text h2 {
    font-size: 64px;
    font-weight: 200;
    color: var(--text-primary);
    margin-bottom: 50px;
    letter-spacing: -2px;
    line-height: 1.1;
    position: relative;
}

.contact-text h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--accent-gold);
}

.contact-text p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 80px;
    line-height: 1.8;
}

.contact-info {
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-item {
    background: linear-gradient(135deg, var(--bg-medium), var(--bg-dark));
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.contact-link:hover .contact-item {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.contact-link:hover .contact-item::before {
    opacity: 1;
}

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

.contact-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s ease;
}

.contact-label {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.contact-link:hover .contact-label {
    color: var(--accent-gold);
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.contact-item:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 40px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 25px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 18px;
    transition: all 0.4s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-gold);
    color: var(--accent-gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.btn-submit {
    width: 100%;
    padding: 25px 0;
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.6s ease;
}

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

.btn-submit:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

/* Footer WOW */
.footer {
    padding: 80px 0;
    border-top: 1px solid var(--border-light);
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-black) 100%);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.footer p {
    font-size: 14px;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
        height: 80px;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--bg-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 40px 0;
        gap: 30px;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 60px;
        letter-spacing: -4px;
    }
    
    .studio-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .studio-text h2,
    .services-text h2,
    .portfolio h2,
    .contact-text h2 {
        font-size: 40px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
}

/* Video Grid Styles */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

/* Pour les écrans larges, afficher 3 colonnes */
@media (min-width: 1200px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Pour les écrans moyens, afficher 2 colonnes */
@media (min-width: 768px) and (max-width: 1199px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Pour les mobiles, afficher 1 colonne */
@media (max-width: 767px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.video-item {
    background: linear-gradient(135deg, var(--bg-medium), var(--bg-dark));
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: videoItemAppear 0.8s ease forwards;
    display: block;
}

.video-item:nth-child(1) { animation-delay: 0.1s; }
.video-item:nth-child(2) { animation-delay: 0.2s; }
.video-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes videoItemAppear {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.video-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: all 0.6s ease;
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
}

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

.video-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    z-index: 2;
    background: #000;
}

.video-container video {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.6s ease;
    display: block;
}

.video-item:hover .video-container video {
    transform: scale(1.05);
    filter: brightness(0.8) contrast(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        transparent 20%,
        transparent 80%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 20px;
    z-index: 2;
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.video-arrows {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.arrow-left,
.arrow-right {
    background: rgba(212, 175, 55, 0.9);
    color: var(--bg-black);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    opacity: 0;
    transform: scale(0.8);
}

.video-item:hover .arrow-left,
.video-item:hover .arrow-right {
    opacity: 1;
    transform: scale(1);
}

.arrow-left:hover,
.arrow-right:hover {
    background: var(--accent-gold);
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

.arrow-left:active,
.arrow-right:active {
    transform: scale(0.95);
}

.video-title {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.video-item:hover .video-title {
    transform: translateY(0);
    color: var(--accent-gold);
}

/* Animations subtiles */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
