@font-face {
  font-family: "Amorino_beta";
  src: url("font/Amorino_beta.ttf") format('ttf');
}

body {
  background-color: #fac2eb;
  color: black;
  font-family: "Amorino_beta", "Gotham-Thin", "Helvetica Neue Light", sans-serif;
  margin: 0;
  padding: 0;
}

header {
  position: sticky;
  top: 0;
  background-color: #fac2eb;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 1px 0;
}

.header-navigation {
  display: flex;
  justify-content: flex-end;
}

.logo {
  height: 50px; /* Define o tamanho da imagem (ajuste conforme necessário) */
  width: auto; /* Mantém a proporção da imagem */
  display: block; /* Garante que seja tratado como um bloco para evitar problemas de alinhamento */
}

h1 {
  font-family: "Amorino_beta", "Gotham-Thin", "Helvetica Neue Light", sans-serif;
  font-size: 50px;
  font-weight: normal;
  margin: 15px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: black;
  opacity: 0.8;
}

nav ul li {
  display: inline;
  margin-left: 20px;
  color: black;
}

nav ul li a {
  color: inherit;
  text-decoration: none;
  font-size: 20px;
  font-family: "Amorino_beta", "Gotham-Thin", "Helvetica Neue Light", sans-serif;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

nav ul li a:hover,
nav ul li a.selected {
  opacity: 1.0; 
}

@media screen and (max-width: 768px) {
  .header-navigation {
    flex-direction: column;
    align-items: flex-end;
  }
  
  .header-navigation ul li {
    margin: 10px 0;
    display: block;
    text-align: right;
  }
}

main {
  padding: 0px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
}

.gallery-item {
  display: none;
  width: 200px;
}

.gallery-item img {
  width: 100%;
  height: auto;
}

#all:target ~ .gallery .gallery-item {
  display: block;
}

#features:target ~ .gallery .features {
  display: block;
}

#shorts:target ~ .gallery .shorts {
  display: block;
}

#music-video:target ~ .gallery .music-video {
  display: block;
}

body:not(:has(:target)) .gallery .gallery-item {
  display: block;
}

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

.gallery a {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 40%; /* Proporção */
}

.gallery img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.1s ease;
}

.image-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  text-align: center;
  font-family: "Amorino_beta", "Gotham-Thin", "Helvetica Neue Light", sans-serif;
  color: whitesmoke;
  opacity: 0;
  transition: opacity 0.1s ease;
}

.gallery img:hover + .image-title,
.image-title:hover {
  opacity: 0.9;
}

.gallery img:hover,
.gallery img:hover + .image-title {
  opacity: 0.9;
}

@media screen and (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

.horizontal-line {
  position: sticky;
  width: 100%; /* Espessura da linha */
  height: 2px; /* Altura da linha */
  background-color: black; /* Cor da linha */
  margin: 0 auto; /* Centraliza horizontalmente */
}

footer { 
position: center;
  top: 0;
  background-color: #fac2eb;
  z-index: 1000;
  display: flex;
  justify-content:space-between;
  align-items:center;
  padding: 20px 50px 30px 50px;
  text-align: center;
  font-size: 15px; /* Ajusta o tamanho da fonte */
}