/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
    overflow-x: hidden;
}

/* Body class when navigation is open */
body.nav-open {
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 1rem;
    display: block;
}

.section-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    font-size: 0.8rem;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Navigation - Style Coppola */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
}

/* HOME button avec couleur corail d'accentuation */
.nav-item-home .nav-link {
    color: rgba(248, 175, 138, 1); /* Couleur corail */
    font-weight: 500;
}

.nav-item-home .nav-link:hover {
    color: rgba(252, 194, 166, 1); /* Couleur corail plus claire au survol */
}

/* Effet au survol pour les autres liens */
.nav-link:hover {
    color: #FFB347; /* Couleur jaune-orangé */
    transform: translateY(-1px);
}

/* Dropdown Menus */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    min-width: 200px;
    padding: 20px 0;
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-item-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    color: #ccc;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    color: #FFB347; /* Couleur jaune-orangé */
    background: rgba(255, 179, 71, 0.1);
    border-left-color: #FFB347;
    transform: translateX(5px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.bar {
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Navigation Slide Effect */
.nav-link.active {
    color: #FF6B47;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 30px;
    height: 2px;
    background: #FF6B47;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #FF6B47;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 30px;
}

/* Navigation Responsive - Global pour toutes les pages */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding: 120px 0 60px;
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        gap: 40px;
        justify-content: center;
        align-items: center;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    .nav-link {
        font-size: 1.8rem;
        padding: 20px 0;
        font-weight: 300;
        display: block;
        width: 100%;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        color: #FF6B47;
        transform: scale(1.1);
    }
    
    .nav-link.active::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        top: 0;
        height: 100vh;
        padding: 100px 0 60px;
        gap: 30px;
    }
    
    .nav-link {
        font-size: 1.5rem;
        padding: 15px 0;
    }
    
    .nav-item {
        margin: 1.5rem 0;
    }
}

/* Welcome Screen Section - Style Coppola */
.welcome-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000;
    overflow: hidden;
}

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

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    /* Assure que la vidéo couvre tout l'écran */
    min-width: 100%;
    min-height: 100%;
    /* Suppression de tout effet de flou */
    filter: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg, 
        rgba(0,0,0,0.6) 0%, 
        rgba(0,0,0,0.4) 30%,
        rgba(0,0,0,0.2) 50%, 
        rgba(0,0,0,0.4) 70%,
        rgba(0,0,0,0.6) 100%
    );
    /* Overlay central plus léger pour laisser la vidéo plus visible */
    background-image: 
        linear-gradient(45deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.6) 100%),
        radial-gradient(circle at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 70%);
    z-index: 2;
}

.welcome-container {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1200px;
    margin: -1px auto 0;
    padding: 57px 30px 0;
    /* Centrage vertical parfait */
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.welcome-content {
    /* Centrage du contenu dans le container */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.subtitle-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #FFB347;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.main-title {
    font-family: 'Lato', sans-serif;
    font-size: 6rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.8);
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.8s;
}

.main-title-accent {
    opacity: 0.72;
    text-shadow: 7px 7px 16px rgba(255, 218, 124, 1);
}

.welcome-features { display: none; }

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #ccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.feature-icon {
    font-size: 2rem;
    opacity: 0.8;
}

.watch-now-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 4;
    opacity: 0;
    animation: fadeInDown 1s ease forwards 1.4s;
}

.btn-watch {
    background: #FF6B47; /* Couleur corail */
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid #FF6B47;
}

.btn-watch:hover {
    background: transparent;
    color: rgba(248, 175, 138, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 71, 0.3);
}

/* Hero center CTA */
.hero-cta { display: flex; justify-content: center; margin-top: 24px; margin-bottom: 24px; }
.btn-hero-about {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-hero-about:hover {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Reference hero: top-right pill */
.btn-video-info {
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-video-info:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: #666;
    z-index: 4;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.7s;
    margin: 0 auto;
}

.scroll-text {
    font-size: 0.6rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    font-family: 'Lato', sans-serif;
    opacity: 0.61;
}

.scroll-arrow {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
    opacity: 0.61;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Demo Pages Mosaic Section */
.demo-pages-section {
    padding: 100px 0;
    background: #000;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
}

.demo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.demo-header {
    text-align: center;
    margin-bottom: 80px;
}

.demo-section-title {
    font-family: 'Lato', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.demo-section-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.highlight-coral {
    color: #FF6B47;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-grid .demo-item:last-child {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.demo-item {
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.demo-item:hover {
    transform: translateY(-10px);
    text-decoration: none;
    color: inherit;
}

.demo-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16/10;
}

.demo-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    position: relative;
}

.demo-item:hover .demo-image {
    transform: scale(1.05);
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.demo-item:hover .demo-overlay {
    opacity: 1;
    background: linear-gradient(
        to bottom,
        rgba(255, 107, 71, 0.2) 0%, 
        rgba(0, 0, 0, 0.6) 60%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

.demo-content {
    text-align: center;
    padding: 20px;
    transform: translateY(0);
    transition: transform 0.3s ease;
    width: 100%;
}

.demo-item:hover .demo-content {
    transform: translateY(-8px);
}

.demo-content h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.demo-item:hover .demo-content h3 {
    color: #FF6B47;
    font-size: 1.4rem;
    transform: scale(1.05);
}

.demo-content p {
    font-size: 0.85rem;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: #ccc;
    opacity: 0.9;
    transform: translateY(5px);
    transition: all 0.3s ease;
    line-height: 1.4;
}

.demo-item:hover .demo-content p {
    opacity: 1;
    transform: translateY(0);
    color: #fff;
}

/* Background images for demo thumbnails */
.main-home-bg {
    background: linear-gradient(45deg, #1a1a1a 0%, #333 50%, #1a1a1a 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="50" fill="rgba(255,255,255,0.1)">🎬</text></svg>');
}

.vertical-showcase-bg {
    background: linear-gradient(135deg, #2d1b69 0%, #11998e 100%);
}

.horizontal-scroll-bg {
    background: linear-gradient(45deg, #8b5a3c 0%, #f4a261 100%);
}

.film-festival-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.letter-express-bg {
    background: linear-gradient(45deg, #ff6b6b 0%, #feca57 100%);
}

.cypress-hill-bg {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.strikethrough-bg {
    background: linear-gradient(45deg, #2c3e50 0%, #34495e 100%);
}

.crossed-scribble-bg {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.hotel-rose-bg {
    background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
}

.lake-district-bg {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.berlin-texas-bg {
    background: linear-gradient(45deg, #fa709a 0%, #fee140 100%);
}

.underground-bg {
    background: linear-gradient(135deg, #1f1c2c 0%, #928dab 100%);
}

/* Portfolio Showcase Section - Black Background Style */
.portfolio-showcase-white {
    padding: 120px 0;
    background: #000;
}

.showcase-header {
    text-align: left;
    margin-bottom: 80px;
}

.section-subtitle-dark {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 1rem;
    display: block;
}

.showcase-title-dark {
    font-family: 'Lato', sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: rgba(248, 175, 138, 1); /* Couleur corail d'accentuation */
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.highlight-dark {
    color: rgba(248, 175, 138, 1); /* Couleur corail d'accentuation */
}

.section-description-dark {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #ccc;
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.7;
}

.btn-outline-dark {
    background: transparent;
    color: #000;
    border: 2px solid #000;
    padding: 15px 30px;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-dark:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.showcase-grid-white {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-item-white.main-project {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.showcase-item-white {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
}

.showcase-item-white:hover {
    transform: translateY(-10px);
    text-decoration: none;
}

.project-image-white {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
    min-height: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.showcase-item-white:hover .project-image-white {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: transform 0.5s ease;
}

.showcase-item-white:hover .project-image {
    transform: scale(1.08);
}

.image-placeholder-white {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    position: relative;
}

.project-overlay-white {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0.1) 0%, 
        rgba(0, 0, 0, 0.4) 50%, 
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 1;
    transition: all 0.4s ease;
    z-index: 3;
}

.showcase-item-white:hover .project-overlay-white {
    background: linear-gradient(
        to bottom, 
        rgba(255, 107, 71, 0.1) 0%, 
        rgba(255, 107, 71, 0.3) 50%, 
        rgba(0, 0, 0, 0.9) 100%
    );
}



.project-info-white {
    color: #fff;
    transform: translateY(0);
    transition: all 0.4s ease;
    width: 100%;
}

.project-info-white h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    color: #fff;
}

.showcase-item-white:hover .project-info-white h3 {
    font-size: 1.7rem;
    color: #FF6B47;
    transform: translateY(-5px);
}

.project-info-white p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0.7;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.showcase-item-white:hover .project-info-white p {
    opacity: 1;
    transform: translateY(0);
}

.project-meta-white {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    opacity: 0.7;
    transform: translateY(15px);
    transition: all 0.4s ease;
}

.showcase-item-white:hover .project-meta-white {
    opacity: 1;
    transform: translateY(0);
}

.project-meta-white span {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    transition: all 0.3s ease;
}

.showcase-item-white:hover .project-meta-white span {
    background: rgba(255, 107, 71, 0.8);
    transform: translateY(-2px);
}

/* Background placeholders pour les images */
.image-placeholder-white.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.image-placeholder-white.secondary {
    background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
}

.image-placeholder-white.tertiary {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.image-placeholder-white.quaternary {
    background: linear-gradient(45deg, #fa709a 0%, #fee140 100%);
}

.image-placeholder-white.quinary {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

/* Animation d'entrée pour les cartes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.showcase-item-white {
    animation: fadeInUp 0.6s ease forwards;
}

.showcase-item-white:nth-child(1) { animation-delay: 0.1s; }
.showcase-item-white:nth-child(2) { animation-delay: 0.2s; }
.showcase-item-white:nth-child(3) { animation-delay: 0.3s; }
.showcase-item-white:nth-child(4) { animation-delay: 0.4s; }
.showcase-item-white:nth-child(5) { animation-delay: 0.5s; }
.showcase-item-white:nth-child(6) { animation-delay: 0.6s; }

/* Améliorations responsives */
@media (max-width: 768px) {
    .showcase-grid-white {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .showcase-item-white.main-project {
        grid-column: 1;
        grid-row: auto;
    }
    
    .project-info-white h3 {
        font-size: 1.3rem;
    }
    
    .showcase-item-white:hover .project-info-white h3 {
        font-size: 1.5rem;
    }
}

/* Horizontal Scroll Showcase Section */
.horizontal-scroll-section {
    padding: 120px 0;
    background: #000;
    overflow: hidden;
}

.horizontal-header {
    text-align: center;
    margin-bottom: 80px;
}

.horizontal-title {
    font-family: 'Lato', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.horizontal-showcase {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.horizontal-showcase::-webkit-scrollbar {
    height: 8px;
}

.horizontal-showcase::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.horizontal-showcase::-webkit-scrollbar-thumb {
    background: #FF6B47;
    border-radius: 4px;
}

.showcase-track {
    display: flex;
    gap: 30px;
    padding: 0 30px;
    min-width: max-content;
}

.horizontal-item {
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.horizontal-item:hover {
    transform: translateY(-10px);
}

.horizontal-item.featured {
    width: 600px;
    height: 400px;
}

.horizontal-item:not(.featured) {
    width: 350px;
    height: 250px;
}

.horizontal-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.horizontal-item:hover .horizontal-image {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.image-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    position: relative;
}

.horizontal-item:hover .image-bg {
    transform: scale(1.05);
}

.film-overlay-horizontal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.3) 50%, 
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.horizontal-item:hover .film-overlay-horizontal {
    background: linear-gradient(
        45deg, 
        rgba(255, 107, 71, 0.8) 0%, 
        rgba(0, 0, 0, 0.4) 50%, 
        rgba(255, 179, 71, 0.8) 100%
    );
}

.film-info-horizontal {
    color: #fff;
    width: 100%;
}

.film-category {
    font-size: 0.8rem;
    color: #FFB347;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.film-info-horizontal h3 {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.film-info-horizontal h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.film-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.film-info-horizontal p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.year {
    font-size: 0.8rem;
    color: #FFB347;
    font-weight: 500;
}

.scroll-controls {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.scroll-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 71, 0.9);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-btn:hover {
    background: #FF6B47;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 71, 0.4);
}

/* Background images for horizontal items */
.featured-film {
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1)), 
                linear-gradient(45deg, #667eea 0%, #764ba2 100%);
}

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

.film-3 {
    background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
}

.film-4 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.film-5 {
    background: linear-gradient(45deg, #fa709a 0%, #fee140 100%);
}

/* Films Section - Updated */
.films-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.films-header {
    text-align: center;
    margin-bottom: 80px;
}

.films-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.film-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.film-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.film-poster {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.poster-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    position: relative;
}

.film-card:hover .poster-placeholder {
    transform: scale(1.05);
}

.film-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.film-details-card {
    color: #fff;
    width: 100%;
}

.film-details-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.film-details-card .director {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 5px;
}

.film-details-card .year {
    font-size: 0.9rem;
    color: #FFB347;
    margin-bottom: 8px;
    font-weight: 500;
}

.film-details-card .role {
    font-size: 0.9rem;
    color: rgba(248, 175, 138, 1);
    margin-bottom: 8px;
}

.film-details-card .context {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Background placeholders for film posters */
.film-placeholder-1 {
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1)), 
                linear-gradient(45deg, #667eea 0%, #764ba2 100%);
}

.film-placeholder-2 {
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1)), 
                linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
}

.film-placeholder-3 {
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1)), 
                linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
}

.film-placeholder-4 {
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1)), 
                linear-gradient(45deg, #a8edea 0%, #fed6e3 100%);
}

/* My Last Film Section - Style Coppola */
.my-last-film-section {
    padding: 120px 0;
    background: #000;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.film-presentation-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.film-text-side {
    color: #fff;
}

.film-details-text {
    max-width: 600px;
    margin: 0 auto;
}

.film-details-text p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 2rem;
}

.film-cta {
    margin-top: 3rem;
}

.btn-demo-reel {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-demo-reel:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.film-poster-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-film-poster {
    max-width: 400px;
    width: 100%;
    aspect-ratio: 3/4;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.main-film-poster:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.poster-image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: box-shadow 0.3s ease;
}

.main-film-poster:hover .poster-image {
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 107, 71, 0.3);
}

.poster-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #1a1a2e 0%,
        #16213e 25%,
        #0f3460 50%,
        #16213e 75%,
        #1a1a2e 100%
    );
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(255, 107, 71, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 179, 71, 0.1) 0%, transparent 50%);
    position: relative;
}

.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.3) 60%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
}

.film-category-poster {
    font-size: 0.8rem;
    color: #FFB347;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    align-self: flex-start;
}

.film-title-poster {
    font-family: 'Lato', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 0.9;
    text-align: center;
    margin: 20px 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.awards-section {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.award-item {
    text-align: center;
    font-size: 0.7rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.award-top, .award-bottom {
    display: block;
    line-height: 1.2;
}

.award-top {
    font-weight: 600;
    color: #FFB347;
}

.film-metadata {
    margin-top: auto;
    font-size: 0.8rem;
    color: #ccc;
    line-height: 1.4;
}

.film-metadata strong {
    color: rgba(248, 175, 138, 1);
}

.film-text-side {
    color: #fff;
}

.section-title-poster {
    font-family: 'Lato', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.film-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFB347;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.film-details-text {
    max-width: 500px;
}

.film-details-text p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.technical-specs {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #FF6B47;
}

.spec-item {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #ccc;
}

.spec-item strong {
    color: #FFB347;
    font-weight: 600;
}

.btn-film-details {
    display: inline-block;
    margin-top: 2rem;
    padding: 15px 30px;
    background: #FF6B47;
    color: #fff;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid #FF6B47;
}

.btn-film-details:hover {
    background: transparent;
    color: rgba(248, 175, 138, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 71, 0.3);
}

/* About Section - Black Background Style */
.about-section-new {
    padding: 120px 0;
    background: #000;
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.section-subtitle-about {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 1rem;
    display: block;
}

.about-title {
    font-family: 'Lato', sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: #FFB347; /* Couleur jaune d'accentuation */
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 3rem;
}

.bio-content {
    max-width: 500px;
}

.bio-intro {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.bio-main, .bio-genres {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-visual-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-photo {
    position: relative;
}

.photo-frame {
    width: 350px;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.photo-frame:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 107, 71, 0.3);
}

.profile-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cv-skills-section {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 50%, #1e2347 100%);
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cv-header {
    text-align: center;
    margin-bottom: 60px;
}

.cv-title {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.cv-block {
    margin-bottom: 40px;
}

.cv-block h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(248, 175, 138, 1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    border-bottom: 2px solid #FF6B47;
    padding-bottom: 10px;
}

.cv-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cv-year {
    flex-shrink: 0;
    font-weight: 700;
    color: #FFB347;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    min-width: 60px;
}

.cv-details strong {
    color: #fff;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

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

.skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.skill-category h5 {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.skill-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-category li {
    font-size: 0.9rem;
    color: #ccc;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 15px;
}

.skill-category li:before {
    content: '•';
    color: rgba(248, 175, 138, 1);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cv-download {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-download-cv {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0;
    transition: all 0.4s ease;
    border: 2px solid #fff;
    position: relative;
    overflow: hidden;
}

.btn-download-cv:hover {
    background: transparent;
    color: #fff;
}

.download-icon {
    font-size: 1.2rem;
}

/* Footer - Style Simple & Sobre */
.footer-coppola {
    background: #000;
    color: #fff;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content-new {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    color: #fff;
}

.footer-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.footer-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #ccc;
    font-weight: 200;
    margin-bottom: 8px;
}

.footer-location {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #999;
    font-weight: 200;
}

.footer-contact h4,
.footer-social h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 18px;
}

.contact-item-footer {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    color: #888;
    font-weight: 200;
}

.contact-item-footer a {
    font-family: 'Lato', sans-serif;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 200;
    transition: color 0.3s ease;
}

.contact-item-footer a:hover {
    color: #ccc;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    font-weight: 200;
    font-size: 0.9rem;
}

.social-link:hover {
    color: #ccc;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.footer-column h5 {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 12px;
}

.footer-column a {
    display: block;
    color: #aaa;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 200;
    margin-bottom: 6px;
    transition: all 0.3s ease;
    padding: 2px 0;
}

.footer-column a:hover {
    color: #fff;
}

.footer-back-to-top {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.back-to-top-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 30px;
    font-family: 'Lato', sans-serif;
    font-weight: 200;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-to-top-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright p {
    color: #666;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 200;
    margin: 0;
}

/* Contact Section - Coppola Style */
.contact-section-new {
    padding: 120px 0;
    background: #000;
}

.contact-content-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.section-subtitle-contact {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FFB347;
    margin-bottom: 1rem;
    display: block;
}

.contact-title {
    font-family: 'Lato', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.contact-description {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 500px;
}

.contact-details-new {
    margin-bottom: 3rem;
}

.contact-item-new {
    margin-bottom: 2rem;
}

.contact-item-new h4 {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(248, 175, 138, 1);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.contact-item-new a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-item-new a:hover {
    color: #FFB347;
}

.contact-item-new span {
    color: #ccc;
    font-size: 1.1rem;
}

.social-links-contact h4 {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(248, 175, 138, 1);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.social-icons-contact {
    display: flex;
    gap: 15px;
}

.social-icon-contact {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon-contact:hover {
    background: #FFB347;
    color: #000;
    border-color: #FFB347;
    transform: translateY(-3px);
}

.social-icon-contact.vimeo:hover {
    background: #1ab7ea;
    border-color: #1ab7ea;
    color: #fff;
}

.social-icon-contact.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: #fff;
}

.social-icon-contact.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #f09433;
    color: #fff;
}

.contact-form-new {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form-new h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    text-align: center;
}

.form-row-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-new {
    margin-bottom: 20px;
}

.form-group-new label {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFB347;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.form-group-new input,
.form-group-new select,
.form-group-new textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group-new input:focus,
.form-group-new select:focus,
.form-group-new textarea:focus {
    outline: none;
    border-color: rgba(248, 175, 138, 1);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 107, 71, 0.2);
}

.form-group-new input::placeholder,
.form-group-new textarea::placeholder {
    color: #999;
}

.form-group-new select option {
    background: #000;
    color: #fff;
}

.btn-submit-new {
    width: 100%;
    padding: 20px;
    background: #FF6B47;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #FF6B47;
    margin-top: 20px;
}

.btn-submit-new:hover {
    background: transparent;
    color: rgba(248, 175, 138, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 71, 0.3);
}

/* Animation and Interaction Enhancements */
.animate-in {
    animation: slideInUp 0.6s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth transitions for all interactive elements */
* {
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

/* Enhanced hover effects */
.showcase-item-white:hover,
.film-card:hover,
.demo-item:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .demo-grid {
        max-width: 1000px;
    }
    
    .film-presentation-container {
        gap: 60px;
    }
    
    .main-title {
        font-size: 6rem;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        margin-top: 10px;
        border-radius: 8px;
    }
    
    .demo-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .showcase-grid-white {
        grid-template-columns: 1fr;
    }
    
    .showcase-item-white.main-project {
        grid-column: 1;
        grid-row: auto;
    }
    
    .films-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .film-presentation-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cv-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main-title {
        font-size: 4rem;
    }
    
    .horizontal-title {
        font-size: 2.5rem;
    }
    
    .showcase-track {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .section-title,
    .showcase-title-dark,
    .about-title,
    .contact-title {
        font-size: 2.5rem;
    }
    
    .horizontal-title {
        font-size: 2rem;
    }
    
    .welcome-features {
        flex-direction: column;
        gap: 2rem;
    }
    
    .watch-now-btn {
        position: static;
        text-align: center;
        margin-top: 2rem;
    }
    
    .form-row-new {
        grid-template-columns: 1fr;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
    }
    
    .horizontal-item.featured {
        width: 400px;
        height: 250px;
    }
    
    .horizontal-item:not(.featured) {
        width: 250px;
        height: 180px;
    }
    
    .film-info-horizontal h3 {
        font-size: 1.8rem;
    }
    
    .cv-skills-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .section-title,
    .showcase-title-dark,
    .about-title,
    .contact-title {
        font-size: 2rem;
    }
    
    .horizontal-title {
        font-size: 1.5rem;
    }
    
    .showcase-track {
        padding: 0 15px;
    }
    
    .horizontal-item.featured {
        width: 300px;
        height: 200px;
    }
    
    .horizontal-item:not(.featured) {
        width: 200px;
        height: 150px;
    }
    
    .film-info-horizontal h3 {
        font-size: 1.4rem;
    }
    
    .cv-skills-section {
        padding: 30px 15px;
    }
    
    .contact-form-new {
        padding: 30px 20px;
    }
    
    .photo-frame {
        width: 280px;
        height: 350px;
    }
}

/* Dark mode preference support */
@media (prefers-color-scheme: dark) {
    /* Already using dark theme, no changes needed */
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .nav-link:hover {
        color: #fff;
        text-decoration: underline;
    }
    
    .btn-watch:hover,
    .btn-outline-dark:hover,
    .btn-download-cv:hover,
    .btn-submit-new:hover {
        text-decoration: underline;
    }
}

/* Portfolio Showcase Section */
.portfolio-showcase {
    padding: 120px 0;
    background: #000;
}

.showcase-header {
    margin-bottom: 80px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
}

.showcase-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    max-width: 500px;
    line-height: 1.1;
}

.showcase-title .highlight {
    color: #fff;
    font-style: italic;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    height: 600px;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.showcase-item.large {
    grid-row: span 2;
}

.project-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 1;
}

.project-image-white img.project-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 1;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1rem;
    position: relative;
    transition: transform 0.5s ease;
}

.image-placeholder.secondary {
    background: linear-gradient(135deg, #2a1a1a 0%, #3a2a2a 100%);
}

.image-placeholder.tertiary {
    background: linear-gradient(135deg, #1a2a1a 0%, #2a3a2a 100%);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 3rem 2rem 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.showcase-item:hover .project-overlay {
    transform: translateY(0);
}

.showcase-item:hover .image-placeholder {
    transform: scale(1.05);
}

.project-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.project-info p {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-meta span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Film Poster Section */
.film-poster-section {
    padding: 120px 0;
    background: #111;
}

.poster-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.poster-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.poster-image {
    position: relative;
}

.film-poster {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #2a1a1a 0%, #1a1a2a 50%, #1a2a1a 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.film-poster:hover {
    transform: scale(1.02);
}

.poster-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 3rem 2rem 2rem;
}

.film-category {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 1rem;
    display: block;
}

.film-details h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #fff;
}

.awards {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.award {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.award-text {
    font-size: 0.6rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}

.poster-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -0.01em;
}

/* Films Section */
.films-section {
    padding: 120px 0;
    background: #000;
}

.films-header {
    text-align: center;
    margin-bottom: 80px;
}

.horizontal-showcase {
    overflow-x: auto;
    padding-bottom: 20px;
}

.showcase-track {
    display: flex;
    gap: 30px;
    width: max-content;
    padding: 0 15px;
}

.film-card {
    width: 300px;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.film-card.large {
    width: 500px;
}

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

.film-image {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.film-card.large .film-image {
    height: 600px;
}

.image-placeholder.main-film {
    background: linear-gradient(135deg, #1a2a3a 0%, #2a3a4a 100%);
}

.image-placeholder.film-1 {
    background: linear-gradient(135deg, #3a1a2a 0%, #4a2a3a 100%);
}

.image-placeholder.film-2 {
    background: linear-gradient(135deg, #2a3a1a 0%, #3a4a2a 100%);
}

.image-placeholder.film-3 {
    background: linear-gradient(135deg, #3a2a1a 0%, #4a3a2a 100%);
}

.film-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.film-card:hover .film-overlay {
    transform: translateY(0);
    opacity: 1;
}

.film-year {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: block;
}

.film-info h3,
.film-info h4 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 0.5rem;
}

.film-info h3 {
    font-size: 1.8rem;
}

.film-info h4 {
    font-size: 1.3rem;
}

.film-info p {
    color: #ccc;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.film-awards {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #111;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-start;
}

.about-text .section-title {
    margin-bottom: 2rem;
}

.about-description p {
    margin-bottom: 1.5rem;
    color: #ccc;
    line-height: 1.8;
    font-size: 1rem;
}

.expertise {
    margin-top: 3rem;
}

.expertise h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #fff;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.expertise-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.expertise-item h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.expertise-item p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.5;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.profile-image {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.image-placeholder.profile {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.achievement {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.achievement .number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.achievement .label {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: #000;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-start;
}

.contact-description {
    color: #ccc;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-size: 1rem;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item h4 {
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.contact-item a,
.contact-item span {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: #fff;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #fff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #ccc;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fff;
    background: rgba(0, 0, 0, 0.5);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

/* Footer */
.footer {
    background: #111;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-info p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.footer-section a {
    display: block;
    color: #999;
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* Scrollbar Styling */
.horizontal-showcase::-webkit-scrollbar {
    height: 8px;
}

.horizontal-showcase::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.horizontal-showcase::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.horizontal-showcase::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .poster-container {
        padding: 0 20px;
    }
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 3rem 0;
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding-top: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .showcase-item {
        height: 400px;
    }

    .showcase-item.large {
        grid-row: span 1;
    }

    .poster-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .film-poster {
        height: 500px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }

    .showcase-track {
        padding: 0 20px;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .achievements {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .poster-text h2 {
        font-size: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

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

    .film-card.large {
        width: 350px;
    }

    .film-card {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container,
    .hero-container,
    .poster-container {
        padding: 0 15px;
    }

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

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

    .showcase-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .film-card,
    .film-card.large {
        width: 280px;
    }

    .showcase-track {
        padding: 0 15px;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.reel-container {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.showcase-item {
    animation: fadeInUp 0.8s ease-out both;
}

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

.film-card {
    animation: fadeInUp 0.6s ease-out both;
}

.film-card:nth-child(1) { animation-delay: 0.1s; }
.film-card:nth-child(2) { animation-delay: 0.2s; }
.film-card:nth-child(3) { animation-delay: 0.3s; }
.film-card:nth-child(4) { animation-delay: 0.4s; }

@media (max-width: 991px) {
  .welcome-content { padding-top: 44px; display: flex; flex-direction: column; margin-top: 81px; }
  .welcome-container { padding-bottom: 168px; }
  .btn-hero-about { background: rgba(110, 96, 96, 0.2); color: rgba(248, 175, 138, 1); border: 1px ridge rgba(248, 175, 138, 1); border-radius: 30px; }
  .scroll-indicator { bottom: 24px; left: 50%; top: auto; transform: translateX(-50%); }
  .nav-logo h2 { font-weight: 200; }
  .welcome-content { margin-bottom: auto; padding-top: 97px; }
  .subtitle-text { color: rgba(255, 205, 98, 1); }
  .main-title { letter-spacing: 5px; font-weight: 300; font-size: 80px; line-height: 90px; }
  .btn-watch { background-color: rgba(74, 74, 74, 0.3); border-color: rgba(155,155,155,0.5); color: rgba(155,155,155,1); }
  .welcome-features { margin-bottom: 109px; }
  .welcome-features .feature-item:first-child { gap: 28px; padding-top: 35px; }
  .welcome-features .feature-item:nth-child(2) { justify-content: flex-start; align-items: center; margin-bottom: 39px; padding-top: 50px; margin-left: auto; margin-right: auto; }
  .scroll-text { margin-right: auto; }
  .nav-menu { gap: 40px; }
}

/* ================================================
   STYLES POUR LES NOUVELLES PAGES
   ================================================ */

/* Styles communs pour toutes les pages */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
    max-width: 600px;
}

.highlight {
    color: #FF6B47;
}

/* Navigation active state */
.nav-link.active {
    color: #FF6B47;
}

/* ================================================
   SHOWREEL PAGE
   ================================================ */

.showreel-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}

.showreel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.video-container {
    position: relative;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 30px 0;
}

.video-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.video-meta {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.video-meta span {
    background: rgba(255, 107, 71, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #FF6B47;
}

.showreel-projects {
    padding: 100px 0;
    background: #111;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.project-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

/* Styles spécifiques pour showreel */
.showreel-projects .project-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    background: none;
    display: block;
    padding: 0;
}

.showreel-projects .project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    padding: 30px;
    transition: all 0.4s ease;
    z-index: 5;
}

.project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #fff;
}

.project-info p {
    color: #ccc;
    margin-bottom: 10px;
}

.project-time {
    background: #FF6B47;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #fff;
}

/* Showreel CTA Section */
.showreel-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #111 0%, #000 100%);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-content p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #FF6B47;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: 2px solid #FF6B47;
}

.btn-primary:hover {
    background: transparent;
    color: #FF6B47;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 71, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 250px;
        text-align: center;
    }
}

.technical-info {
    padding: 100px 0;
    background: #000;
}

.tech-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tech-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.tech-item h4 {
    color: #FF6B47;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.tech-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Solution simplifiée - Affichage direct au survol */
.showreel-projects .project-card {
    position: relative;
    cursor: pointer;
}

.showreel-projects .project-card .project-details {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    display: none; /* Caché par défaut */
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    z-index: 100;
    overflow-y: auto;
    color: white;
}

.showreel-projects .project-card:hover .project-details {
    display: grid; /* Afficher en grid au survol */
}

.showreel-projects .project-card:hover .project-info {
    display: none; /* Cacher les infos de base */
}

.showreel-projects .project-card .detail-section {
    margin-bottom: 15px;
}

.showreel-projects .project-card .detail-section h4 {
    color: #FF6B47;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
}

.showreel-projects .project-card .detail-section p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 5px;
}

.showreel-projects .project-card .detail-section p strong {
    color: #fff;
    font-weight: 500;
}

/* Responsive pour les détails du projet showreel */
@media (max-width: 768px) {
    .showreel-projects .projects-grid .project-card .project-details {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
    
    .showreel-projects .projects-grid .project-card .detail-section h4 {
        font-size: 0.8rem;
    }
    
    .showreel-projects .projects-grid .project-card .detail-section p {
        font-size: 0.75rem;
    }
}

/* ================================================
   PORTFOLIO PAGE
   ================================================ */

.portfolio-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    text-align: center;
}

.portfolio-filters {
    padding: 50px 0;
    background: #111;
}

.filter-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #333;
    color: #ccc;
    padding: 12px 25px;
    border-radius: 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: #FF6B47;
    color: #FF6B47;
    background: rgba(255, 107, 71, 0.1);
}

.portfolio-gallery {
    padding: 100px 0;
    background: #000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    transition: transform 0.3s ease;
}

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

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #fff;
}

.gallery-info p {
    color: #ccc;
    margin-bottom: 15px;
}

.gallery-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.gallery-meta span {
    background: rgba(255, 107, 71, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #FF6B47;
}

.view-project-btn {
    background: #FF6B47;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.view-project-btn:hover {
    background: #ff5722;
}

.photography-approach {
    padding: 100px 0;
    background: #111;
}

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

.approach-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #fff;
}

.approach-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 50px;
    line-height: 1.8;
}

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

.approach-item {
    text-align: left;
}

.approach-item h4 {
    color: #FF6B47;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.approach-item p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.portfolio-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #FF6B47 0%, #ff5722 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #fff;
    color: #FF6B47;
    border: 2px solid #fff;
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #FF6B47;
}

/* ================================================
   ABOUT PAGE
   ================================================ */

.about-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
}

.hero-image {
    position: relative;
}

.portrait-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.biography {
    padding: 100px 0;
    background: #111;
}

.bio-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.bio-text h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 30px;
}

.bio-paragraphs p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.8;
}

.bio-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 107, 71, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 71, 0.2);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #FF6B47;
    margin-bottom: 10px;
}

.stat-item p {
    color: #ccc;
    font-size: 1rem;
}

.formation {
    padding: 100px 0;
    background: #000;
}

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

.formation-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #FF6B47;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 50px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 0;
    width: 18px;
    height: 18px;
    background: #FF6B47;
    border-radius: 50%;
    border: 4px solid #000;
}

.timeline-date {
    font-size: 0.9rem;
    color: #FF6B47;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

.skills {
    padding: 100px 0;
    background: #111;
}

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

.skills-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.skill-category h3 {
    font-size: 1.5rem;
    color: #FF6B47;
    margin-bottom: 30px;
}

.skill-item {
    margin-bottom: 25px;
}

.skill-item span {
    display: block;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 500;
}

.skill-bar {
    height: 8px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF6B47 0%, #ff5722 100%);
    border-radius: 4px;
    transition: width 0.8s ease;
}

.philosophy {
    padding: 100px 0;
    background: #000;
}

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

.philosophy-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 40px;
}

.philosophy-text blockquote {
    font-size: 1.5rem;
    color: #FF6B47;
    font-style: italic;
    margin-bottom: 40px;
    line-height: 1.6;
    position: relative;
    padding: 0 40px;
}

.philosophy-text blockquote::before,
.philosophy-text blockquote::after {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 107, 71, 0.3);
    position: absolute;
    top: -20px;
}

.philosophy-text blockquote::before {
    left: 0;
}

.philosophy-text blockquote::after {
    right: 0;
}

.philosophy-text p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.8;
}

.philosophy-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.principle {
    text-align: left;
    padding: 30px;
    background: rgba(255, 107, 71, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 71, 0.1);
}

.principle h4 {
    color: #FF6B47;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.principle p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.cv-download {
    padding: 100px 0;
    background: linear-gradient(135deg, #FF6B47 0%, #ff5722 100%);
    text-align: center;
}

.cv-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.cv-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

/* ================================================
   PROJETS PAGE
   ================================================ */

.projects-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    text-align: center;
}

.featured-project {
    padding: 100px 0;
    background: #111;
}

.project-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.project-media {
    position: relative;
}

.project-media img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.project-badge {
    background: #FF6B47;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.project-info h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.project-meta {
    color: #FF6B47;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.project-description {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.project-tech h4,
.project-awards h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.tech-specs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tech-specs span {
    background: rgba(255, 107, 71, 0.2);
    padding: 6px 15px;
    border-radius: 15px;
    color: #FF6B47;
    font-size: 0.9rem;
}

.project-awards p {
    color: #ccc;
    margin-bottom: 8px;
}

.projects-grid {
    padding: 100px 0;
    background: #000;
}

.section-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: #111;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.project-card:nth-child(even) {
    grid-template-columns: 1fr 400px;
}

.project-card:nth-child(even) .project-image {
    order: 2;
}

.project-card:nth-child(even) .project-details {
    order: 1;
}

.project-image {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.view-details {
    background: #FF6B47;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.view-details:hover {
    background: #ff5722;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
}

.project-header h3 {
    font-size: 1.8rem;
    color: #fff;
}

.project-year {
    color: #FF6B47;
    font-weight: 600;
    font-size: 1.1rem;
}

.project-director {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 15px;
}

.project-synopsis {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-specs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.project-specs span {
    background: rgba(255, 107, 71, 0.2);
    padding: 6px 15px;
    border-radius: 15px;
    color: #FF6B47;
    font-size: 0.9rem;
}

.collaboration-process {
    padding: 100px 0;
    background: #111;
}

.process-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.process-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    font-size: 3rem;
    color: #FF6B47;
    font-weight: 700;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
}

.step p {
    color: #ccc;
    line-height: 1.6;
}

.projects-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #FF6B47 0%, #ff5722 100%);
    text-align: center;
}

/* ================================================
   CONTACT PAGE
   ================================================ */

.contact-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    text-align: center;
}

.contact-section {
    padding: 100px 0;
    background: #111;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
}

.contact-form-container h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
}

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: #222;
    border: 2px solid #333;
    border-radius: 8px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B47;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.contact-text h4 {
    color: #FF6B47;
    margin-bottom: 5px;
}

.contact-text a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #FF6B47;
}

.contact-text p {
    color: #ccc;
    line-height: 1.6;
}

.social-links {
    margin-bottom: 40px;
}

.social-links h4 {
    color: #fff;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    background: #333;
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FF6B47;
    transform: translateY(-2px);
}

.faq-section h4 {
    color: #fff;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.faq-item h5 {
    color: #FF6B47;
    margin-bottom: 8px;
}

.faq-item p {
    color: #ccc;
    line-height: 1.6;
}

.collaboration-types {
    padding: 100px 0;
    background: #000;
}

.collaboration-types h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
}

.collab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.collab-item {
    background: #111;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.collab-item h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.collab-item p {
    color: #ccc;
    line-height: 1.6;
}

.success-message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.success-content {
    background: #111;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    border: 2px solid #FF6B47;
}

.success-content h3 {
    color: #FF6B47;
    margin-bottom: 15px;
}

.success-content p {
    color: #ccc;
    margin-bottom: 25px;
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
    background: #000;
    padding: 60px 0 30px;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.footer-logo p {
    color: #ccc;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    align-items: center;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF6B47;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .showreel-content,
    .hero-content,
    .project-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .projects-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .project-card {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .project-card .project-image {
        order: 1 !important;
    }
    
    .project-card .project-details {
        order: 2 !important;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .filter-nav {
        gap: 15px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .bio-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-item {
        padding-left: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title,
    .approach-content h2,
    .skills-content h2,
    .philosophy-content h2 {
        font-size: 2.5rem;
    }
    
    .gallery-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .project-card {
        padding: 30px 20px;
    }
    
    .collab-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Showreel Main Section - Single Column Layout */
.showreel-main {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: #000;
    display: flex;
    align-items: center;
}

.showreel-column {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.showreel-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.showreel-title {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 4rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.showreel-subtitle {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 2.5rem;
    color: #FF6B47;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.showreel-description {
    max-width: 700px;
    margin: 0 auto;
}

.showreel-description p {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #ccc;
}

.showreel-video {
    width: 100%;
}

.showreel-video .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.showreel-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.showreel-cta .btn-details {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    padding: 20px 40px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.showreel-cta .btn-details:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Responsive Styles for Showreel */
@media (max-width: 768px) {
    .showreel-main {
        padding: 100px 0 60px;
    }
    
    .showreel-column {
        gap: 40px;
        padding: 0 20px;
    }
    
    .showreel-title {
        font-size: 3rem;
    }
    
    .showreel-subtitle {
        font-size: 2rem;
    }
    
    .showreel-description p {
        font-size: 1.1rem;
    }
    
    .showreel-cta .btn-details {
        font-size: 1rem;
        padding: 18px 35px;
    }
}

@media (max-width: 480px) {
    .showreel-column {
        gap: 30px;
        padding: 0 15px;
    }
    
    .showreel-title {
        font-size: 2.5rem;
    }
    
    .showreel-subtitle {
        font-size: 1.8rem;
    }
    
    .showreel-description p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .showreel-cta .btn-details {
        font-size: 0.9rem;
        padding: 16px 30px;
    }
}

/* Portfolio Single Column Layout */
.hero-content-single {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.projects-showcase {
    padding: 80px 0;
    background: #000;
}

.project-section {
    margin-bottom: 100px; /* Augmenté de 80px à 100px */
    padding: 0 20px; /* Ajout de padding latéral */
}

.project-section:last-child {
    margin-bottom: 0;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.project-title {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 2.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.project-link {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #FF6B47;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: #fff;
    transform: translateX(5px);
}

.project-gallery {
    width: 100%;
    max-width: 900px; /* Réduit de 1200px à 900px */
    margin: 0 auto;
    padding: 0 20px; /* Ajout de padding pour aérer */
}

.gallery-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px; /* Bordures plus arrondies */
    background: #111;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3); /* Ombre pour plus de profondeur */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.gallery-track {
    display: flex;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-slide {
    min-width: 100%;
    position: relative;
    padding: 0 12px; /* espace latéral entre les images */
}

.gallery-slide img {
    width: 100%;
    height: 450px; /* Réduit de 600px à 450px */
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
    transform: scale(0.95);
    opacity: 0.7;
    filter: brightness(0.8);
}

/* Slide active mise en avant */
.gallery-slide.active img {
    transform: scale(1);
    opacity: 1;
    filter: none;
}

/* Zoom doux au survol sur l'image centrale */
.gallery-container:hover .gallery-slide.active img {
    transform: scale(1.05);
}

.gallery-container:hover .gallery-slide img {
    transform: scale(1.05);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.gallery-container:hover .gallery-nav {
    opacity: 1;
}

.gallery-btn {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-btn:hover {
    background: rgba(255, 107, 71, 0.8);
    transform: scale(1.1);
}

.gallery-btn:active {
    transform: scale(0.95);
}

.gallery-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #FF6B47;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Auto-scroll animation */
.gallery-track {
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Responsive Styles for Portfolio */
@media (max-width: 768px) {
    .projects-showcase {
        padding: 60px 0;
    }
    
    .project-section {
        margin-bottom: 80px;
    }
    
    .project-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .project-title {
        font-size: 2rem;
    }
    
    .project-gallery {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .gallery-slide img {
        height: 300px; /* Réduit pour mobile */
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .gallery-nav {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .project-section {
        margin-bottom: 60px;
    }
    
    .project-title {
        font-size: 1.8rem;
    }
    
    .project-link {
        font-size: 0.9rem;
    }
    
    .project-gallery {
        padding: 0 10px;
    }
    
    .gallery-slide img {
        height: 250px; /* Encore plus petit pour très petits écrans */
    }
    
    .gallery-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Single Column Layout for All Pages */
.hero-content-single {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.project-content-single {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.project-content-single .project-media {
    width: 100%;
    margin: 0 auto;
}

.project-content-single .project-info {
    width: 100%;
    text-align: left;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content-single {
        padding: 0 20px;
    }
    
    .project-content-single {
        gap: 30px;
        padding: 0 20px;
    }
    
    .project-content-single .project-info {
        text-align: center;
    }
}

/* ========================================
   NOUVEAU SLIDER BASÉ SUR L'EXEMPLE FOURNI
   ======================================== */
   
.slider-container {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    background: #111;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.slider-wrapper {
    display: flex;
    align-items: center;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex-shrink: 0;
    width: 30%; /* Largeur des slides non actives */
    position: relative;
    opacity: 0.6; /* Transparence pour les slides non actives */
    transform: scale(0.85); /* Taille réduite pour les slides non actives */
    transition: all 0.5s ease-in-out;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.slide.active {
    width: 60%; /* Largeur de la slide active */
    opacity: 1; /* Pleine opacité */
    transform: scale(1); /* Taille normale */
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(255, 107, 71, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Responsive pour le nouveau slider */
@media (max-width: 768px) {
    .slider-container {
        width: 95%;
    }
    
    .slide img {
        height: 300px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .slide img {
        height: 250px;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}
