/* Note: 'ZT Neue Ralewe' and 'Snell Roundhand' are custom fonts from the design. 
   They need to be loaded via @font-face for proper display. */
:root {
  --color-primary: #dfbea8;
  --color-text-dark: #000000;
  --color-text-light: #ffffff;
  --color-background: #fffdfb;
  --font-raleway: 'Raleway', sans-serif;
  --font-zt-neue: 'ZT Neue Ralewe', sans-serif;
  --font-snell: 'Snell Roundhand', cursive;
  --font-urbanist: 'Urbanist', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--color-background);
  color: var(--color-text-dark);
  font-family: var(--font-raleway);
  margin: 0;
  overflow-x: hidden;
}

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

section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}