/* --- PROJECT SPECIFIC CSS --- */

/* Import des polices du thème */
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,300i,400i");
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');

/* Style de base & Arrière-plan */
html, body {
    margin: 0;
    padding: 0;
 
    background-color: #f9f7f2;
    /* On reprend exactement tes images de fond */
    
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    color: #2d2d2d;
    overflow-x: hidden;
}

/* Conteneur principal vertical */
.project-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Titre principal (Cormorant) */
h1, h2 {
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
    margin: 1rem 0;
}

h1 {
    font-size: 3.5rem;
    color: #2d2d2d;
    }

h2 {
    font-size: 2rem;
    color: #d67d60;
    
}

/* Texte descriptif */
.description {
    font-size: 1rem;
    line-height: 1.5;
    padding-bottom: 2rem;
    text-align: left;
    width: 50%;
    display: block;
    margin: 0 auto;
}

.description a, .description a:visited {
    text-decoration: none;
    color: #4a5d4e; 
    font-weight: 700;
   
}

.description a:hover, .descritption a:active {
    color: #e9a040; 
}

/* Galerie d'images verticale */
.gallery-vertical img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 30px;
    
   
}

/* Bouton Fermer (Croix) */
.close-button {
    position: fixed;
    top: 30px;
    right: 30px;
    font-size: 2.5rem;
    text-decoration: none;
    color: #4a5d4e;
    z-index: 100;
    transition: opacity 0.2s;
}
.close-button:hover { opacity: 0.6; }

/* Navigation bas de page */
.project-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.project-nav a {
    text-decoration: none;
    color: #4a5d4e; 
    font-weight: 700;
}

.project-nav a:hover, .project-nav a:active {
    color: #e9a040; 
}


/* Video */

.video-content { 
  position: relative; 
  overflow: hidden; 
  padding-top: 56.25%; 
}

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