﻿/* =========================
   INTER — LOCAL WEBFONT
   ========================= */

@font-face{
  font-family:"supersonic";
  src:url("fonts/helvetica-blackoblique.woff2") format("woff2");
  font-weight:900;
  font-style:italic;
  font-display:swap;
}


/* =========================
   SUPSERSONIC — STYLE.CSS
   ========================= */

:root{
  --bg:#000;
  --text:#fff;
  --muted:#bdbdbd;
  --line:rgba(255,255,255,.15);
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family:"supersonic", Arial, sans-serif;
  font-weight:900;
  font-style:italic;
  letter-spacing:-0.01em;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

/* =========================
   EFFET NÉON GLOBAL (LIENS)
   ========================= */

a{
  color:var(--muted);
  text-decoration:none;
  transition:color 0.2s ease, filter 0.3s ease;
}

a:hover{
  color:#fff;
  filter:
    drop-shadow(0 0 5px rgba(255,255,255,0.6))
    drop-shadow(0 0 12px rgba(255,255,255,0.4));
}

/* =========================
   HEADER
   ========================= */

header{
  width:100%;
  padding:80px 6%;
  display:flex;
  align-items:center;
  justify-content:center;   /* menu centré */
  position:relative;
  border-bottom:1px solid var(--line);
}

/* =========================
   TABLETTE PORTRAIT
   Header plus compact
   ========================= */

@media (max-width:768px){

  header{
    padding-top:80px;
    padding-bottom:40px;
  }

}

@media (max-width:768px) and (orientation:portrait){

  nav{
    padding-top:0;
    margin-top:-10px;
  }

}

/* Logo à gauche */
.logo{
  position:absolute;
  left:6%;
  top:50%;
  transform:translateY(-50%); /* centre verticalement dans le header */
}

.logo a{ text-decoration:none; }

.logo img{
  height:116px;
  width:auto;
  display:block;
  transition:filter 0.3s ease;
}

.logo img:hover{
  filter:
    drop-shadow(0 0 6px rgba(255,255,255,0.7))
    drop-shadow(0 0 14px rgba(255,255,255,0.5));
}

/* =========================
   MENU (VERSION "COMME AVANT")
   ========================= */

nav{
  display:flex;
  gap:45px;
  font-size:20px;
  margin-left:25px; /* Décalage vers la droite */
}

/* =========================
   EXCEPTION ÉCRANS 4/3
   ========================= */

@media (max-width:1024px){

  header{
    justify-content:flex-end;
  }

  nav{
    margin-left:0;
    gap:20px;
    font-size:18px;
  }

}

@media (max-width: 480px) and (orientation: portrait){

  header{
    padding:25px 5% 20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
  }

  .logo{
    position:static;
    transform:none;
    margin-bottom:14px;
  }

  .logo img{
    height:78px;
  }

  nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px 18px;
    margin-left:0;
    font-size:16px;
  }

  nav a{
    padding:4px 8px;
  }

}

nav a{
  padding:6px 12px;
  border-radius:3px;
  color:var(--muted);
  transition:all 0.2s ease;
}

nav a:hover{
  color:#fff;
}

nav a.active{
  background:#fff;
  color:#000;
}

/* PETITE RESOLUTION 16/9 : ORDINATEUR */

@media (min-width: 1025px) and (max-width: 1500px) {

  header{
    display:grid;
    grid-template-columns: 320px 1fr;
    align-items:center;
    justify-content:unset;
  }

  .logo{
    position:static;
    top:auto;
    left:auto;
    transform:none;
    grid-column:1;
  }

  nav{
    grid-column:2;
    justify-content:center;
    margin-left:0;
  }

}

/* =========================
   PAGE CONTENT
   ========================= */

.page{
  padding:40px 6% 80px 6%;  /* 40px sous le header, comme ton hero */
  min-height:70vh;
  border-bottom:1px solid var(--line);
}

.page h1{
  font-size:48px;
  margin:0 0 20px;
}

.page p{
  max-width:800px;
  color:var(--muted);
  font-size:20px;
}

/* =========================
   MOBILE PORTRAIT
   Page bio : paragraphes alignés à gauche
   ========================= */

@media (max-width:480px) and (orientation:portrait){

  .page p.justify{
    text-align:left;
  }

}


/* =========================
   HERO (ACCUEIL)
   ========================= */

.hero{
  min-height:80vh;
  padding:0 6%;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  padding-top:40px;
  border-bottom:1px solid var(--line);
}

.hero h1{
  font-size:56px;
  margin:0 0 20px;
}

.hero p{
  max-width:700px;
  font-size:20px;
  color:var(--muted);
}

/* =========================
   MOBILE PORTRAIT
   Index : texte aligné à gauche
   ========================= */

@media (max-width:480px) and (orientation:portrait){

  .hero .justify{
    text-align:left;
  }

}

/* =========================
   BOUTONS
   ========================= */

.btn{
  display:inline-block;
  margin-top:30px;
  padding:14px 28px;
  border:1px solid #fff;
  transition:background 0.2s ease, color 0.2s ease, filter 0.3s ease;
}

.btn:hover{
  background:#fff;
  color:#000;
  filter:
    drop-shadow(0 0 6px rgba(255,255,255,0.7))
    drop-shadow(0 0 14px rgba(255,255,255,0.5));
}

/* =========================
   FOOTER + SOCIAL + CREDIT PHOTO BERI
   ========================= */

.site-footer{
  padding: 40px 6%;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.footer-social{
  margin-top: 40px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 35px;
}

.footer-social a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social img{
  display: block;
  height: 28px;
  width: auto;
  transition: filter 0.3s ease;
}

.footer-social img:hover{
  filter:
    drop-shadow(0 0 5px rgba(255,255,255,0.6))
    drop-shadow(0 0 12px rgba(255,255,255,0.4));
}

.footer-bottom{
  margin-top: 10px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}

.copyright,
.photo-credit{
  display: block;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.photo-credit{
  position: static !important;
  opacity: 0.8;
}

.photo-credit a{
  color: inherit;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.photo-credit a:hover{
  background: white;
  color: black;
  text-decoration: none;
}

/* =========================
   MOBILE
   ========================= */

@media screen and (max-width: 768px){
  .site-footer{
    padding: 28px 16px 24px;
  }

  .footer-social{
    gap: 18px;
    margin-bottom: 16px;
  }

  .footer-social img{
    height: 24px;
  }

  .footer-bottom{
    display: flex !important;
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }

  .copyright,
  .photo-credit{
    width: 100%;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
  }

  .photo-credit a{
    display: inline-block;
    white-space: normal;
  }
}

/* =========================
   DATES — CARTES CONCERTS
   ========================= */

.gig-list{
  margin-top:50px;
  max-width:780px;
}

.gig-card{
  background:#fff;
  color:#000;
  border-radius:10px;
  padding:26px;
  margin-top:22px;
}

.gig-date{
  font-size:22px;
}

.gig-venue{
  margin-top:10px;
  font-size:18px;
}

.gig-city{
  margin-top:6px;
  font-size:16px;
}

.gig-meta{
  margin-top:10px;
  font-size:15px;
  opacity:0.85;
}

.gig-more{
  margin-top:14px;
  display:flex;
  align-items:center;
  gap:10px;
}

.gig-more a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border-radius:6px;
  border:1px solid #000;
  color:#000;
  background:#fff;
  transition:background 0.2s ease, color 0.2s ease;
}

.gig-more a:hover{
  background:#000;
  color:#fff;
}

.gig-map,
.gig-calendar{
  width:35px;
  height:35px;
  padding:0 !important;
  border:none !important;
  background:transparent !important;
  border-radius:50%;
}

/* Caché sur PC */
.gig-more a.gig-calendar{
  display:none;
}

.gig-map:hover,
.gig-calendar:hover{
  background:#000 !important;
}

.gig-map-icon,
.gig-calendar-icon{
  width:26px;
  height:26px;
  display:block;
  transition:filter 0.2s ease;
}

.gig-map:hover .gig-map-icon,
.gig-calendar:hover .gig-calendar-icon{
  filter:invert(1);
}

/* =========================
   DATES — CARTES CONCERTS TERMINÉS
   ========================= */

.gig-card-over{
  background:#9C9C9C;
  color:#828282;
  border:2px solid #9C9C9C;
}

.gig-card-over .gig-meta{
  opacity:0.9;
}

.gig-card-over .gig-more a{
  border:1px solid #9C9C9C;
  color:#828282;
  background:#000;
}

.gig-card-over .gig-more a:hover{
  background:#fff;
  color:#000;
}

.gig-card-over{
  position:relative;
  background:#9C9C9C;
  color:#828282;
  border:2px solid #9C9C9C;
}

.gig-status{
  position:absolute;
  right:25px;
  bottom:12px;
  font-size:20px;
  font-style:italic;
  opacity:0.9;
}

@media (max-width: 480px){
  .gig-status{
    display:none;
  }
}

/* =========================
   TABLETTE + MOBILE
   ========================= */

@media (max-width: 1024px){
  .gig-more a.gig-calendar{
    display:inline-flex;
  }

  .gig-list{
    margin-top:40px;
    max-width:100%;
  }

  .gig-card{
    padding:20px;
    margin-top:18px;
    border-radius:18px;
  }

  .gig-date{
    font-size:17px;
    line-height:1.25;
    white-space:normal;
  }

  .gig-venue{
    margin-top:10px;
    font-size:15px;
    line-height:1.3;
  }

  .gig-city{
    margin-top:6px;
    font-size:14px;
    line-height:1.3;
    white-space:normal;
  }

  .gig-meta{
    margin-top:10px;
    font-size:13px;
    line-height:1.4;
  }

  .gig-more{
    margin-top:16px;
  }

  .gig-more a{
    padding:8px 14px;
    font-size:15px;
  }
}

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

@media (max-width:900px){

  header{
    flex-direction:column;
    gap:20px;
  }

  .logo{
    position:static;
  }

  nav{
    gap:25px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .logo img{
    height:80px;
  }

  .page h1{
    font-size:34px;
  }

  .hero h1{
    font-size:36px;
  }

  .hero{
    min-height:60vh;
  }
}

/* =========================
   CONTACT — RÉSEAUX SOCIAUX
   ========================= */

.social-icons{
  margin-top:40px;
  display:flex;
  flex-direction:column;
  gap:16px;
  align-items:flex-start;
  justify-content:flex-start;
}

.social-icons a{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
  gap:12px;
  padding:12px 20px;
  background:white;
  border-radius:999px;
  color:black;
  text-decoration:none;
  min-width:220px;
  box-sizing:border-box;
  overflow:hidden;
}

.social-icons a::before{
  content:"";
  position:absolute;
  inset:0;
  border:2px solid rgb(0, 0, 0);
  border-radius:999px;
  pointer-events:none;
  z-index:2;
}

.social-icons img{
  height:26px;
  width:26px;
  object-fit:contain;
  display:block;
}

.social-icons span{
  font-size:18px;
  line-height:1;
}

/* hover négatif */
.social-icons a:hover{
  filter:invert(1);
}

/* =========================
   INDEX — VIDÉO TEASER LARGE
   ========================= */

.video-wrap{
  margin:60px auto 80px auto;
  width:100%;
  display:flex;
  justify-content:center;
}

.video-wrap iframe{
  width:85%;            /* ← large */
  max-width:1400px;     /* limite haute propre */
  aspect-ratio:16/9;
  border-radius:14px;
  border:1px solid #fff;
  display:block;

  transition:transform 0.25s ease, filter 0.3s ease;
}

.video-wrap iframe:hover{
  transform:scale(1.02);
  filter:
    drop-shadow(0 0 6px rgba(255,255,255,0.7))
    drop-shadow(0 0 14px rgba(255,255,255,0.4));
}

/* TEASER LARGE MOBILE */

@media (max-width: 480px){
  .video-wrap{
    margin:40px 0 50px 0;
  }

  .video-wrap iframe{
    width:100%;
    border-radius:8px;
  }
}

/* TEASER LARGE TABLETTE PORTRAIT */

@media (max-width: 794px){
  .video-wrap{
    margin:40px 0 50px 0;
  }

  .video-wrap iframe{
    width:100%;
    border-radius:8px;
  }
}

/* TEASER LARGE TABLETTE PAYSAGE */

@media (max-width: 1024px){
  .video-wrap{
    margin:40px 0 50px 0;
  }

  .video-wrap iframe{
    width:100%;
    border-radius:8px;
  }
}

/* =========================
   CONTACT — EMAIL CHIP
   ========================= */

.email-chip{
  display:inline-flex;
  align-items:center;
  gap:14px;
  margin-top:20px;
  padding:14px 20px;
  border-radius:12px;

  border:1px solid #fff;          /* Bordure blanche */
  background:transparent;

  color:var(--muted);
  text-decoration:none;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    filter 0.3s ease;
}

/* Icône enveloppe */
.email-icon{
  height:22px;
  width:auto;
  display:block;
  opacity:0.9;
  transition:filter 0.25s ease, opacity 0.25s ease;
}

/* Texte */
.email-text{
  letter-spacing:0.3px;
}

/* EMAIL TEXTE POUR MOBILE*/

@media screen and (max-width: 480px) and (orientation: portrait) {
  .email-text {
    font-size: 16px;
    line-height: 1;
  }

  .email-icon {
    width: 22px;
    height: 18px;
    margin-right: 4px;
  }

  .email-chip {
    gap: 8px;
  }
}

/* Hover : effet négatif + néon */
.email-chip:hover{
  background:#fff;
  color:#000;

  filter:
    drop-shadow(0 0 6px rgba(255,255,255,0.7))
    drop-shadow(0 0 14px rgba(255,255,255,0.4));
}

/* Icône passe en noir quand fond blanc */
.email-chip:hover .email-icon{
  filter:invert(1);
  opacity:1;
}

/* =========================
   MÉDIAS — VIDÉOS
   ========================= */

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

.video-card iframe{
  width:100%;
  aspect-ratio:16/9;
  border-radius:14px;

  border:1px solid #fff;   /* ← BORDURE BLANCHE */

  display:block;
  transition:transform 0.25s ease, filter 0.3s ease;
}

.video-card iframe:hover{
  transform:scale(1.02);

  /* glow 90s subtil */
  filter:
    drop-shadow(0 0 6px rgba(255,255,255,0.7))
    drop-shadow(0 0 14px rgba(255,255,255,0.4));
}

@media (max-width:900px){
  .video-grid{
    grid-template-columns:1fr;
  }
}

/* =========================
   RÉPERTOIRE — SETLIST
   ========================= */

.setlist{
  font-size:26px;
  line-height:1.8;
  margin-top:30px;
  color:#fff;              /* Texte blanc */
  padding-left:20px;       /* espace propre pour les puces */
}

.setlist li{
  margin-bottom:6px;
}

/* Couleur des puces */
.setlist li::marker{
  color:#fff;              /* Puces blanches */
}

.setlist{
  list-style:disc;
}

/* =========================
   MOBILE PORTRAIT
   Répertoire : liste plus compacte pour les titres longs
   ========================= */

@media (max-width:480px){

  .setlist{
    font-size:20px;
    line-height:1.4;
    padding-left:18px;
  }

  .setlist li{
    margin-bottom:6px;
  }

}

/* =========================
   MOBILE – PORTRAIT
   Supprime l'espace avant le footer
   ========================= */

@media (max-width:480px){

  .setlist{
    margin-bottom:0;
  }

  .setlist li:last-child{
    margin-bottom:0;
  }

  .page{
    padding-bottom:30px;
  }

}

/* =========================
   RÉPERTOIRE — PHRASE ACCROCHE
   ========================= */

.page .repertoire-intro{
  font-size:26px !important;
  color:var(--muted);   /* ← gris comme les autres paragraphes */
  margin-top:10px;
  margin-bottom:30px;
}

/* =========================
   BIO - PHOTO 5 membres
   ========================= */

.bio-band-photo{
  display: flex;
  justify-content: center;
  margin: 0 auto 20px;
}

.bio-band-photo img{
  max-width: 100%;
  width: 1000px;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 0px solid #fff;
}

.bio-title{
  margin-top:80px;
}

/* =========================
   BIO — MEMBRES DU GROUPE
   ========================= */

.band-members{
  margin-top:60px;
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:40px;
}

.member{
  text-align:center;
}

.member img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:14px;
  border:2px solid #fff;
  transition:all 0.3s ease;
}

/* RECADRAGE PHOTO BIO VINCENT ET ROLE MOBILE */
.member.vincent img{
  object-position: 35% 25%;
}

/* RECADRAGE PHOTO BIO JULIEN */
.member.julien img{
  object-position: 85% 10%;
}

/* RECADRAGE PHOTO BIO SAMUEL */
.member.samuel img{
  object-position: 85% center;
}

.member img:hover{
  transform:scale(1.05);
  box-shadow:0 0 20px rgba(255,255,255,0.4);
}

.member h3{      /* PRENOM DU MUSICIEN DANS LA BIO */
  margin-top:15px;
  font-size:26px;
  color:#fff;
}

.member p{	/* RÔLE DANS LE GROUPE */
  margin-top:6px;
  font-size:22px;
  color:var(--muted);
  min-height:52px;
}

/* AFFICHAGE BIO DES MEMBRES OPTIMISÉS POUR TOUS TYPES D'APPAREILS*/
@media (max-width:1100px){
  .band-members{
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
  }
}

@media (max-width:1000px){
  .band-members{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width:520px){
  .band-members{
    grid-template-columns:1fr;
  }
}

/* =========================
   BIO — BOUTON "BIO"
   ========================= */

.bio-btn{
  margin-top:12px;
  padding:10px 16px;
  border-radius:10px;
  background:#000;
  color:#fff;
  border:1px solid #fff;
  font-family:"supersonic", sans-serif !important;
  font-weight:900;
  font-style:italic;
  font-size:16px;
  cursor:pointer;
  -webkit-appearance:none;
  appearance:none;
  transition:background 0.2s ease, color 0.2s ease, filter 0.3s ease;
}

.bio-btn:hover{
  background:#fff;
  color:#000;
  filter:
    drop-shadow(0 0 6px rgba(255,255,255,0.7))
    drop-shadow(0 0 14px rgba(255,255,255,0.4));
}

.bio-btn.active{
  background:#fff;
  color:#000;
  filter:
    drop-shadow(0 0 6px rgba(255,255,255,0.7))
    drop-shadow(0 0 14px rgba(255,255,255,0.4));
}

/* =========================
   MODAL BIO
   ========================= */

.no-scroll{
  overflow: hidden;
}

/* Overlay */
.modal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 6%;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .25s ease, visibility .25s ease;
}

.modal-overlay.open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-overlay.is-closing{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Fenêtre */
.modal{
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  overflow: hidden;

  transform: translateY(16px) scale(.985);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
  will-change: transform, opacity;
}

.modal-overlay.open .modal{
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-overlay.is-closing .modal{
  transform: translateY(14px) scale(.985);
  opacity: 0;
}

/* =========================
   BIO — BOUTON "BIO" ACTIF
   ========================= */

.bio-btn.active,
.bio-btn.active:hover{
  background: #fff !important;
  color: #000 !important;
  border-color: #fff !important;
  filter:
    drop-shadow(0 0 6px rgba(255,255,255,0.7))
    drop-shadow(0 0 14px rgba(255,255,255,0.4)) !important;
}

/* Croix */
.modal-close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: all .25s ease;
  z-index: 5;
}

.modal-close:hover{
  background: #fff;
  color: #000;
  border-color: #fff;
  box-shadow:
    0 0 6px rgba(255,255,255,.6),
    0 0 14px rgba(255,255,255,.4);
}

/* Contenu */
.modal-content{
  display: flex;
  gap: 22px;
  padding: 26px;
  align-items: center;
}

/* Colonne gauche */
.modal-left{
  width: 320px;
  height: 420px;
  overflow: hidden;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-left img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 14px;
  border: 2px solid #fff;
  display: block;
  box-sizing: border-box;
}

/* Réglage spécial overlay pour Julien */
.modal-left img.julien-modal{
  object-position: 78% center;
}

/* Colonne droite */
.modal-right{
  flex: 1;
  min-width: 0;
  color: #fff;
}

.modal-right h2{
  margin: 0;
  font-size: 34px;
}

.modal-role{
  margin-top: 10px;
  font-size: 22px;
  color: var(--muted);
}

.modal-right p{
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
}

/* Justification */
.justify{
  text-align: justify;
}

#modalText{
  text-align: justify;
}

/* =========================
   TABLETTE / PETIT PC
   ========================= */

@media (max-width: 900px){
  .modal{
    max-width: 760px;
  }

  .modal-content{
    flex-direction: column;
    align-items: center;
  }

  .modal-left{
    width: 280px;
    height: 320px;
    max-width: 100%;
  }

  .modal-right{
    width: 100%;
  }

  .modal-right h2,
  .modal-role{
    text-align: center;
  }
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px){
  .modal-overlay{
    padding: 12px;
    align-items: center;
    justify-content: center;
  }

  .modal{
    max-width: none;
    width: 100%;
    max-height: calc(100vh - 24px);
    border-radius: 18px;
  }

  .modal-content{
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 60px 16px 20px;
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal-left{
    width: 100%;
    max-width: 220px;
    height: auto;
    max-height: none;
  }

  .modal-left img{
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: contain;
  }

  .modal-right{
    width: 100%;
  }

  .modal-right h2{
    font-size: 28px;
    text-align: center;
  }

  .modal-role{
    margin-top: 8px;
    font-size: 18px;
    text-align: center;
  }

  .modal-right p,
  #modalText{
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.65;
    text-align: justify;
  }

  .modal-close{
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

#bioModal img{
  object-position:center !important;
}