/*
 * Minimal Style - Base Reset
 * Ultra-clean foundation with no decorations
 * Prefix: fl-min-*
 * Colors: #DC2626 (primary), #FFFFFF (bg), #111111 (text), #999999 (muted)
 */

/* === Reset & Foundation === */

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: #111111;
  background-color: #FFFFFF;
}

/* === Typography === */

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  line-height: 1.2;
  color: #111111;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 400;
}

p {
  font-weight: 300;
  color: #111111;
}

/* === Links === */

a {
  color: #DC2626;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

/* === Lists === */

ul, ol {
  list-style: none;
}

/* === Images === */

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === Base Containers === */

.fl-min-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .fl-min-container {
    padding: 0 48px;
  }
}

@media (min-width: 1024px) {
  .fl-min-container {
    padding: 0 80px;
  }
}

/* === Section Spacing === */

.fl-min-section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .fl-min-section {
    padding: 120px 0;
  }
}

@media (min-width: 1024px) {
  .fl-min-section {
    padding: 160px 0;
  }
}

/* === Utility: Thin Divider === */

.fl-min-divider {
  width: 100%;
  height: 1px;
  background-color: #E5E5E5;
  border: none;
}

/* === Utility: Muted Text === */

.fl-min-muted {
  color: #999999;
}

/* === Utility: Primary Color === */

.fl-min-primary {
  color: #DC2626;
}

/* === Utility: Text Align === */

.fl-min-text-left {
  text-align: left;
}

.fl-min-text-center {
  text-align: center;
}

.fl-min-text-right {
  text-align: right;
}

/* === Utility: Whitespace === */

.fl-min-whitespace {
  padding: 40px 0;
}

@media (min-width: 768px) {
  .fl-min-whitespace {
    padding: 64px 0;
  }
}

/* === Button Base === */

.fl-min-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #111111;
  border-radius: 0;
  background: transparent;
  color: #111111;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fl-min-btn:hover {
  background: #111111;
  color: #FFFFFF;
}

.fl-min-btn--primary {
  border-color: #DC2626;
  color: #DC2626;
}

.fl-min-btn--primary:hover {
  background: #DC2626;
  color: #FFFFFF;
}

/* === Badge Base === */

.fl-min-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999999;
  border: 1px solid #E5E5E5;
}
