/*
  BASE CSS (solo lo necesario para INDEX)
  — Tipografías, header, offcanvas, vídeo de fondo, estilos globales —
*/

/* -----------------------------------------
   VARIABLES
----------------------------------------- */
:root {
  --body-bg-color: #181717;
  --white-color: #ffffff;
  --primary-color: #E07A5F;
  --secondary-color: #F2CC8F;
  --dark-color: #000000;

  --body-font-family: 'Poppins', sans-serif;
  --heading-font-family: 'Unbounded', sans-serif;

  --h1-font-size: 62px;
  --h2-font-size: 36px;
  --p-font-size: 18px;

  --btn-font-size: 14px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;

  --link-hover-color: #F2CC8F;

  --font-weight-medium: 600;
}

/* -----------------------------------------
   BODY & TEXT
----------------------------------------- */
body {
  background-color: var(--body-bg-color);
  font-family: var(--body-font-family);
  overflow-x: hidden;
}

h1, h2 {
  font-family: var(--heading-font-family);
  font-weight: bold;
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  color: #ffffff;
}

h2 {
  font-size: var(--h2-font-size);
  color: #9a9a9a;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s;
}

a:hover {
  color: var(--link-hover-color);
}

/* -----------------------------------------
   HEADER
----------------------------------------- */
.site-header {
  position: absolute;
  z-index: 22;
  top: 0;
  right: 0;
  left: 0;
  padding-top: 30px;
  padding-bottom: 35px;
}

.site-header .container {
  background-color: rgba(0,0,0,0.65);
  border-radius: var(--border-radius-large);
  padding: 22px 35px;  /* más aire arriba y abajo */
  max-height: 70px;
}

.site-header-text {
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: bold;
}

.site-header-text span {
  margin-left: 10px;
}

/* -----------------------------------------
   ICONOS SOCIALES
----------------------------------------- */
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
}

.social-icon-link {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 36px;
  color: var(--white-color);
  text-align: center;
  font-size: var(--btn-font-size);
  border-radius: var(--border-radius-large);
  transition: 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* -----------------------------------------
   OFFCANVAS
----------------------------------------- */
.offcanvas {
  background-color: rgba(0,0,0,0.85);
  padding: 30px;
  border: none;
}

.offcanvas-header .btn-close {
  filter: brightness(0) invert(1);
}

.offcanvas-icon {
  font-size: 28px;
  color: var(--white-color);
  margin-left: 15px;
}

/* Menú interno del offcanvas */
.offcanvas nav ul {
  margin: 0;
  padding: 0;
}

.offcanvas nav ul li {
  list-style: none;
  display: block;
}

.offcanvas nav ul li a {
  color: var(--white-color);
  font-family: var(--heading-font-family);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 5px;
}

.offcanvas nav ul li a:hover,
.offcanvas nav ul li a.active {
  color: var(--link-hover-color);
}


/* -----------------------------------------
   VIDEO DE FONDO
----------------------------------------- */
.video-wrap {
  z-index: -100;
  position: fixed;
  top: 0;
  left: 0;
}

.custom-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
}

