/*
  base.css
  ─────────────────────────────────────────────────────────────
  Reset general y estilos base compartidos por todo el sitio.
  También incluye los botones y elementos de sección reutilizables.
*/

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--negro);
  color: var(--blanco);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ── Efecto de ruido de fondo ── */
.noise-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

/* ── Secciones ── */
section {
  padding: 7rem 2rem;
  position: relative;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Etiqueta de sección ── */
.section-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--dorado);
}

/* ── Título de sección ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--blanco);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: normal;
  color: var(--dorado);
}

/* ── Botones ── */
.btn-primary {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--negro);
  background: var(--dorado);
  border: none;
  padding: 0.9rem 2.2rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover {
  background: var(--dorado-claro);
  transform: translateY(-2px);
}

.btn-secondary {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dorado);
  background: transparent;
  border: 1px solid rgba(212,160,23,0.5);
  padding: 0.9rem 2.2rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: all var(--transition);
}
.btn-secondary:hover {
  background: rgba(212,160,23,0.1);
  border-color: var(--dorado);
  transform: translateY(-2px);
}

/* ── Tarjeta de horario (compartida entre Bar y Pizzería) ── */
.horario-card {
  background: var(--negro-soft);
  border: 1px solid rgba(212,160,23,0.15);
  padding: 2rem;
  margin-top: 2rem;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.horario-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: 1.2rem;
}

.horario-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.horario-row:last-of-type {
  border-bottom: none;
}

.horario-day {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--blanco);
}
.horario-time {
  font-size: 0.85rem;
  color: var(--gris);
}
