/*
 * BASE STYLES - Le First (French Tacos)
 * Neon sign on dark brick wall aesthetic
 */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;

  /* Dark brick wall - very subtle texture */
  background-color: #110d0e;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent 0px, transparent 28px,
      rgba(0, 0, 0, 0.15) 28px, rgba(0, 0, 0, 0.15) 30px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0px, transparent 58px,
      rgba(0, 0, 0, 0.08) 58px, rgba(0, 0, 0, 0.08) 60px
    );
  background-size: 60px 30px;
}

/* Subtle ambient vignette - dark edges */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(var(--purple-rgb), 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h1 {
  font-size: clamp(2.2rem, 8vw, 3.5rem);
  margin-bottom: var(--space-8);
}

h2 {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  margin-bottom: var(--space-6);
  color: var(--primary);
  font-style: italic;
}

h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }

p { margin-bottom: var(--space-4); opacity: 0.9; }

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover { opacity: 1; color: var(--primary); }

ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* === FORMS === */
input, textarea, select, button { font-family: inherit; font-size: inherit; }

button {
  cursor: pointer;
  background: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
}

input, textarea, select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--color-text);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  background-color: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* === UTILITIES === */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
