/* ========================================
   BASE.CSS — MarMon Pizza
   Estilos base del documento
   ======================================== */

html {
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  background: var(--bg-darkest);
  color: var(--text-light);
  overflow-x: hidden;
  max-width: 100vw;
}

/* ---- Utilidades de texto ---- */
.text-gold { color: var(--primary); }
.text-red { color: var(--accent-red); }

/* ---- Eyebrow (label superior) ---- */
.eyebrow {
  display: block;
  font-size: var(--text-small);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.eyebrow-dark { color: var(--bg-darkest); }

/* ---- Section Titles ---- */
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.section-title-dark { color: var(--bg-darkest); }

.section-body {
  font-size: var(--text-body);
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 38rem;
}
.section-body strong { color: var(--text-light); }

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Buttons ---- */
.btn-primary {
  background: var(--primary);
  color: var(--bg-darkest);
  padding: 1.25rem 2.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(250, 247, 240, 0.3);
  padding: 1.25rem 2.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ---- Container ---- */
.container-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
