/* =========================
   BASE | Golden Global
   ========================= */

html, body{
  height: 100%;
}

body{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: transparent; /* deja ver el video fondo */
  color: var(--gge-text);
  margin: 0;
}

/* Links */
a{
  text-decoration: none;
  color: inherit;
}

/* Contenido SIEMPRE encima del fondo */
.wb-header,
#intro-video,
main{
  position: relative;
  z-index: 1;
}

/* =========================
   Layout general
   ========================= */
main{
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.section{
  margin-top: 20px;
}

.section h1{
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: var(--gge-gold-soft);
}

/* Logo central */
.logo-central{
  text-align: center;
  margin-top: 30px;
}

.logo-central img{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid var(--gge-gold);
  object-fit: cover;
}

/* =========================
   Video fondo global
   (esto debe existir en el HTML)
   ========================= */
.video-bg{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.video-bg video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.75); /* antes 0.25 */
}

.video-bg::after{
  content:"";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.10); /* antes 0.35 */
}

