/* ======== HEADER ======== */

html {
  scroll-behavior: smooth;
}

:root {
  --redken-pink: #ed0a7e;
}
.site-header {
  width: 100%;
  background: #0b0b10;
  color: #fff;
}

.hero {
  /*height: 90vh;*/
  height: 100vh;
  /*background: url('redken-hero-es.jpg') left/cover no-repeat;*/
  background: url("redken-hero.jpg") left/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  /*  background: rgba(0, 0, 0, 0.45);*/
}

.hero-content {
  position: relative;
  z-index: 2;
  /*max-width: 720px;
  padding: 0 20px;*/
  left: 50%;
  transform: translateX(-50%);
  text-align: left;
  width: 50%;
  padding-left: 20px;
  padding-right: 50px;
}

/*.hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  margin-bottom: 20px;

      font-size: 4rem;
    margin: 0;
    font-weight: 900;
    background: linear-gradient(90deg, #7bd1f7, #f5a8cb);
    -webkit-background-clip: text;
    color: transparent;

}*/

.hero p,
.hero span:not(h1 span) {
  font-size: 1.2rem;
  margin-bottom: 32px;
  color: #e9eaf0;
  color: black;
  /*background: #e4c3d3;*/
  margin: 0;
  position: relative;
  width: auto;
}

.hero-btn {
  display: inline-block;
  padding: 14px ;
  /*padding: 14px 26px;*/
  /*background: #fff;
  color: #000;*/
  background: #000;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-top: 60px;
  position: relative;
  /*display: block;*/
  width: 182px;
}

.hero-btn:hover {
  background: #ed0a7e;
  color: #fff;
}

/* ======== MAP SECTION ======== */
#map-section {
  position: relative;
  height: 100vh;
}

/* ======== FOOTER ======== */
.site-footer {
  background: #0b0b10;
  color: #aaa;
  text-align: center;
  padding: 50px 20px;
  border-top: 1px solid #1f1f26;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.footer-logo {
  width: 140px;
  opacity: 0.85;
  margin-bottom: 10px;
}
.logo {
  width: 20vw;
  margin-bottom: 10px;
  /*    background: #e4c3d3;*/
}
.redken-title {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 90px);
  text-transform: uppercase;
  line-height: 0.9;
  margin: 0px 0px 20px;
  /*text-align: left;*/
}

.redken-title span {
  display: inline-block;
  position: relative;
  padding: 0;
  color: transparent;
  font-weight: 900;
  background-image: linear-gradient(90deg, #aec8ff 0%, #ffc4d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.redken-title span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: black; /* banda negra debajo */
  z-index: -1;
}

.footer-redken {
  background: #000;
  color: #fff;
  padding: 60px 6vw;
  font-family: "Helvetica Neue", Arial, sans-serif;
  display: flex;
  align-items: stretch; /* ambas columnas con misma altura */
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* COLUMNA IZQUIERDA */
.footer-info {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-logo {
  width: 180px;
  margin-bottom: 40px;
}

.footer-social h4,
.footer-manufacturer h4 {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.footer-manufacturer p {
  margin: 4px 0;
}

.footer-legal {
  font-size: 13px;
  margin-top: 50px;
  line-height: 1.6;
}

.footer-legal a {
  color: #fff;
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

/* COLUMNA DERECHA: VIDEO */
.footer-video {
  flex: 1 1 20%;
  display: flex;
  justify-content: flex-end;
}

.footer-video video {
  width: 100%;
  height: 100%;
  max-width: 520px;
  border-radius: 0;
  object-fit: cover;
}

/* Enlaces normales (correo, políticas, etc.) */
.footer-info a {
  color: #fff;
  text-decoration: none;
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

.footer-info a:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--redken-pink);
}

/* Iconos redes (SVG) */
.social-icons a svg {
  color: #fff;
  transition: all 0.3s ease;
}

.social-icons a:hover svg {
  color: var(--redken-pink);
  transform: scale(1.1);
}
/* Responsive */

.video-controls {
  position: absolute;
  /*  bottom: 15px;*/
  right: 95px;
  margin-top: 10px;
  z-index: 5;
}

.video-controls button {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #fff;
  color: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-controls button:hover {
  background: #ed0a7e;
  border-color: #ed0a7e;
}

@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-video {
    order: -1;
    justify-content: center;
  }

  .footer-video video {
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
  }

  .footer-social,
  .footer-manufacturer {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  #map-section {
    height: 95vh;
  }
  .footer-redken {
    padding: 0px 6vw;
  }
  .footer-info {
    text-align: left;
  }
  .social-icons {
    /*    justify-content: center;*/
  }
  .hero {
    align-items: end;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    left: 0;
    transform: none;
    text-align: left;
    width: 100%;
    padding-left: 20px;
    padding-right: 50px;
    padding-bottom: 50px;
  }
}

/* ============================================
   HEADER 
============================================ */
.hero {
  min-height: 100vh; /* ocupa pantalla completa si hay espacio */
  height: auto; /* pero permite crecer */
  padding-top: 100px; /* añade espacio respirable */
  padding-bottom: 100px;
  display: flex;
  align-items: center;
}

/* Cuando la pantalla es BAJA → más padding arriba/abajo */
@media (max-height: 750px) {
  .hero {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}

@media (max-height: 650px) {
  .hero {
    padding-top: 200px;
    padding-bottom: 200px;
  }
}

/* ====== GLOSS ====== */
.gloss {
  font-weight: 700;
  text-transform: uppercase;

  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;

  /* ====== SOMBRA ====== */
  filter: drop-shadow(0px 3px 1px rgba(0, 0, 0, 0.5)) !important;
}

/* ====== PROTEIN ====== */
.protein {
  font-weight: 600;
  text-transform: uppercase;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* ====== SOMBRA ====== */
  filter: drop-shadow(0px 3px 1px rgba(0, 0, 0, 0.5)) !important;
}
