@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

@import 'variables.css';
@import 'reset.css';
@import 'typography.css';
@import 'layout.css';
@import 'components.css';
@import 'animations.css';

/* ─── Hero section ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1f0e 50%, #1a1a1a 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--container-padding);
}

.hero-title {
  margin: 1rem 0;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── Stats section ──────────────────────────────────────── */
.stats-section {
  background: var(--color-bg-card);
}

/* ─── Menu section ───────────────────────────────────────── */
.menu-section {
  background: var(--color-bg);
  padding-block: var(--space-3xl);
}

.menu-section .section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* ─── Roaster section ────────────────────────────────────── */
.roaster-section {
  background: var(--color-roaster-bg);
  overflow: hidden;
}

/* ─── Process section ────────────────────────────────────── */
.process-section {
  background: var(--color-bg);
}

.process-section .section-header {
  text-align: center;
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-xl);
}

/* ─── Gallery section ────────────────────────────────────── */
.gallery-section {
  background: var(--color-bg);
  padding-block: var(--space-3xl);
}

.gallery-section .section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* ─── Info section ───────────────────────────────────────── */
.info-section {
  background: #111;
  padding-block: var(--space-3xl);
}

.info-section .section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
