@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400&display=swap');


html { scroll-behavior: smooth; }
body {
    margin: 0; padding: 0;
    background: linear-gradient(to bottom, #0a122a, #020617);
    color: #e2e8f0;


    font-family: "Lato", sans-serif;
    overflow-x: hidden;
    cursor: none;
}


#intro-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #0a122a; z-index: 10000;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: transform 1.2s cubic-bezier(0.7, 0, 0.3, 1);
}
.intro-logo {
    font-family: "Playfair Display", serif; font-size: 30px; color: #ffd700;
    margin-bottom: 20px; opacity: 0; animation: fadeIn 0.5s forwards 0.3s;
    letter-spacing: 2px;
}
@keyframes fadeIn { to { opacity: 1; } }


header {
    background: rgba(10, 18, 42, 0.85);
    backdrop-filter: blur(12px);
    height: 80px; width: 100%;
    position: fixed; top: 0; z-index: 100;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}
header nav { position: absolute; right: 40px; top: 50%; transform: translateY(-50%); }
header nav ul { list-style: none; margin: 0; padding: 0; }
header nav ul li { display: inline-block; margin-left: 30px; }
header nav ul li a {
    text-decoration: none; color: #b3cde0;
    font-family: 'Playfair Display', serif; font-weight: bold; font-size: 15px;
    text-transform: uppercase; letter-spacing: 1px;
    position: relative; cursor: none; transition: color 0.3s;
}
header nav ul li a:hover { color: #ffd700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }





main {
    width: 1000px; max-width: 90%;
    margin: 140px auto 60px auto; 
    position: relative; z-index: 10;
}

h1 {
    font-family: "Playfair Display", serif;
    font-size: 55px; text-align: center;
    color: #ffd700;
    margin-bottom: 80px;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
    position: relative;
}
h1::after { content: "✧ ✦ ✧"; display: block; font-size: 20px; margin-top: 15px; opacity: 0.6; }






.liste-auteurs { display: flex; flex-direction: column; gap: 100px; }

.auteur {
    display: flex; align-items: center; justify-content: space-between;
    padding: 30px;
    background: rgba(20, 30, 60, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    opacity: 0; transform: translateY(40px);
    transition: all 0.8s ease-out;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.auteur.visible { opacity: 1; transform: translateY(0); }

.auteur:hover { 
    background: rgba(30, 45, 80, 0.5);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.auteur:nth-child(even) { flex-direction: row-reverse; text-align: right; }

.cadre-image {
    width: 260px; height: 360px;
    border-radius: 8px; overflow: hidden;
    position: relative;
    border: 2px solid rgba(100, 149, 237, 0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    transition: transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}


.auteur:hover .cadre-image { 
    transform: scale(1.03); 
    border-color: rgb(255, 255, 255);
   
    box-shadow: 
        0 0 15px 2px rgba(228, 180, 180, 0.3), 
        0 0 30px rgba(158, 152, 152, 0.1);
}

.cadre-image img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.8) contrast(1.1) hue-rotate(10deg) saturate(0.8); 
    transition: filter 0.5s;
}
.auteur:hover .cadre-image img { 
    filter: brightness(1.05) contrast(1) hue-rotate(0deg) saturate(1); 
}

.texte-auteur { width: 600px; }
.texte-auteur h2 {
    font-family: "Playfair Display", serif; font-size: 34px; margin-top: 0; color: #fff;
}
.texte-auteur p { font-size: 17px; color: #b3cde0; line-height: 1.8; }
.texte-auteur p:last-child { 
    color: #ffd700; font-style: italic; font-weight: bold; 
    font-family: "Playfair Display", serif; font-size: 19px; margin-top: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}




footer {
    background: #050a14; color: #64748b; padding: 60px 0; 
    text-align: center; margin-top: 150px; border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.citation-footer { font-family: "Playfair Display", serif; color: #ffd700; font-size: 22px; font-style: italic; }

form {
    background: rgba(10, 18, 42, 0.6); padding: 40px; width: 400px; margin: 0 auto; 
    border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.1);
}
label { color: #ffd700; font-weight: bold; text-transform: uppercase; font-size: 12px; letter-spacing: 1px; }
input, textarea {
    background: rgba(255, 255, 255, 0.05); border: 1px solid #2a3a5a;
    color: #fff; padding: 12px; width: 100%; margin-bottom: 20px; border-radius: 4px;
}
input:focus, textarea:focus { outline: none; border-color: #ffd700; background: rgba(255, 255, 255, 0.1); }
input[type="submit"] {
    background: transparent; color: #ffd700; border: 1px solid #ffd700;
    text-transform: uppercase; cursor: none; transition: 0.3s; font-weight: bold;
}
input[type="submit"]:hover { background: #ffd700; color: #0a122a; box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }


#cursor-circle {
    position: fixed; top: 0; left: 0; width: 35px; height: 35px;
    border: 1px solid rgba(255, 215, 0, 0.6); border-radius: 50%; 
    pointer-events: none; z-index: 10001;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, border-color 0.2s, background 0.2s;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}
#cursor-star {
    position: fixed; top: 0; left: 0; 
    font-size: 18px; color: #ffd700;
    pointer-events: none; z-index: 10002;
    transform: translate(-50%, -50%);
    animation: twinkle 2s infinite ease-in-out;
}
@keyframes twinkle { 0%, 100% { opacity: 1; scale: 1; } 50% { opacity: 0.7; scale: 0.8; } }





body.hovered #cursor-circle {
    width: 55px; height: 55px;
    border-color: #fff; background: rgba(255, 255, 255, 0.1);
}

#canvas-background { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }


.image-container {
  display: grid;
  
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px; 
  margin-bottom: 50px;
}

.image-container img {
  width: 100%;
  
  height: 500px; 
  object-fit: cover; 
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease;
}

.image-container img:hover {
  transform: scale(1.05);
  border-color: #ffd700;
}


header nav ul li a.active {
    color: #ffd700; 
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}


header nav ul li a:hover { 
    color: #ffd700; 
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); 
}

/* Style spécifique pour la mise en page des crédits */
.credits-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.credits-list > li {
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 2px solid rgba(255, 215, 0, 0.4); 
    font-size: 17px;
    color: #b3cde0;
}

.sub-list {
    list-style: "✧ ";
    margin-top: 15px;
    padding-left: 25px;
    color: #e2e8f0;
}

.sub-list li {
    margin-bottom: 10px;
}

.link-gold {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: none; 
}

.link-gold:hover {
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
    text-decoration: underline;
}


.auteur.visible {
    opacity: 1;
    transform: translateY(0);
}

/*Radio*/
form p {
    margin: 20px 0 10px 0;
    font-weight: bold;
    color: #8e4b10;
    text-align: left;
}
input[type="radio"] {
    margin-right: 10px;
    cursor: pointer;
}

input[type="radio"] + label {
    display: inline-block;
    margin-top: 0;
    font-weight: normal;
    cursor: pointer;
}



form input[type="radio"] {
    width: auto;        
    margin: 0 10px 0 0;  
    padding: 0;
    height: auto;
    background: none;
    border: none;
    display: inline-block;
    vertical-align: middle;
}


.radio-group {
    margin-bottom: 25px;
    text-align: left;
}


.radio-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px; 
}


.radio-item label {
    color: #b3cde0;      
    font-size: 14px;
    text-transform: none; 
    letter-spacing: 0;
    cursor: none;        
    margin: 0;          
}


form p {
    color: #ffd700;     
    font-family: "Playfair Display", serif;
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 16px;
}


.agence-section {
    text-align: center;
    margin-bottom: 60px;
}

.textepartenaire {
    background: rgba(10, 18, 42, 0.4);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    line-height: 1.8;
    color: #b3cde0;
}


.container-equipe {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px;
    margin-top: 50px;
}

.carte-membre {
    background: rgba(20, 30, 60, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.carte-membre:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
}


.cadre-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%; 
    overflow: hidden;
    border: 3px solid #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.cadre-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.carte-membre h3 {
    font-family: "Playfair Display", serif;
    color: #fff;
    margin-bottom: 5px;
}

.role {
    display: block;
    color: #ffd700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.btn-site {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    border: 1px solid #ffd700;
    color: #ffd700;
    text-decoration: none;
    font-size: 13px;
    border-radius: 20px;
    transition: 0.3s;
}

.btn-site:hover {
    background: #ffd700;
    color: #0a122a;
}


.documents-section {
    margin-top: 80px;
    text-align: center;
    padding: 40px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
}

.lien-docs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.lien-docs a {
    background: transparent;
    border: 1px solid rgba(179, 205, 224, 0.3);
    color: #b3cde0;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: 0.3s;
}

.lien-docs a:hover {
    border-color: #ffd700;
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

