

/* Estilos generales */
body {
  font-family: Arial, sans-serif;
}


/* LOGO */
h1.m-0.display-4.text-uppercase.text-white {
    font-family: "Zilla Slab", serif;
    font-weight: 300;
    font-style: normal;
    margin-left: 5%;
    font-size: 34px;
}

/* Estilo base para pantallas grandes */
h1.display-1.text-white.m-0 {
    font-family: "Zilla Slab", serif;
    font-weight: 300;         /* Usamos 300 porque '10px' no es válido para font-weight */
    font-style: normal;
    margin-left: 5%;
    font-size: 84px;
}

/* Pantallas medianas (tabletas: <= 991px) */
@media (max-width: 991px) {
    h1.display-1.text-white.m-0 {
        font-size: 60px;
        margin-left: 4%;
    }
}

/* Pantallas pequeñas (teléfonos: <= 767px) */
@media (max-width: 767px) {
    h1.display-1.text-white.m-0 {
        font-size: 40px;
        margin-left: 3%;
        text-align: center;
    }
}

/* Teléfonos muy pequeños (<= 480px) */
@media (max-width: 480px) {
    h1.display-1.text-white.m-0 {
        font-size: 28px;
        margin-left: 0;
        text-align: center;
    }
}







/* Títulos */
.title {
  font-size: 36px;
  margin: 5% 0 2% 25%;
  font-family: "Zilla Slab", serif;
  font-weight: 300;
}


/* EFECTO DE ENTRADA */
body {
    opacity: 0;
    animation: fadeInBody 1s ease-in forwards;
}

@keyframes fadeInBody {
    to {
        opacity: 1;
    }
}






/* Contenido principal */
.content {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 3%;
  text-align: left;
  color: silver;
  font-family: "Zilla Slab", serif;
  font-weight: 300;
}



/* Información de contacto */
.contact {
  margin: 10px 0 0 25%;
  color: rgb(21, 21, 21);
  font-family: "Zilla Slab", serif;
  font-weight: 300;
}

.contact h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* Iconos sociales */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 100px 0;
}

.social-icons a {
  display: inline-block;
  transition: transform 0.3s;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.social-icon {
  width: 40px;
  height: 40px;
  object-fit: cover;
}









/* Información de contacto */
.contact {
  margin: 10px 0 0 25%;
  color: rgb(21, 21, 21);
  font-family: "Zilla Slab", serif;
  font-weight: 300;
}

.contact h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* Iconos sociales */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 100px 0;
}

.social-icons a {
  display: inline-block;
  transition: transform 0.3s;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.social-icon {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

/* Galería de imágenes */
.grid-aboutme {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 20px 0 50px;
}

.grid-item img {
  width: 400px;
  height: 400px;
  object-fit: cover;
}

/* Imagen del footer */
.image-footer {
  width: 100%;
  height: 1400px;
  background: url('https://sosupics.com/PORTFOLIO/IG/post-2.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: end;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 20px;
}

.footer-text {
  color: white;
  font-size: 14px;
  line-height: 1.5;
  max-width: 100%;
  font-family: Arial, sans-serif;
}

/* Responsividad */
@media (max-width: 768px) {
  .title {
      font-size: 28px;
      margin: 20% 0 10% 5%;
  }

  .content {
      font-size: 16px;
      max-width: 90%;
  }

  .contact {
      font-size: 20px;
      margin: 100px 0 0 10%;
  }

  .social-icon {
      width: 30px;
      height: 30px;
  }

  .grid-aboutme {
      flex-wrap: nowrap;
      overflow-x: auto;
      justify-content: flex-start;
      padding-bottom: 10px;
  }

  .grid-item img {
      width: 250px;
      height: 250px;
      flex-shrink: 0;
  }

  .image-footer {
      height: 600px;
  }

  .footer-text {
      font-size: 10px;
  }
}

@media (max-width: 480px) {
  .image-footer {
      height: 200px;
  }

  .footer-text {
      font-size: 12px;
  }
}
