@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,700,400italic);
@import url(https://fonts.googleapis.com/css?family=Passion+One);
@import url(https://fonts.googleapis.com/css?family=Raleway);

body {
  background-color: black;
  margin: 0;
}

/*NAVIGATION*/
.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(51, 51, 51, 0.7);
  border-radius: 1px;
  color: #fff;
  height: auto;
  padding: 1em 2em;
}
.top-nav ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
}
.top-nav ul li {
  margin-right: 1rem;
}
.top-nav li a {
  display: flex;
  align-items: center;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  color: white;
  font-size: 17px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.top-nav li a:hover,
.nav li a:focus {
  transition: all 0.2s ease-in-out;
  color: #aaaaa9;
}
#logo {
  max-width: 300px;
  min-width: 160px;
}
#logo img {
  max-width: 350px;
  max-height: 75px;
  width: 100%;
  padding: 20px 0 0 0;
}
#langs {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  width: 100%;
}
.menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  width: 500%;
  border-radius: 30px;
  overflow: hidden;
}
.menu > li {
  margin: 0 0 0 1rem;
  overflow: hidden;
  width: 100%;
}
.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#menu-toggle {
  display: none;
}
.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}
.menu-button::before {
  content: "";
  margin-top: -8px;
}
.menu-button::after {
  content: "";
  margin-top: 8px;
}
#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}
#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}
#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

/*HEADER*/
.header {
  background-color: #A1A296;
  box-shadow: 7px 13px 39px #000;
  margin-bottom: 20px;
}
.header h1 {
  font-family: "Open Sans", sans-serif;
  color: #222;
  font-size: 35px;
  text-align: center;
  padding: 20px;
}

/*HOME*/
.index-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  background-color: white;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.index-content {
  opacity: 0;
  padding: 20px 0 20px 20px;
  z-index: 1;
  animation: fadeIn 1s ease 0.5s forwards;
  order: 0;
  flex: 0 0 50%;
}
.index-content p {
  font-family: "Raleway", sans-serif;
  color: black;
  font-size: 26px;
  padding-left: 5px;
  line-height: 1.4;
  text-align: left;
}
.index-content a {
  font-family: "Raleway", sans-serif;
  color: darkred;
  font-size: 26px;
  line-height: 1.4;
  text-decoration: none;
}
.index-content a:hover {
  transition: all 0.2s ease-in-out;
  color: black;
}
.index-image {
  opacity: 0;
  width: 50%;
  height: auto;
  object-fit: cover;
  animation: fadeIn 1s ease 1s forwards;
  order: 1;
}

/*ABOUT*/
.content-about {
  background-color: white;
  box-shadow: 7px 13px 39px #000;
  padding: 20px 10px;
}
.img-biography {
  float: left;
  margin: 25px 35px 15px 20px;
  width: 344px;
  height: auto;
  max-width: 100%;
}
.content-about p {
  font-family: "Raleway", sans-serif;
  color: black;
  font-size: 20px;
  line-height: 1.4;
  text-align: left;
  padding: 0px 20px;
}
.content-about a {
  font-family: "Raleway", sans-serif;
  color: darkred;
  font-size: 20px;
  line-height: 1.4;
  text-decoration: none;
}
.content-about a:hover {
  transition: all 0.2s ease-in-out;
  color: black;
}

/*GALLERY*/
.content-gallery {
  background-color: white;
}
.content-gallery .grid-concerts {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 30px 20px;
}
.content-gallery .gallery {
  width: 468px;
  height: max-content;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.content-gallery .img-swiffy-slider {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3%;
}
.content-gallery .image-caption {
  font-family: "Raleway", sans-serif;
  color: black;
  font-size: 16px;
  line-height: 1.4;
  width: 468px;
  height: 146.82px;
  overflow-y: auto;
}

/*CATALOG*/
.content_catalog {
  background-color: white;
  padding: 20px 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}
.content_catalog p {
  font-family: "Raleway", sans-serif;
  color: black;
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
  padding: 0px 20px;
}
.content_catalog .grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  align-items: center;
}
.content_catalog .grid-item {
  text-align: center;
}
.content_catalog .image {
  max-width: 100%;
  height: auto;
}
.content_catalog .caption {
  font-family: "Raleway", sans-serif;
  color: black;
  font-size: 16px;
  line-height: 1.4;
  margin-top: 10px;
}
.content_catalog ul {
  margin-left: 15px;
}
.content_catalog li {
  text-align: left;
  font-family: "Open Sans", sans-serif;
  color: black;
  font-size: 20px;
  padding: 0px 20px;
}
.content_catalog table {
  font-family: "Open Sans", sans-serif;
  border-collapse: collapse;
  margin-top: 15px;
  margin-bottom: 6px;
  max-width: 100%;
  width: 100%;
}
.content_catalog thead {
  background-color: rgb(93, 87, 81);
  color: white;
  font-size: 16px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1;
  border: 1px solid black;
}
.content_catalog tbody {
  background-color: #ddd;
  font-size: 16px;
  border: 1px solid black;
}
.content_catalog td,
th {
  border: 1px solid black;
  padding: 8px;
}
.content_catalog td:nth-child(1) {
  font-weight: bold;
  width: 220px;
}
.content_catalog td:nth-child(2) {
  text-align: center;
  width: 270px;
}
.content_catalog td:nth-child(3) {
  font-weight: bold;
  width: 250px;
}
.content_catalog td:nth-child(4) {
  width: 280px;
}
.content_catalog td:nth-child(5) {
  text-align: center;
}
.content_catalog td:nth-child(6) {
  text-align: center;
}
.content_catalog td:nth-child(8) {
  text-align: center;
}
.content_catalog a {
  color: darkred;
}
.tabla-container {
  display: flex;
  flex-direction: column;
}
.fila {
  color: black;
}
.fila:hover {
  background-color: #f2f2f2;
}
.title_genre {
  background-color: #98918a;
}
.toggle-btn {
  border: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  background-color: #98918a;
}
.toggle-btn:focus {
  outline: 0;
}
.toggle-img {
  height: 100%;
  object-fit: cover;
}
.search-container{
  display: flex;
  background-color: rgb(93, 87, 81);
  padding: 10px;
  flex-direction: row;
  justify-content: center;
  gap: 12px;
  align-items: center;
  min-width: max-content;
  border: 1px solid black;
}
.search-input {
  border: 1px solid black;
  border-radius: 5px;
  height: 42px;
  margin-right: 5px;
  width: 300px;
}
.search-button {
  background-color: #2C2C2C;
  color: white;
  cursor: pointer;
  height: 42px;
  margin-right: 5px;
  font-weight: bold;
  border: 1px solid black;
  border-radius: 4px;
}
.clear-search-btn.orange-background {
  background-color: darkred;
  color: black;
}
.clear-search-btn.brown-background {
  background-color: #2C2C2C;
  color: white;
  border: black;
}
.underline-dotted a {
    text-decoration: none;
    border-bottom: 1px dotted;
    cursor: help;
}
.underline-dotted a:hover {
    cursor: help;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-height: 80%;
    overflow-y: auto;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


/*TYPOGRAPHIA HARMONICA*/
.info-typographia-harmonica {
  text-align: center;
}
.info-typographia-harmonica .logo-ta {
  height: 250px;
  display: block;
  margin: 0 auto;
}
.info-typographia-harmonica h2 {
  font-family: "Raleway", sans-serif;
  color: black;
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  padding-left: 30px;
}
.info-typographia-harmonica p {
  font-family: "Raleway", sans-serif;
  color: black;
  font-size: 20px;
  line-height: 1.4;
  text-align: left;
  margin-left: 15px;
  padding: 0px 20px;
}
.info-typographia-harmonica li {
  font-family: "Raleway", sans-serif;
  color: black;
  font-size: 20px;
  line-height: 1.4;
  text-align: left;
}
.info-typographia-harmonica a {
  font-family: "Raleway", sans-serif;
  color: darkred;
  font-size: 20px;
  line-height: 1.4;
  text-decoration: none;
}
.info-typographia-harmonica a:hover {
  transition: all 0.2s ease-in-out;
  color: black;
}
.info-typographia-harmonica .license-cc {
  border-width: 0;
  width: 10%;
  display: block;
}
.cover {
  width: 200px;
}
.update-information {
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  background-color: darkred;
  color: black;
  margin: 4px;
  line-height: 1.4;
}


/*ZWISCHEN DEN WOLKEN*/
.img-zdw {
  width: 540px;
  max-width: 50%;
  display: block;
  margin: 0 auto;
  padding: 20px;
}


/*CONTACT*/
.form-contact form {
  border-radius: 5px;
  background-color: #c2c2c2;
  padding: 20px;
  box-shadow: 7px 13px 39px #000;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.form-contact label {
  font-family: "Raleway", sans-serif;
  color: black;
  font-size: 18px;
}
.form-contact input[type="text"] {
  font-family: "Raleway", sans-serif;
  color: black;
  font-size: 16px;
}
.form-contact input[type="text"],
  select,
  textarea {
  font-family: "Raleway", sans-serif;
  color: black;
  font-size: 16px;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
  margin-top: 10px;
  margin-bottom: 15px;
}
button[type="submit"] {
  font-family: "Raleway", sans-serif;
  color: white;
  font-size: 20px;
  background-color: black;
  padding: 14px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
button[type="submit"]:hover {
  color: black;
  background-color: #e6e7d6;
}

/*FOOTER*/
footer {
  background-position: center center;
  background-size: cover;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.social-links {
  height: 5vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.social-links a img {
  width: 30px;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.social-links a:hover img {
  filter: grayscale(100%);
  transform: scale(1.1);
}
#copyright p {
  font-family: "Open Sans", sans-serif;
  color: #fff;
  font-size: 20px;
  text-align: center;
  margin-top: 20px;
}
.footer-logo {
  font-weight: normal;
  font-size: 24px;
  line-height: 30px;
  font-family: "Passion One", cursive;
  color: white;
  margin: -7px 0 0 0;
  display: inline-block;
}

/*SCROLLBAR*/
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

@media (max-width: 1365px) {
  /*NAVIGATION*/
  .menu-button-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 1rem;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 80px;
    right: 5px;
    width: 40%;
    flex-direction: column;
  }
  #menu-toggle ~ .menu li {
    z-index: 2;
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border: 1px solid #333;
    height: 3em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: #222;
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }

  /*CATALOG*/
  .content_catalog thead {
    font-size: 14px;
  }
  .content_catalog tbody {
    font-size: 14px;
  }
  
  .search-input {
    width: 100px;
  }

  /*FOOTER*/
  #copyright p {
    font-size: 20px;
  }
  .social-links a {
    font-size: 18px;
    margin: 0 10px;
  }
  .social-links a:first-child {
    padding-left: 14px;
  }
  .social-links a:not(:last-child) {
    padding-right: 14px;
  }
  .social-links a:last-child {
    padding-right: 14px;
  }
  .social-links a:before {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  /*NAVIGATION*/
   .menu {
    width: 50%;
   }

   /*HEADER*/
   
  .header h1 {
    font-size: 28px;
  }
   
   /*HOME*/
  .index-section {
    flex-direction: column;
    padding: 0 20px;
  }
  .index-image {
    width: 100%;
    padding: 20px 20px 0 20px;
    order: -1;
    animation: fadeIn 1s ease 0.5s forwards;
  }
  .index-content {
    width: 100%;
    z-index: 0;
    transform: none;
    padding: 0px 20px 20px 20px;
    order: 0;
    animation: fadeIn 1s ease 1s forwards;
  }

  /*ABOUT*/
  .img-biography {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    display: block;
    float: none;
    margin: 0 auto;
  }
  
  /*GALLERY*/
  .content-gallery .image-caption {
      width: 320px;
  }

  /*CATALOG*/
  #tabla-container {
    overflow-x: auto;
  }
  .content_catalog thead {
    font-size: 12px;
  }
  .content_catalog tbody {
    font-size: 12px;
  }
  .list-works h1 {
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
  }
  .list-works a {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
  }
  .search-button {
    height: 42px;
  }

  /*TYPOGRAPHIA HARMONICA*/
  .info-typographia-harmonica .image {
    width: 80%;
  }
  .info-typographia-harmonica .logo-ta {
    height: 150px;
  }

  /*FOOTER*/
  #copyright p {
    font-size: 16px;
  }
  .social-links a {
    font-size: 15px;
    margin: 0 6px;
  }
  .social-links a:first-child {
    padding-left: 6px;
  }
  .social-links a:not(:last-child) {
    padding-right: 6px;
  }
  .social-links a:last-child {
    padding-right: 10px;
  }
  .social-links a:before {
    width: 20px;
    height: 20px;
  }
  .social-links a img {
    width: 26px;
  }
}

@media (max-width: 380px) {
  /*FOOTER*/
  .social-links a {
    font-size: 14px;
  }
  .social-links a:first-child {
    padding-left: 4px;
  }
  .social-links a:not(:last-child) {
    padding-right: 4px;
  }
  .social-links a:before {
    margin-right: 8px;
  }
  .social-links a img {
    width: 24px;
  }
}
