@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=League+Spartan:wght@300;500;700&family=Prata&family=Victor+Mono:wght@300;700&display=swap");

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  background-color: rgb(0, 0, 0);
  scroll-behavior: smooth;
}

/* font-family: "Archivo Black", sans-serif;
font-family: "League Spartan", sans-serif;
font-family: "Victor Mono", monospace; */

body {
  font-family: "League Spartan", sans-serif;
}

.fa-instagram {
  color: rgb(143, 0, 0);
  text-decoration: none;
  margin-top: 40px;
  font-size: 60px;
}

.container {
  display: flex;
  width: 70%;
  margin: auto;
  margin-top: 10%;
  margin-bottom: 5%;
  align-items: center;
  overflow: visible;
}

.projects {
  display: grid;
  margin-left: 300px;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: center;
}

.artist {
  font-size: 15px;
  color: yellow;
  font-family: "Victor Mono", monospace;
}

.title {
  font-size: 16px;
  letter-spacing: 0.2rem;
  font-family: "Archivo Black", sans-serif;
}
.header h1 {
  font-size: 25px;
}
.video-type {
  opacity: 0.5;
  font-size: 12px;
  font-family: "Victor Mono", monospace;
  font-weight: 100;
}

.video-item .video-img {
  width: 100%;
  border-radius: 10px;
}

.video-item {
  position: relative;
  transition: all 0.3s ease-in-out;
  margin-bottom: 25px;
}
.video-item:hover {
  opacity: 0.5;
  transform: scale(1.02);
}

.logo-yt img {
  width: 80%;
}
.logo-yt {
  position: absolute;
  cursor: pointer;
  opacity: 0;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease-in-out;
  mix-blend-mode: lighten;
}
.video-item:hover .logo-yt {
  display: block;
  opacity: 1;
}

.video-item a,
.header a {
  text-decoration: none;
  color: white;
}

.navigation {
  display: flex;
  position: fixed;
  top: 30%;
  flex-direction: column;
  justify-content: space-around;
  color: white;

  font-family: "Victor Mono", monospace;
}

.navbar {
  padding: 30px;
}

.header {
  margin-bottom: 120px;
  letter-spacing: 0.1rem;
}

.nav h3 {
  margin-bottom: 20px;
}
.nav h5 {
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .projects {
    display: block;
    margin-left: 300px;
  }
  .artist,
  .title,
  .video-type {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .container {
    width: 90%;
  }
  .projects {
    display: block;
    margin: auto;
  }
  .navigation {
    top: 0;
    width: 100%;
    height: 40px;
  }

  .navbar {
    flex-direction: row;

    padding: 0;
    justify-content: space-evenly;
    align-items: center;
  }

  .fa-instagram {
    position: absolute;
    z-index: 4;
    color: rgb(143, 0, 0);
    text-decoration: none;
    margin-top: 5px;
    right: 11%;
    top: 1px;
    font-size: 1.5rem;
  }

  .nav h3,
  h5 {
    display: none;
  }

  .header {
    display: flex;
    position: relative;
    margin: 0;
    font-size: 10px;
    height: 40px;
    line-height: 40px;
  }
  .header h1 {
    font-size: 16px;

  }

  .artist,
  .title .video-type {
    font-size: 10px;
  }
  .video-item {
    margin-bottom: 25px;
  }
}
/* ============== Header / Perfil ============== */
.nav .email {
  color: #e6e6e6;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

/* Social debajo del email */
.social {
  display: block;
  margin-top: 10px;
}
.social a {
  color: #ffffff;              /* El SVG hereda este color → blanco */
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.social a:hover {
  opacity: 0.85;
}
.social a svg {
  width: 26px;
  height: 26px;
}
