/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --primary-color: #8c3b2b; /* Rouge brique foncé */
    --accent-color: #dcbfa6;  /* Beige/rosé */
    --text-color: #ffffff;
    --font-title: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--accent-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
header {
    background-color: var(--primary-color);
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo-circle {
    width: 50px;
    height: 50px;
    border: 2px solid #a65e52;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: #d4af37;
}

.identity h1 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    letter-spacing: 0.3em;
    color: #ffe4c4;
    margin-bottom: 0.2rem;
}

.identity p {
    font-size: 0.75rem;
    color: #ddd;
    letter-spacing: 0.05em;
}

.cv-btn {
    border: 1px solid white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.cv-btn:hover {
    background: rgba(255,255,255,0.1);
}

.star-icon {
    font-size: 1.5rem;
    color: #fff;
    animation: spin 10s linear infinite;
}

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

/* --- NAVIGATION MENU --- */
nav {
    position: relative;
    z-index: 10;
}

.main-menu {
    display: flex;
    list-style: none;
    background-color: rgba(140, 59, 43, 0.9);
    border: 2px solid #dcbfa6;
    border-radius: 8px;
    padding: 0;
    margin: 0;
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a {
    display: block;
    padding: 1rem 1.5rem;
    color: #fff;
    font-size: 1rem;
    text-align: center;
    border-right: 1px solid rgba(220, 191, 166, 0.3);
    transition: background 0.3s;
}

.main-menu > li:last-child > a {
    border-right: none;
}

.main-menu > li > a:hover,
.main-menu > li > a.active {
    background-color: #dcbfa6;
    color: #8c3b2b;
}

/* --- DROPDOWN --- */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #8c3b2b;
    border: 2px solid #dcbfa6;
    border-top: none;
    border-radius: 0 0 8px 8px;
    list-style: none;
    min-width: 200px;
    padding: 0;
    margin: 0;
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    display: block;
}

.dropdown li a {
    display: block;
    padding: 0.8rem 1rem;
    color: #fff;
    border-bottom: 1px solid rgba(220, 191, 166, 0.2);
    font-size: 0.9rem;
    text-align: left;
    transition: background 0.2s;
}

.dropdown li:last-child a {
    border-bottom: none;
}

.dropdown li a:hover {
    background-color: rgba(220, 191, 166, 0.2);
    color: #dcbfa6;
}

/* =========================================
   3. FOOTER
   ========================================= */
footer {
    background-color: var(--primary-color);
    padding: 2rem 3rem 1rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.3s;
}
.social-links a:hover { opacity: 1; text-decoration: underline; }

.contact-info {
    display: flex;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.back-to-top {
    border: 1px solid white;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: background 0.3s;
}
.back-to-top:hover { background: rgba(255,255,255,0.1); }

.copyright {
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    margin-top: 1rem;
}

/* =========================================
   4. HOMEPAGE (HERO)
   ========================================= */
.hero {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #c48b78;
    background-image: url('back.avif'); 
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-blend-mode: multiply; 
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(140, 59, 43, 0.1);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero h2 {
    font-family: var(--font-title);
    font-size: 3.5rem;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.star-left, .star-right {
    position: absolute;
    color: #fff;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(255,255,255,0.8);
}
.star-left { top: -20px; left: -40px; font-size: 2.5rem;}
.star-right { bottom: 10px; right: -40px; }

.cta-button {
    background-color: #8c3b2b;
    color: white;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    border-radius: 4px;
    letter-spacing: 0.1em;
    font-family: var(--font-body);
    transition: transform 0.2s, background 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.cta-button:hover {
    background-color: #6e2e21;
    transform: translateY(-2px);
}

/* =========================================
   5. GALLERY & COMMON ELEMENTS
   ========================================= */
.gallery-page {
    background-color: #8c3b2b;
    padding-bottom: 4rem;
}

/* Sous-menu catégorie */
.category-nav-container {
    background-color: #8c3b2b;
    border-bottom: 1px solid rgba(220, 191, 166, 0.2);
    padding: 0;
    margin-top: -2px;
}

.category-nav {
    display: flex;
    justify-content: center;
    list-style: none;
    background-color: rgba(100, 40, 30, 0.6);
    border: 1px solid rgba(220, 191, 166, 0.3);
    max-width: 900px;
    margin: 0 auto;
    border-radius: 0 0 10px 10px;
}

.category-nav li a {
    display: block;
    padding: 1rem 1.5rem;
    color: #fff;
    font-size: 1rem;
    border-right: 1px solid rgba(220, 191, 166, 0.2);
    transition: all 0.3s ease;
}
.category-nav li:last-child a { border-right: none; }

.category-nav li a.current,
.category-nav li a:hover {
    background-color: rgba(220, 191, 166, 0.2);
    color: #dcbfa6;
    font-weight: bold;
}

/* Demoreel Section */
.demoreel-section {
    text-align: center;
    padding: 3rem 1rem;
    color: #fff;
}
.demoreel-section h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: #dcbfa6;
    margin-bottom: 2rem;
}
.video-wrapper {
    max-width: 800px;
    height: 450px;
    margin: 0 auto 1rem;
    border: 3px solid #dcbfa6;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}
.credits {
    font-size: 0.7rem;
    opacity: 0.8;
    text-transform: uppercase;
}

/* Masonry Grid (Homepage Gallery) */
.masonry-grid {
    column-count: 4; 
    column-gap: 0;
    width: 100%;
    padding: 0;
}
.gallery-item {
    break-inside: avoid; 
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
}
.gallery-item img, .gallery-item video {
    width: 100%;
    display: block;
    height: auto;
    transition: transform 0.3s ease;
}
.gallery-item:hover img, .gallery-item:hover video {
    transform: scale(1.02);
    cursor: pointer;
}

/* Video Grid (3 colonnes) */
.video-grid-section {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 15px;
}
.video-tile {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background-color: #000;
    overflow: hidden;
    border: 2px solid #dcbfa6;
    transition: transform 0.3s ease;
}
.video-tile video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
}
.video-tile:hover {
    transform: scale(1.02);
    z-index: 5;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* --- PAGE SHORTS (Showcase) --- */
.film-showcase {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1300px;
    margin: 4rem auto;
    padding: 0 2rem;
}
.film-video-wrapper { flex: 1.2; width: 100%; }
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
    border: 2px solid #dcbfa6;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.video-container iframe, .video-container video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
}
.film-info {
    flex: 1;
    color: #fff;
    border-left: 2px solid #dcbfa6; 
    padding-left: 2rem; 
}
.film-info h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: #dcbfa6;
    margin-bottom: 2rem;
    line-height: 1.2;
}
.film-info h2 i { font-size: 2rem; margin-right: 0.5rem; vertical-align: middle; }
.film-info p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* --- PAGE ILLUSTRATION (Grid + Modal) --- */
.illustration-grid-section {
    padding: 3rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}
.illustration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.illu-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}
.illu-item:hover { transform: translateY(-5px); }
.img-container {
    position: relative;
    overflow: hidden;
    background-color: #000;
}
.img-container img {
    width: 100%;
    display: block;
    transition: filter 0.3s;
}
.illu-item:hover .img-container img { filter: brightness(0.7); }
.illu-info { text-align: center; padding-top: 1rem; }
.illu-info h3 {
    font-size: 0.9rem;
    color: #dcbfa6;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.illu-info p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- LIGHTBOX MODAL --- */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(140, 59, 43, 0.98);
    justify-content: center; align-items: center;
    padding: 2rem;
}
.modal-content {
    display: flex;
    max-width: 1200px;
    width: 90%;
    height: 80vh;
    background: transparent;
    gap: 3rem;
}
.modal-left {
    flex: 1.5;
    display: flex;
    align-items: center; justify-content: center;
    background-color: #fff;
    padding: 1rem; 
}
.modal-left img { max-width: 100%; max-height: 100%; object-fit: contain; }
.modal-right {
    flex: 1;
    display: flex;
    flex-direction: column; justify-content: center;
    color: #fff; text-align: justify;
}
.modal-right h2 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: #dcbfa6;
    margin-bottom: 2rem;
    text-transform: uppercase;
}
.modal-right p {
    font-family: var(--font-title);
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.05em;
}
.close-btn {
    position: absolute;
    top: 20px; right: 40px;
    color: #fff; font-size: 40px; font-weight: 300;
    cursor: pointer; z-index: 1001;
}
.close-btn:hover { color: #dcbfa6; }
.prev, .next {
    cursor: pointer;
    position: absolute; top: 50%;
    width: auto; padding: 16px;
    margin-top: -50px;
    color: white; font-weight: bold; font-size: 20px;
    transition: 0.3s ease; user-select: none;
}
.next { right: 20px; }
.prev { left: 20px; }
.prev:hover, .next:hover { color: #dcbfa6; }

/* =========================================
   6. TRADITIONAL & STORYTELLING
   ========================================= */
/* Top Carousel (Traditional) */
.top-carousel-section {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 4rem;
    display: flex;
    justify-content: center; align-items: center;
}
.carousel-container { width: 100%; min-height: 400px; }
.carousel-slide {
    display: none;
    background-color: #fff;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: fadeEffect 0.5s;
}
.slide-content { display: flex; gap: 2rem; align-items: flex-start; }
.slide-img { flex: 1; }
.slide-img img { width: 100%; height: auto; border: 1px solid #ddd; display: block; }
.slide-text {
    flex: 1.5; color: #333; text-align: justify;
}
.slide-text h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    margin-bottom: 1.5rem; color: #000;
}
.slide-text p { font-size: 0.95rem; line-height: 1.6; color: #444; }
.carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background-color: #8c3b2b; color: #fff;
    border: 2px solid #fff;
    width: 45px; height: 45px; border-radius: 50%;
    font-size: 1.2rem; cursor: pointer;
    transition: all 0.3s; z-index: 10;
    display: flex; justify-content: center; align-items: center;
}
.carousel-btn:hover { background-color: #fff; color: #8c3b2b; }
.prev-btn { left: 0; }
.next-btn { right: 0; }

@keyframes fadeEffect { from {opacity: 0.4;} to {opacity: 1;} }

/* Storytelling */
.storytelling-page {
    display: flex; flex-direction: column;
    justify-content: center; min-height: 80vh;
}
.story-title {
    text-align: center; color: #dcbfa6;
    margin-bottom: 2rem; font-size: 1.5rem;
    font-family: var(--font-title);
}
.storyboard-wrapper {
    position: relative;
    max-width: 95%; margin: 0 auto;
    display: flex; align-items: center;
    padding: 0 50px;
}
.storyboard-track {
    display: flex; gap: 20px;
    overflow-x: auto; scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
}
.storyboard-track::-webkit-scrollbar { display: none; }
.story-item {
    min-width: 250px; width: 20vw; max-width: 350px;
    flex-shrink: 0; cursor: pointer;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.story-item:hover { transform: scale(1.05); border-color: #dcbfa6; }
.story-item img { width: 100%; height: auto; display: block; background: #fff; }

.nav-arrow {
    background-color: #8c3b2b; color: #fff;
    width: 50px; height: 50px; border-radius: 50%;
    border: 2px solid #dcbfa6;
    font-size: 1.5rem; cursor: pointer;
    position: absolute; z-index: 10;
    transition: all 0.3s ease;
    display: flex; align-items: center; justify-content: center;
}
.nav-arrow:hover { background-color: #dcbfa6; color: #8c3b2b; transform: scale(1.1); }
.prev-story { left: 0; padding-right: 2px; }
.next-story { right: 0; }

/* =========================================
   7. ABOUT ME
   ========================================= */
.about-page {
    background-color: #8c3b2b;
    padding: 3rem 0;
    overflow-x: hidden;
}
.intro-section {
    display: flex; justify-content: center; align-items: center;
    gap: 4rem; max-width: 1200px;
    margin: 0 auto 4rem; padding: 0 2rem;
}
.bio-box {
    background-color: #a65e52;
    border: 3px solid #dcbfa6; border-radius: 30px;
    padding: 2.5rem; color: #fff;
    max-width: 500px; position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.bio-box h2 {
    font-family: var(--font-body);
    font-size: 2.5rem; margin-bottom: 1rem; color: #ffe4c4;
}
.bio-box .subtitle { font-size: 1.2rem; margin-bottom: 1.5rem; font-weight: 600; }
.bio-box p { line-height: 1.6; font-size: 1rem; }

.bio-container { position: relative; }
.triangle-pointer {
    position: absolute; right: -15px; top: 50%; transform: translateY(-50%);
    width: 0; height: 0;
    border-top: 15px solid transparent; border-bottom: 15px solid transparent;
    border-left: 20px solid #dcbfa6;
}
.portrait-container { position: relative; }
.portrait-circle {
    width: 350px; height: 350px; border-radius: 50%;
    border: 5px solid #dcbfa6; overflow: hidden;
    background-color: #dcbfa6; position: relative;
}
.portrait-circle img { width: 100%; height: 100%; object-fit: cover; }
.star-deco { position: absolute; color: #dcbfa6; font-size: 1.5rem; }
.s1 { top: 0; right: 20px; font-size: 2rem; }
.s2 { bottom: 20px; left: 0; }
.s3 { top: 50%; right: -20px; font-size: 1rem; }
.section-separator {
    text-align: center; color: #dcbfa6; font-size: 2rem; margin: 3rem 0;
}
.section-title {
    text-align: center; font-family: var(--font-body);
    font-size: 3rem; color: #dcbfa6;
    margin-bottom: 3rem; opacity: 0.8;
}

/* Moodboard */
.moodboard-section { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }
.moodboard-content { display: flex; gap: 3rem; align-items: flex-start; }
.moodboard-grid {
    flex: 1.2; display: grid;
    grid-template-columns: repeat(4, 1fr); grid-auto-rows: 100px; gap: 5px;
}
.moodboard-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.tall { grid-row: span 2; }
.wide { grid-column: span 2; }
.moodboard-text { flex: 1; color: #fff; text-align: left; font-size: 0.95rem; line-height: 1.8; }
.moodboard-text p { margin-bottom: 1rem; }

/* Artists */
.artist-carousel-wrapper { position: relative; padding: 0 50px; max-width: 1400px; margin: 0 auto; }
.artist-track {
    display: flex; gap: 30px; overflow-x: auto;
    padding: 20px 0; scroll-behavior: smooth; scrollbar-width: none;
}
.artist-track::-webkit-scrollbar { display: none; }
.artist-bubble {
    width: 200px; height: 200px; min-width: 200px;
    border-radius: 50%; overflow: hidden; cursor: pointer;
    border: 3px solid transparent; transition: all 0.3s ease;
    filter: grayscale(100%) brightness(0.8);
}
.artist-bubble:hover { filter: grayscale(0%) brightness(1); transform: scale(1.1); border-color: #dcbfa6; }
.artist-bubble img { width: 100%; height: 100%; object-fit: cover; }

.artist-modal {
    display: none; position: fixed; z-index: 2000;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.85);
    justify-content: center; align-items: center;
}
.artist-modal-content { text-align: center; color: #fff; animation: zoomIn 0.3s; }
.artist-modal-content img {
    width: 300px; height: 300px; object-fit: cover;
    border: 5px solid #fff; margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.artist-modal-content h3 { font-size: 1.5rem; margin-bottom: 0.5rem; font-weight: normal; }
.artist-modal-content p { font-size: 0.9rem; color: #ccc; font-style: italic; }
.close-artist {
    position: absolute; top: 30px; right: 50px;
    color: #fff; font-size: 40px; cursor: pointer;
}
.prev-modal-nav, .next-modal-nav {
    position: absolute; top: 50%; color: #fff;
    font-size: 2rem; cursor: pointer; padding: 20px; user-select: none;
}
.prev-modal-nav { left: 50px; }
.next-modal-nav { right: 50px; }
@keyframes zoomIn { from {transform: scale(0.8); opacity: 0;} to {transform: scale(1); opacity: 1;} }

/* =========================================
   8. CONTACT PAGE
   ========================================= */
.contact-page {
    background-color: #8c3b2b; min-height: 80vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center; padding: 2rem;
}
.contact-header-text { text-align: center; margin-bottom: 3rem; color: #dcbfa6; }
.contact-header-text h2 {
    font-family: var(--font-title); font-size: 3rem; letter-spacing: 0.1em;
    margin-bottom: 0.5rem; display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.contact-header-text h2 i { font-size: 2.5rem; }
.contact-header-text p {
    font-family: var(--font-body); font-size: 1.2rem;
    color: #fff; letter-spacing: 0.05em; font-weight: 500;
}
.contact-central-wrapper {
    background-color: #6e2e21; padding: 3rem 4rem;
    border-radius: 20px; display: flex; align-items: center;
    gap: 2rem; position: relative; max-width: 900px; width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); border: 4px solid #5a241a;
}
.contact-card {
    flex: 1; background-color: #eee8aa; border-radius: 40px;
    padding: 3rem 1rem; text-align: center;
    border: 3px solid #6e2e21; transition: transform 0.3s ease;
    min-height: 250px; display: flex; flex-direction: column;
    justify-content: center; align-items: center; gap: 1.5rem;
}
.contact-card:hover { transform: translateY(-5px); }
.icon-box { font-size: 3rem; color: #6e2e21; }
.contact-card a, .contact-card span {
    font-family: var(--font-body); font-size: 1.1rem;
    font-weight: bold; color: #6e2e21; letter-spacing: 0.05em;
}
.contact-card a { text-decoration: underline; text-decoration-thickness: 2px; }
.center-star { font-size: 2rem; color: #dcbfa6; }

/* =========================================
   9. MEDIA QUERIES (RESPONSIVE)
   ========================================= */

/* --- TABLETTE ET PETITS ECRANS (Max 900px) --- */
@media (max-width: 900px) {
    /* Header (Nav) */
    header {
        flex-direction: column; gap: 1rem; padding: 1rem; text-align: center;
    }
    .header-left, .header-right { flex-direction: column; width: 100%; }
    .identity h1 { font-size: 1.4rem; letter-spacing: 0.1em; }

    /* Grilles */
    .masonry-grid { column-count: 2; }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .illustration-grid { grid-template-columns: repeat(2, 1fr); }

    /* Sous-menu */
    .category-nav { flex-wrap: wrap; }
    .category-nav li a { font-size: 0.8rem; padding: 0.8rem 1rem; }

    /* Shorts (Film Showcase) */
    .film-showcase { flex-direction: column; gap: 2rem; margin: 2rem auto; }
    .film-info {
        border-left: none; padding-left: 0;
        border-top: 1px solid rgba(220, 191, 166, 0.3); padding-top: 2rem;
    }
    .film-info h2 { font-size: 1.8rem; }

    /* About Me */
    .intro-section { flex-direction: column-reverse; gap: 2rem; text-align: center; }
    .bio-box { text-align: center; }
    .triangle-pointer { display: none; }
    .moodboard-content { flex-direction: column-reverse; }
    .portrait-circle { width: 250px; height: 250px; }
    .artist-bubble { width: 150px; height: 150px; min-width: 150px; }

    /* Traditional Carousel */
    .slide-content { flex-direction: column; }
    .top-carousel-section { padding: 0 3rem; }
    .slide-text h3 { margin-top: 1rem; font-size: 1.4rem; }

    /* Contact */
    .contact-central-wrapper { flex-direction: column; padding: 2rem; gap: 2rem; }
    .center-star { transform: rotate(90deg); margin: -1rem 0; }
    .contact-card { width: 100%; min-height: auto; padding: 2rem 1rem; }
    .contact-header-text h2 { font-size: 2.2rem; }
    
    /* Footer */
    .footer-container { flex-direction: column; gap: 1.5rem; }
    .contact-info { flex-direction: column; gap: 0.5rem; text-align: center; }
    
    /* Storytelling */
    .story-item { min-width: 200px; width: 70vw; }
    .storyboard-wrapper { padding: 0 10px; }
    .nav-arrow { display: none; }

    /* Modal */
    .modal-content { flex-direction: column; height: auto; overflow-y: auto; }
    .modal-left, .modal-right { flex: auto; width: 100%; }
}

/* --- MOBILE (Max 600px) --- */
@media (max-width: 600px) {
    .masonry-grid { column-count: 1; }
    .video-grid { grid-template-columns: 1fr; }
    .illustration-grid { grid-template-columns: 1fr; }
    
    .demoreel-section h2 { font-size: 1.8rem; }
    .video-wrapper { height: 200px; }
    .hero h2 { font-size: 2rem; }
}