/*DA global*/
:root 
{
    --col-bg:        #f5f5f5;
    --col-surface:   #ffffff;
    --col-border:    #e0e0e0;
    --col-text:      #1a1a1a;
    --col-muted:     #888888;
    --col-accent:    #1a1a1a;   /* à remplacer par votre couleur studio */

    --font-display:  'Syne', sans-serif;
    --font-body:     'Inter', sans-serif;

    --radius:        6px;
    --max-w:         1100px;
      --nav-h:         60px;
}

/* reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body 
{
    background: var(--col-bg);
    color: var(--col-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
}

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

/* NAVIGATION */
nav 
{
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--col-surface);
    border-bottom: 1px solid var(--col-border);
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.nav-logo 
{
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

/* Menu links - caches sur mobile */
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a 
{
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--col-muted);
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--col-text); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span 
{
    display: block;
    width: 24px;
    height: 2px;
    background: var(--col-text);
    transition: all 0.3s;
}

/* Menu mobile overlay */
.mobile-menu {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--col-surface);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    list-style: none;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
}

 /* ==============================
  HERO — logo / nom studio
============================== */
.hero {
    background: var(--col-surface);
    border-bottom: 1px solid var(--col-border);
    padding: 5rem 2rem 4rem;
    text-align: center;
 }

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero p {
    margin-top: 1rem;
    color: var(--col-muted);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* reseaux socieux */
.socials-bar {
    background: var(--col-surface);
    border-bottom: 1px solid var(--col-border);
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.socials-bar a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--col-muted);
    transition: color 0.2s;
}

.socials-bar a:hover { color: var(--col-text); }

.socials-bar i { font-size: 1.3rem; }

/* Production */
.productions {
    max-width: var(--max-w);
    margin: 4rem auto;
    padding: 0 2rem;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--col-muted);
    margin-bottom: 1.5rem;
    text-align: center;
}


/* ==============================
   PRODUCTIONS - BRIQUES
============================== */

.brick-outer {
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}

.brick-row {
  display: flex;
  margin-bottom: 4px;
  gap: 0px;
}

.brick-row.row-a {
  margin-left: -20%;
  margin-right: -5%;
}

.brick-row.row-b {
  margin-left: -5%;
  margin-right: -20%;
}

.brick-row.row-c {
  margin-left: -30%;
  margin-right: -10%;
}

.brick {
    flex: 1;
    min-width: 0;
    height: 220px; /* à ajuster selon tes images */
    clip-path: polygon(7% 0%, 100% 0%, 93% 100%, 0% 100%);
    overflow: hidden;
    background: #e0e0e0; /* placeholder — disparaît quand tu mets tes images */
    margin-right: -1%;
}

.brick:last-child {
  margin-right: 0;
}


.brick img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Quand vous ajouterez vos images : */
.grid-item img { width: 100%; height: 100%; object-fit: cover; } 


.gallery-btn {
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
    padding: 0.75rem 2rem;
    border: 1px solid var(--col-text);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
}

    .gallery-btn:hover {
      background: var(--col-text);
      color: var(--col-surface);
    }



/* Ma Team */

.team .section-label {
  text-align: center;
}
.team {
  max-width: var(--max-w);
  margin: 4rem auto;
  padding: 0 2rem;
}

.team-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 1.5rem;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 130px;
}

.team-avatar {
  display: block;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  background: #e0e0e0;
  transition: opacity 0.2s;
}

.team-avatar:hover { opacity: 0.75; }

.team-avatar img {
  width: 110%;
  height: 110%;
  object-fit: cover;
}

.team-name {
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

.team-role {
  font-size: 0.75rem;
  color: var(--col-muted);
  text-align: center;
  line-height: 1.4;
}






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




.linkedin-link {
  display: flex;
  justify-content: center;
  text-align: center;
}
 
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.contact-info {
  align-items: center;
  text-align: center;
}



.contact {
    border-top: 1px solid var(--col-border);
    background: var(--col-surface);
    padding: 8rem 2rem;
    text-align: center;
}

.contact h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--col-muted);
    transition: color 0.2s;
    text-align: center;
}

.contact-info a:hover { color: var(--col-text); }
.contact-info i { font-size: 1rem; width: 1.2rem; }

.linkedin-link {
    display: inline-flex;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--col-border);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: border-color 0.2s, color 0.2s;
}

.linkedin-link:hover {
    border-color: #0a66c2;
    color: #0a66c2;
}

/* Formulaire */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--col-border);
    background: var(--col-bg);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--col-text);
    border-radius: var(--radius);
    resize: vertical;
    transition: border-color 0.2s;
}
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--col-text);
}

.contact-form textarea { min-height: 120px; }

.contact-form button {
    align-self: flex-start;
    padding: 0.75rem 2rem;
    background: var(--col-text);
    color: var(--col-surface);
    border: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
}

.contact-form button:hover { opacity: 0.7; }

/* ==============================
   FOOTER
============================== */
footer {
    border-top: 1px solid var(--col-border);
    padding: 1.5rem 2rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--col-muted);
}

/* ==============================
   RESPONSIVE
 ============================== */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    }

    .grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}