/* base.css */

/* ===== IMPORT FONTS ===== */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== VARIABLES ===== */
:root {
  --nav-color: #fcf5ec;
  --section-landing: #fde2e4;
  --section-about: #e2f0cb;
  --section-skills: #fff1c1;
  --section-projects: #333333;
  --section-more: #333333;
  --section-contact: #4ecdc4;

  --default-text: #333;
  --light-heading: #111111;
  --dark-section-text: #f5f5f5;
  --accent-text: #4ecdc4;
  --accent-hover: #acacac;
}

/* ===== GLOBAL ===== */
body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--default-text);
}

h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  line-height: 1.5;
}

a {
  text-decoration: none;
}
