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

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
  }
  
  body {
    background: linear-gradient(45deg, #225c94, #192e4f);
    background-attachment: fixed;
    position: relative;
    z-index: 0;
    height: 100vh;
     overflow: hidden;
  }
  
  /* Waves - mobile first */
  .wave-top,
  .wave-bottom {
    position: fixed;
    inset: 0 auto auto 0; /* top left par défaut */
    width: 100%;
    height: auto;
    display: block;
    max-width: 100vw;
    z-index: -1;
    pointer-events: none;
  }
  
  .wave-bottom {
    inset: auto 0 0 auto; /* bottom right */
  }
  
  .logo-college {
    position: relative;
    display: block;
    margin: 1rem auto 2rem auto; /* top / horizontal / bottom / horizontal */
    width: 150px; /* ou adapte à la taille que tu veux */
    height: auto;
    z-index: 1;
  }

  .inscriptions {
    max-width: 700px;
    margin: auto;
    padding: 1rem;
    font-family: sans-serif;
    color: #fff;
    line-height: 1.6;
    
    height: 60vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

  
  /* Masquer la scrollbar */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
}

.inscriptions::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
  
  .inscriptions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .inscriptions h3 {
    margin-top: 2rem;
    font-size: 1.5rem;
    color: #f09505;
  }
  
  .inscriptions ul {
    padding-left: 1.2rem;
    margin-top: 1rem;
  }
  
  .inscriptions li {
    margin-bottom: 0.8rem;
  }
  
  .btn-link {
    display: block;
    width: fit-content;
    margin: 1rem auto;
    background: linear-gradient(45deg, #ee6e4c, #e72e4f);
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .btn-link:hover {
    background-color: #c2185b;
    transform: scale(1.05);
  }
  
  .info-refonte {
    background: linear-gradient(45deg, #ee6e4c, #e72e4f);
    color: #ffffff;
    padding: 0.75rem 1rem;
    margin: 1rem auto 2rem auto;
    text-align: center;
    border-radius: 6px;
    font-weight: bold;
    width: 90%;  }
  .inscriptions::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #192e4f);
    pointer-events: none;
    z-index: 2;
  }

  .scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #dcc505;
    animation: bounce 1.5s infinite;
    opacity: 1;
    pointer-events: none;
  }
  
  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }
  

/* Tablette : 768px à 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    .wave-top,
    .wave-bottom {
      width: 75vw;
    }
  }
  
  /* Desktop : 1024px et plus */
  @media (min-width: 1024px) {
    .wave-top,
    .wave-bottom {
      width: 50vw;
    }

    .logo-college {
      
        width: 200px; /* ou adapte à la taille que tu veux */

      }

  }