/**
 * Heaven Four - Design Variables
 * [comfort zone] inspired color palette
 */

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

:root {
  /* Brand Colors */
  --h4-peach: #E3967E;
  --h4-peach-dark: #D4856D;
  --h4-peach-light: #F5E6E2;
  --h4-cream: #FAF8F5;
  --h4-warm: #F7F5F3;
  
  /* Text Colors */
  --h4-text: #2D2D2D;
  --h4-text-light: #6A6A6A;
  --h4-white: #FFFFFF;
  
  /* Typography */
  --h4-font-serif: 'Cormorant Garamond', Georgia, serif;
  --h4-font-sans: 'Inter', -apple-system, sans-serif;
  
  /* Spacing */
  --h4-header-height: 80px;
  --h4-header-height-mobile: 70px;
  
  /* Transitions */
  --h4-transition: all 0.25s ease;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--h4-font-sans);
  background-color: var(--h4-white);
  color: var(--h4-text);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, .site-title {
  font-family: var(--h4-font-serif);
  font-weight: 400;
  color: var(--h4-text);
  letter-spacing: 0.01em;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Links */
a {
  color: var(--h4-peach-dark);
  text-decoration: none;
  transition: var(--h4-transition);
}

a:hover {
  color: var(--h4-peach);
}
