/* ===== FONTS ===== */
@font-face {
  font-family: "Helvetica Neue";
  src: url("../font/HelveticaNeueBlack.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../font/HelveticaNeueHeavy.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../font/HelveticaNeueMedium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../font/HelveticaNeueBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../font/HelveticaNeueLight.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}


/* ===== VARIABLES ===== */
:root {
  --bg: #f9f9f9;
  --text: #000000;
  --accent: #7b5ba1;
  --light-gray: #e5e5e5;
}

/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 300; /* default to light*/
  font-size: 16px;
  line-height: 1.6;
  max-width: 950px;
  margin: 0 auto;
  padding: 2rem;
}

/* ===== HEADER ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: lowercase;
  font-size: 0.9rem;
  margin-bottom: 4rem;
}

header .logo {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700; /* Heavy */
  letter-spacing: 0.5px;
}

header a {
  text-decoration: none;
  color: var(--text);
  margin-left: 2rem;
  transition: color 0.3s ease;
}

header a:hover {
  color: var(--accent);
}

header .contact-link {
  color: var(--text);
}

header .accent {
  color: var(--accent);
}

/* ===== SECTIONS ===== */
section {
  margin-bottom: 5rem;
}

h1, h2, h3 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700; /* Heavy */
}

h1 {
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: 1.6rem;
  font-weight: 500; /* Medium */
  margin-bottom: 1rem;
}

p {
  color: #333;
  margin-bottom: 1rem;
}

/* ===== LINKS ===== */
a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  text-decoration: underline;
  color: var(--accent);
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--light-gray);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: #666;
  margin-top: 5rem;
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

footer a {
  display: inline-block;
  margin-top: 0.3rem;
}

.footer-note {
  font-size: 0.8rem;
  color: #777;
}

/* ===== CUSTOM LISTS ===== */
.custom-list {
  list-style-type: none;
  padding-left: 1em;
}

.custom-list li::before {
  content: "> ";
  margin-right: 0.3em;
  color: var(--accent);
}
