@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;1,300&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #d4a12c;
  --gold-dim: rgba(212,161,44,0.5);
  --white: #e8e4dc;
  --white-70: rgba(232,228,220,0.7);
  --white-50: rgba(232,228,220,0.5);
  --white-35: rgba(232,228,220,0.35);
  --white-20: rgba(232,228,220,0.2);
  --white-10: rgba(232,228,220,0.1);
  --white-06: rgba(232,228,220,0.06);
  --bg: #0a0a0a;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html, body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  min-height: 100vh;
}

/* ─── FONDS DE PAGE ─── */
body {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

body.page-home      { background-image: url('assets/bg-home.webp'); }
body.page-creations { background-image: url('assets/bg-creations.jpg'); }
body.page-covers    { background-image: url('assets/bg-covers.webp'); }
body.page-dates     { background-image: url('assets/bg-dates.webp'); }
body.page-contact   { background-image: url('assets/bg-contact.webp'); }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ─── HEADER ─── */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 40px;
  border-bottom: 1px solid var(--white-10);
  position: relative;
  z-index: 10;
}

.logo {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.18em;
  color: var(--white);
  text-decoration: none;
  line-height: 1;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-50);
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover,
nav a.active {
  color: var(--white);
}

/* ─── MAIN ─── */
main {
  position: relative;
  z-index: 1;
}

/* ─── TICKER ─── */
.ticker {
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

.ticker-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(232,228,220,0.25);
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker 24s linear infinite;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.ticker-date {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--white);
}

.ticker-info {
  font-size: 12px;
  color: var(--white-50);
  letter-spacing: 0.06em;
}

.ticker-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--white-20);
  flex-shrink: 0;
}

/* ─── SECTION LABEL ─── */
.label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white-35);
  margin-bottom: 16px;
  display: block;
}

/* ─── DIVIDER ─── */
.divider {
  width: 32px;
  height: 1px;
  background: var(--white-20);
  margin-bottom: 28px;
}

/* ─── CTA LINKS ─── */
.cta-row {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.cta-link {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-50);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color 0.2s;
}

.cta-link:hover { color: var(--white); }
.cta-link.gold { color: var(--gold-dim); }
.cta-link.gold:hover { color: var(--gold); }

.cta-sep {
  width: 1px;
  height: 14px;
  background: var(--white-20);
}

/* ─── BADGE ─── */
.badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3px 10px;
}

.badge-gold { background: var(--gold); color: var(--bg); }
.badge-outline { border: 1px solid var(--white-20); color: var(--white-50); }
