* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

/* BASE */
body {
  color: #dad8d8;
  background: #000000;
  line-height: 1;
}

/* HEADER */
.header {  
  border-bottom: 0.5px solid #3b3a3a;
}

.menu {
  max-width: 1100px;
  margin: auto;
  padding: 1.8rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 3.5rem;
}

.menu a {
  text-decoration: none;
  color: #dad8d8;
  font-size: 0.9rem;
}

.name {
  font-size: 0.95rem;
  font-weight: 500;
}


/* ───────────────────────────── */
/* BOTONES LATERALES (ESTILO WIX) */
/* ───────────────────────────── */

.side-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  z-index: 9999;
  pointer-events: auto;
}

/* IZQUIERDA */
.side-nav.left {
  left: 30px;
}

/* DERECHA */
.side-nav.right {
  right: 30px;
}

/* BOTÓN INDIVIDUAL (ESTILO BASE) */
.side-nav a {
  font-size: 0.65rem;
  text-decoration: none;
  color: #dad8d8;

  writing-mode: vertical-rl;

  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  transition: transform 0.3s ease, opacity 0.2s ease;
  will-change: transform;
  
}


/*  ORIENTACIÓN POR LADO */

/* Izquierda: 180° */
.side-nav.left a {
  transform: rotate(180deg);
}

/* Derecha: 0° */
.side-nav.right a {
  transform: rotate(360deg);
}


/* SECTIONS */
.section {
  max-width: 750px;
  margin: 1rem auto;
  padding: 1rem 1rem;
  text-align: center;
}

.section h2 {
  font-weight: 400;
  margin-bottom: 1.5rem;
}

/* WORK */
.work p {
  padding: 0.8rem 0;
  font-size: 0.9rem;
}

/* CONTACT */
#contact a {
  color: #dad8d8;
  text-decoration: none;
}

/* FOOTER */
.footer {
  border-top:  0.5px solid #3b3a3a;
;
  padding: 1rem 1rem;
  font-size: 0.55rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-contact {
  text-decoration: none;
  color: #dad8d8;
  font-weight: 400;
}

.footer-contact:hover {
  opacity: 0.6;
}

.footer-copy {
  color: #dad8d8;
}


/* HOVER */
.side-nav a:hover {
  opacity: 0.5;
}

/* ACTIVO */
.side-nav a.active {
  font-weight: 500;
}

/* VIDEO */


.video-hero {
  position: relative;
  width: 100%;
  flex: 1;
  height: calc(100vh - 140px);

  overflow: hidden;
}

.video-hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Contenido sobre el vídeo */
.video-hero .content {
  position: relative;
  z-index: 2;
  height: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.video-hero::after {
  pointer-events: none;
}