/* ============================================================
   BROTHERR — Design Tokens
   Pennsylvania countryside palette: sky blues + farm greens
   ============================================================ */

:root {
  --sky-light:   #ccd6dd;   /* pale overcast sky — primary text, headings */
  --sky-mid:     #5274a1;   /* Blue Mountain blue — nav links, accents */
  --sky-bright:  #2596be;   /* summer sky — hover states */
  --night:       #0e1a26;   /* deep PA night — page background */
}

/* ============================================================
   Font
   ============================================================ */

@font-face {
  font-family: 'BiroScript';
  src: url('../fonts/Biro_Script_reduced.otf') format('opentype'),
       url('../fonts/Biro_Script_reduced.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   Reset
   ============================================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============================================================
   Base
   ============================================================ */

body {
  font-family: Georgia, serif;
  background: var(--night);
  color: var(--sky-light);
}

/* ============================================================
   Nav
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 1.4rem 2rem;
}

.nav a {
  font-family: Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky-mid);
  opacity: 1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--sky-light);
}

/* ============================================================
   Interior pages (Bio, Tour)
   ============================================================ */

.page {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.page-label {
  font-family: 'BiroScript', cursive;
  font-size: clamp(1.6rem, 5vw, 4rem);
  font-weight: normal;
  letter-spacing: 0.08em;
  color: var(--sky-light);
  text-shadow: 0 2px 40px rgba(37, 150, 190, 0.22), 0 1px 12px rgba(10, 22, 42, 0.5);
  margin-bottom: 2rem;
}
