
/* GENERAL STYLING */
  body {
    font-family: Roboto;
    margin: 0;
  }

  a {
    text-decoration: none; /* enlève le soulignement */
    color: inherit;  
  }
  
/* INTRO STYLING */
    
  .homepage-intro {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(0.94rem, 8vw ,12.5rem);

    background-image: url('../Images/Homepage/cover.jpg');
    background-size: 100%;       /* couvre tout le conteneur */
  }

  .intro-left,
  .intro-right {
    height: clamp(14rem, 28vw, 31.3rem);
    flex: 1fr;

  }

  .intro-left {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .profile-picture {
      width: clamp(12.5rem, 23vw ,25rem);
      height: auto;
      aspect-ratio: 1 / 1;
      border-radius: 30%;
      background-color: blue;
      object-fit: cover;  
  }

  .intro-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .intro-titre {
    max-width: 21.9rem; 
    font-size: clamp(2.5rem, 3vw, 3.44rem);
    font-weight: 600;
    color: rgb(43, 45, 66);
    
  }

  .intro-paragraphe {
    font-size: clamp(0.88rem, 2vw, 1rem);
  }

  .intro-buttons {
    display: flex;
    gap: clamp(0.3rem, 2vw ,2.8rem);
  }

  .introright-button {
    font-size: clamp(0.6rem, 1.2vw ,1.12rem);
    font-family: Roboto;
    font-weight: 400;
    margin: clamp(0.62rem, 1.5vw ,1.9rem) 0 0 0;
    background-color: rgb(29, 53, 87);
    color: white;
    border-style: none;
    height: clamp(2.8rem, 4.5vw ,3.75rem);
    width: clamp(4.7rem, 9vw ,9.37rem);
    cursor: pointer;
    border-radius: 5px;
  }

  .introright-button:hover {
    transform: scale(1.03);
    background-color:rgb(69, 123, 157);
    transition: 0.1s;
    
  }

  .introright-button:active {
    transform: scale(1.00);
    background-color:rgb(29, 53, 87);
    transition: 0.1s;
  }



/* PODCAST LIST STYLING */

  .homepage-titre {
    font-size: 40px;
    font-family: Roboto;
    font-weight: 500;
    margin: 40px 0 40px 0;
    text-align: center;
  }

  .podcastlist {
    display: flex;
    flex-wrap: wrap;
    max-width: 1500px; /* limite la largeur */
    margin: 0 auto;    /* centre le container dans la page */
    width: 100%;       /* prend toute la largeur dispo, mais limité par max-width */
    gap: 40px;
    justify-content: center;
    align-items: center;
  }

  .podcastcontainer {
    display: flex;  
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: clamp(250px, 15vw ,400px);
    max-width: clamp(250px, 16vw ,300px);
    background-color: rgb(237, 242, 244);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
  }

  .podcastcontainer:hover {
    transform: scale(1.01);
    transition: 0.2s;
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }

  .podcast-image {
    display: flex;
    justify-content: center; /* centre horizontalement */
    align-items: flex-start;
    flex: 0 0 50%;
  }

  .podcast-image img {
    height: 100%;
    width: 110%;
    object-fit: cover;
  }

  .podcast-titre {
    flex: 0 0 40%;
    margin: 15px 15px 0 15px;
    font-size: 18px;
    font-weight: 400;
    text-overflow: ellipsis;    
  }

  .podcast-titre-en {
    font-size: 12px;
    font-style: italic;
  }


.contact-form {
  height: 800px;
}