/********************/
/*    RESPONSIVE    */
/********************/

@media (max-width: 991px) {
    #hero h1 {
        position: absolute;
        bottom: 20px;
        left: 20px;
        transform: none;
        margin: 0;
        font-size: 1.8em;
        color: black;
        font-weight: bold;
        text-shadow: 2px 2px 5px #E4EA97;
        z-index: 10;
        text-align: left;
        display: inline-block;
    }
    #hero {
        position: relative;
        text-align: center;
        width: 100%;
        height: 100px;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background-color: transparent;
    }
    
    header {
        padding: 10px 0;
      }

      header nav ul {
        flex-direction: column;
        gap: 10px;
      }

      header nav ul li a {
        font-size: 16px;
      }
    .header-title h1 {
        font-size: 1.2em;
    }
    .galerie-title {
        font-size: 80px;
    }
    .section-text {
        font-size: 1.2em;
        line-height: 1.6;
        margin-top: 20px;
        text-align: justify;
        color: #000;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .text-section {
        width: 100%;
        background-color: #C9AAAA;
        padding: 20px 0 0 0;
        display: flex;
        justify-content: center;
    }
}

/* Medium devices (max-width: 768px) */
@media screen and (max-width: 768px) {
  header {
    padding: 15px 0;
  }

  header nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  }

  header nav ul li a {
    font-size: 18px;
  }
    
}