@charset "utf-8";

/*
Theme Name: quinta mourada
Author: Diego Maia
Author URI: www.diegomaia.dev
Description: Tema desenvolvido para o site "Quinta Mourada"
Version: 1.3
*/

@font-face {
  font-family: 'Mrs Eaves OT';
  src: url('./fonts/MrsEavesOT-Roman.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Mrs Eaves OT';
  src: url('./fonts/mrs-eaves-ot-bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

/* ============================================
   VARIÁVEIS CSS
   ============================================ */

:root {
  --color-primary-blue: #517DBB;
  --color-light-gray: #E8EAE8;
  --color-white: #FFFFFF;
  --color-dark-gray: #2D2D2D;
  --color-text-dark: #333333;
  --color-text-light: #666666;

  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;

  /* FONTES - Apenas Mrs Eaves OT */
  --font-family-primary: 'Mrs Eaves OT', serif;


}

/* ============================================
   RESET GLOBAL
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  margin: 0;
}

body {
  width: 100%;
  height: auto;
  margin: 0;
  list-style: none;
  font-family: var(--font-family-primary);
  color: var(--color-text-dark);
}

img {
  max-width: 100%;
  display: block;
}