/* Importa fuente */
@import url('https://fonts.googleapis.com/css2?family=Franklin+Gothic+Medium&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Franklin Gothic Medium', sans-serif;
  overflow-x: hidden;
}

/* HERO con imagen de fondo que ocupa toda la pantalla */
.hero {
  height: 100vh;
  background-image: url('IMG_8318%203.JPG'); /* Reemplaza espacio con %20 */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.hero_about {
  height: 100vh;
  background-image: url('DSC00235.JPG');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

/* Capa oscura opcional */
.overlay {
  background-color: rgba(0, 0, 0, 0.2);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* NAVBAR */
.navbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px;
  color: white;
}

.logo {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
}

.logo a {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #e0e0e0;
}

/* GALLERY */
.gallery {
  background-color: white;
  padding: 80px 40px 100px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.grid img,
.grid video {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Variaciones asimétricas */
.grid img.tall {
  grid-row: span 2;
  height: 100%;
}

.grid img.wide,
.grid video.wide {
  grid-column: span 2;
  height: 100%;
}

.copy {
  font-size: 1.1rem;
  font-weight: 400;
  color: #333;
  padding-bottom: 20px;
  padding-left: 34px;
}

/* RESPONSIVE - PANTALLAS PEQUEÑAS */
@media (max-width: 768px) {
  .logo {
    display: none;
  }

  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: center;
  }

  .nav-links li a {
    font-size: 1rem;
  }
}
