/* --- Variables --- */
:root {
  --e-white: #fafafa;
  --e-cream: #bb9f7a;
  --e-black: #212121;
  --e-red: #891c21;
  --border-light: #e6e6e6;
  --border-extra-light: #eee;
  --radius: 10px;
  --radius-lg: 14px;
}

/* --- Base Styles --- */
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--e-white);
  color: var(--e-black);
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

h1, h2 {
  font-family: 'Sansita', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--e-cream);
}

h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--e-black);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.container {
  width: min(1000px, 92%);
  margin: 0 auto;
}

/* --- Header & Brand --- */
header {
  border-bottom: 1px solid var(--border-light);
  background: #ffffff;
}

.brand {
  display: flex;
  justify-content: center; /* Centers the logo */
  align-items: center;
  padding: 16px 0;
}

.logo-img {
  height: 270px; /* Increased slightly to serve as the main header */
  width: auto;
  display: block;
}

/* --- Navigation --- */
nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centers the navigation links */
  gap: 10px;
  padding: 0 0 16px 0;
}

nav a {
  text-decoration: none;
  color: var(--e-black);
  border: 1px solid #ddd;
  padding: 8px 12px;
  border-radius: 8px;
  background: #fff;
  transition: all 0.2s ease;
  font-weight: 700; /* Makes nav links bold Inter */
}

nav a[aria-current="page"] {
  border-color: var(--e-cream);
  color: var(--e-cream);
}

http://googleusercontent.com/immersive_entry_chip/0
/* --- Layout & Components --- */
main { padding: 18px 0 28px 0; }

.section {
  border: 1px solid var(--border-extra-light);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin: 14px 0;
}

.grid {
  display: grid;
  gap: 12px;
}

.card {
  border: 1px solid var(--border-extra-light);
  border-radius: var(--radius-lg);
  padding: 14px;
  background: #fff;
}

.muted { color: #444; }

/* --- Forms & Interactive --- */
button, input, textarea, select {
  font: inherit;
}

.btn {
  display: inline-block;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  padding: 10px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
}

.btn.secondary {
  background: #fff;
  color: #111;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

label { 
  display: block; 
  margin: 10px 0 6px; 
  font-weight: 600; 
}

input, textarea, select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  box-sizing: border-box; /* Prevents overflow */
}

textarea { min-height: 110px; resize: vertical; }

.inline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.inline > * { flex: 1 1 220px; }

/* --- Feedback UI --- */
.notice {
  padding: 10px 12px;
  border-radius: var(--radius);
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  margin-top: 12px;
}

.notice.good { border-color: #bcd8bc; background: #eef8ee; }
.notice.bad { border-color: #f0b4b4; background: #fff0f0; }

/* --- Footer --- */
footer {
  border-top: 1px solid var(--border-light);
  padding: 14px 0;
  color: #444;
  font-size: 0.95rem;
}

/* --- Responsive Adjustments --- */
@media (min-width: 720px) {
  .grid.two { grid-template-columns: repeat(2, 1fr); }
  .grid.three { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .logo-img, .site-logo {
    height: 140px;
    margin: 5px auto;
  }
  .brand {
    flex-direction: column;
    text-align: center;
  }
}







