/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f4f4f4;
  overflow-x: hidden;
  font-size: 200%; /* Make all text bigger */
}

/* Header / Ribbon Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #222;
  z-index: 1000;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.brand {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.nav ul {
  list-style: none;
  display: flex;
}

.nav ul li {
  margin-left: 1.5rem;
}

.nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 50%; /* Ribbon menu reduced by 50% */
  transition: color 0.3s;
}

.nav ul li a:hover {
  color: #ffcc00;
}

/* Section Base */
.section {
  height: 100vh; /* Fullscreen sections */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.section.alt {
  background: #fff;
}

/* Hero (About) */
.hero-with-image {
  position: relative;
  background: #111;
  color: #fff;
  text-align: center;
}

.hero-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-with-image canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Grid & Cards */
.grid {
  display: grid;
  gap: 2rem;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: #fafafa;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Buttons */
.btn {
  background: #222;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 80%;
}

.btn:hover {
  background: #444;
}

/* Forms */
.form-row {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.form-row input,
.form-row textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 90%;
}

.form-status {
  margin-top: 0.5rem;
  font-size: 80%;
  color: green;
}

/* Announcement list */
.announce-list {
  list-style: none;
  padding: 0;
}

.announce-list li {
  margin-bottom: 1rem;
}

/* Contact email highlight */
#contact a {
  color: rgb(0, 4, 255);
  font-weight: bold;
}

/* Footer */
.site-footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}
