/* ===========================
   FONTS
=========================== */
@font-face {
  font-family: 'Prida';
  src: url('fonts/prida.woff') format('woff');
}
@font-face {
  font-family: 'Chomsky';
  src: url('fonts/chomsky.woff2') format('woff2');
}
@font-face {
  font-family: 'Fancy';
  src: url('fonts/fancy.woff') format('woff');
}
@font-face {
  font-family: 'MidSaxon';
  src: url('fonts/midsaxon.woff') format('woff');
  font-weight:normal;
  font-style:normal;
}
@font-face {
  font-family: 'Aquifer';
  src: url('fonts/aquifer.woff') format('woff');
}

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

:root {
  --black: #000000;
  --plum: #4a2c4f;
  --burgundy: #6b0e1e;
  --navy: #0b1c42;
  --olive: #223315;
  --white: #ffffff;
  --nav-h: 72px;
}

/* ===========================
   BODY
=========================== */
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Prida', serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
/* === NAVIGATION === */
.navbar {
  background: #000;
  width: 100%;
  padding: .5rem 0;
  text-align: center;
  box-shadow: 0 8px 20px rgba(74,44,79,0.8); /* plum glow UNDER the bar */
  justify-content:center;
}
.navbar ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 300px; /* keeps nav compact */
}
.navbar a {
  font-family: 'Chomsky', serif;
  font-size: 1.75rem;
  text-decoration: none;
  color: white;
  transition: color .3s ease;
}
.navbar a.active {
  color: #4a2c4f; /* plum highlight */
}
.navbar a:hover {
  color: #4a2c4f;
}

/* ===========================
   ABOUT SECTION
=========================== */
.about-section {
  padding: 120px 20px 80px; /* space for nav and footer */
  max-width: 800px;
  text-align: center;
}

.about-logo-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
}

.about-logo-container::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--burgundy);
  filter: blur(100px) brightness(3);
  animation: glowCycle 16s infinite ease-in-out;
  z-index: 0;
}

.about-logo {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.about-tagline {
  font-size: 1.5rem;
  margin: 1rem 0 2rem;
  font-family: 'Aquifer', serif;
}

.about-section h2 {
  font-size: 5rem;
  font-family: 'Chomsky', serif;
  font-weight:normal;
  font-style:normal;
  margin-bottom: 1rem;
}

.about-section p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* ===========================
   FOOTER
=========================== */
footer {
  text-align: center;
  font-size: 1rem;
  font-family: 'Prida', serif;
  margin-top: auto;
  padding: 12px 0;
}
/* ===========================
   GLOW ANIMATION
=========================== */
@keyframes glowCycle {
  0%   { background: var(--plum);     transform: scale(1); }
  20%  { background: var(--burgundy); transform: scale(1.15);}
  50%  { background: var(--navy);     transform: scale(1); }
  75%  { background: var(--olive);    transform: scale(1.15);}
  100% { background: va
  r(--plum);     transform: scale(1); }
}

l