/* ===========================
   Molen de Ster - Design v2
   Modern + Historical
   =========================== */

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

html {
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (max-width: 768px) {
  html { font-size: 16px; }
}

/* Design Tokens */
:root {
  /* Colors - Natural Palette */
  --forest: #2D4A3E;
  --forest-dark: #1F3329;
  --forest-light: #3D6352;
  --cream: #F7F4EF;
  --cream-dark: #EBE6DD;
  --white: #FFFFFF;
  --brown: #5C4033;
  --brown-light: #7A5A4A;
  --sage: #A8B5A0;
  --sage-light: #C5CFBF;
  --charcoal: #2C2C2C;
  --charcoal-light: #4A4A4A;
  --gold: #B8860B;
  --gold-light: #D4A84B;
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Old Standard TT', Georgia, serif;
  
  /* Font Sizes */
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;
  --text-6xl: 4.5rem;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  
  /* Layout */
  --container-max: 1400px;
  --container-narrow: 900px;
  --container-padding: 1.5rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.15);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

/* Body */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

@media (max-width: 768px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-xl); }
}

p {
  margin-bottom: var(--space-lg);
}

p:last-child {
  margin-bottom: 0;
}

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

a:hover {
  color: var(--forest-dark);
}

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

/* Accent Text */
.font-display { font-family: var(--font-display); }
.font-accent { 
  font-family: var(--font-accent); 
  font-style: italic;
}

.text-forest { color: var(--forest); }
.text-brown { color: var(--brown); }
.text-gold { color: var(--gold); }
.text-sage { color: var(--sage); }
.text-light { color: var(--charcoal-light); }

/* Quote Style */
.quote {
  font-family: var(--font-accent);
  font-size: var(--text-2xl);
  font-style: italic;
  color: var(--brown);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .quote { font-size: var(--text-3xl); }
}

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