/* Variables and Resets */
:root {
  --rust-orange: #C75C2A;
  --washed-teal: #5A8D8A;
  --archive-beige: #D6CBB3;
  --graphite-gray: #4C4C4C;
  --folkloric-nickel: #A8A9AD;
  --font-main: 'Alata', sans-serif;
}

body {
  margin: 0;
  font-family:'Inter', sans-serif;
  background-color: #5A8D8A; 
  color: #4C4C4C;
  background-image: url('https://ai-bureau.neocities.org/parchement.png'); 
  background-size: cover;
}

header {
  background-color: #5A8D8A;
  background-image: url('https://ai-bureau.neocities.org/green%20vellum.png');
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 0.2rem;
  padding-bottom: 0.5rem;
  text-align: center;
  margin: 0;
}

.bureau-title {
  font-size: 6rem;
  color: #C75C2A;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem; /* reduces space between h1 and h2 */
}

.bureau-subtitle {
  font-size: 3rem;
  color: #C75C2A;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0.4rem; /* add a little breathing room before nav */
}


.bureau-title, .bureau-subtitle {
  font-family: 'Inter', sans-serif;
  color: #C75C2A;
  background-image: url('vellum-grain.png'); /* Upload & link to match header style */
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.96;
  
}

nav {
  background-image: url('parchement.png'); /* upload this if you haven't already */
  background-size: cover;
  padding: 0.5rem;
  text-align: center;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

nav a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #26322F; /* dark vellum tone */
  text-decoration: none;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  position: relative;
  padding: 0.25rem;
}

/* Hover effect: underline like a memo selection */
nav a:hover::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #C75C2A; /* warm accent – matches headers */
  transition: width 0.2s ease-in-out;
}

/* Optional: add focus effect for accessibility */
nav a:focus::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #C75C2A;
}

main {
  background-color: #D6CBB3;
  padding: 3rem;
  text-align: center;
}

h2 {
  font-size: 2rem;
  color:#5A8D8A;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

p {
  font-family: serif;
  font-size: 1.1rem;
  color:  #4C4C4C;
}

/* Icons */
.icons {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
}

.brain-stamp, .rabbit-stamp {
  width: 60px;
  height: 60px;
  border: 2px dashed #C75C2A;
  border-radius: 50%;
  background: url('brain-icon.png') center/contain no-repeat; /* Replace with actual asset */
}

.rabbit-stamp {
  background: url('rabbit-icon.png') center/contain no-repeat;
  border-color: #5A8D8A;
}

/* Toggle */
.document-toggle .doc-icon {
  width: 50px;
  height: 60px;
  background: url('document-icon.png') center/contain no-repeat;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 28px;
  margin-top: 0.5rem;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #5A8D8A;
  border-radius: 28px;
}

.slider::before {
  position: absolute;
  content: "";
  height: 20px; width: 20px;
  left: 5px;
  bottom: 4px;
  background-color: #C75C2A;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider::before {
  transform: translateX(28px);
}

/* Footer */
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #D6CBB3;
  padding: 1.5rem;
  gap: 1rem;
}

.miss-metric {
  font-size: 1rem;
  color:  #5A8D8A;
  letter-spacing: 0.1em;
}
