/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: Arial, sans-serif;
  height: 100%;
  scroll-behavior: smooth;
}

.montserrat {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.location {
  font-family: 'Montserrat', sans-serif;
  color: white;
  text-align: left;
  margin-top: -10px;
  font-size: 2rem; /* Aproximadamente 25% de un h1 que suele ser 4rem */
  opacity: 0.8;
}

/* Contenedor video */
.showcase {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Texto y botón sobre video en esquina superior izquierda */
.content {
  position: absolute;
  top: 30px;
  left: 30px;
  color: white;
  z-index: 2;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
}

.content h1 {
  font-size: 6rem;       /* Tamaño mayor */
  margin-bottom: 35px;   /* Más espacio debajo */
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: transparent;       /* Fondo transparente */
  color: #fff;
  border: 2px solid #fff;        /* Borde blanco */
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  background: #fff;
  color: #000;
}

/* Sección About oculta inicialmente */
.hidden {
  display: none;
}

#about {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

#about h1,
#about h2 {
  margin-bottom: 20px;
}

#about p {
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  font-size: 1.1rem;
  color: #333;
}

/* Redes sociales */
.social a {
  margin: 0 10px;
  color: #f04e23;
  transition: transform 0.2s;
}

.social a:hover {
  transform: scale(1.2);
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .content h1 {
    font-size: 2.2rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .social i {
    font-size: 2rem;
  }
}
