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

body {
  font-family: 'Montserrat', sans-serif;
  color: #111;
  background: #fff;
}

/* IDIOMAS */
.lang {
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 18px 0;
}

.lang a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  letter-spacing: 1px;
}

/* HERO */
.hero {
  height: 100vh;
  background-image: url("/img/hero.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 28%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  color: #fff;
}

.hero-text h1 {
  font-size: 42px;
  letter-spacing: 4px;
}

.hero-text p {
  font-size: 14px;
  letter-spacing: 3px;
  margin-top: 6px;
}

/* BIO */
.bio {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.7;
}

/* SHOWREEL */
.showreel {
  max-width: 900px;
  margin: 100px auto;
  padding: 0 20px;
}

.showreel h2 {
  margin-bottom: 24px;
  font-weight: 500;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========================= */
/* CARRUSEL DE FOTOS (CLAVE) */
/* ========================= */

.photos {
  max-width: 1100px;
  margin: 120px auto;
  padding: 0 20px;
}

.photos h2 {
  margin-bottom: 24px;
  font-weight: 500;
}

.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 520px; /* CONTROL REAL */
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.carousel-track img {
  min-width: 100%;
  height: 100%;
  object-fit: contain; /* CLAVE: NO GIGANTE */
  background: #f2f2f2;
}

/* Flechas */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 28px;
  padding: 10px 14px;
  cursor: pointer;
  z-index: 2;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .carousel {
    height: 360px;
  }
}

