/* ===== FONTS ===== */
@font-face {
  font-family: 'Super Trend';
  src: url('Mio Sporty.ttf') format('truetype'),
       url('Super Trend.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Golden Varsity';
  src: url('Golden Varsity Outline.ttf') format('truetype');
  font-display: swap;
}

/* ===== BASE & LAYOUT ===== */
html, body { height: 100%; margin: 0; padding: 0; }
body {
  display: flex; flex-direction: column;
  font-family: 'Super Trend', Arial, sans-serif;
  background-color: #fff8e1; color: #333;
}

/* ===== SCROLLING BANNER (HOME ONLY) ===== */
.banner {
  width: 100%;
  position: sticky; top: 0;
  background-color: #0044cc; /* blue */
  color: #ffffff;            /* white text */
  overflow: hidden; white-space: nowrap;
  height: 45px; line-height: 45px;
  border-bottom: 2px solid #002a80;
  z-index: 10000;
  text-transform: uppercase;
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
}
.banner-text {
  display: inline-block;
  padding-left: 100%;
  animation: scrollBanner 15s linear infinite;
  font-family: 'Golden Varsity', Arial, sans-serif;
  font-weight: bold; font-size: 20px; letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}
@keyframes scrollBanner {
  from { transform: translateX(0%); }
  to   { transform: translateX(-100%); }
}

/* ===== HEADER ===== */
header {
  background-color: #b30000; color: #ffeb3b;
  padding: 20px; text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  z-index: 2;
}

/* ===== NAVBAR ===== */
nav ul {
  list-style: none; background-color: #ffcc00;
  padding: 10px 0; display: flex; justify-content: center; flex-wrap: wrap; margin: 0;
}
nav ul li { margin: 0 10px; }
nav ul li a {
  color: #b30000; text-decoration: none;
  padding: 8px 15px; border-radius: 8px;
  font-weight: bold; transition: all 0.3s ease;
}
nav ul li a:hover, nav ul li a.active {
  background-color: #b30000; color: #ffeb3b; transform: scale(1.05);
}

/* ===== MAIN ===== */
main { flex: 1; padding: 40px; text-align: center; z-index: 1; }

/* ===== FOOTER (sticky) ===== */
footer {
  background-color: #b30000; color: #ffeb3b; text-align: center;
  padding: 15px; margin-top: auto; font-size: 16px;
  box-shadow: 0 -3px 6px rgba(0,0,0,0.2); z-index: 1;
}

/* ===== HOME PAGE GIF BACKGROUND ===== */
#bg-gif {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background-image: url('https://i.postimg.cc/s2Fs2Gd1/bird-bg.gif');
  background-size: cover; background-position: center; background-repeat: no-repeat;
  z-index: -1; opacity: 0.9;
}
.content-box {
  background-color: rgba(255,255,255,0.85);
  display: inline-block; padding: 30px; border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 1; position: relative;
}

/* Optional: subtle overlay for readability on home */
.home-page::before {
  content: ""; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.15); z-index: 0; pointer-events: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 800px) {
  .banner { height: 40px; line-height: 40px; }
  .banner-text { font-size: 18px; }
}
@media (max-width: 600px) {
  nav ul { flex-direction: column; }
  nav ul li { margin: 5px 0; }
  main { padding: 20px; }
  .content-box { padding: 20px; }
}/* ===== "See what it's like" link ===== */
.see-link {
  margin-top: 8px;
}
.see-link a {
  color: #007bff;           /* blue text */
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
.see-link a:hover {
  color: #0056b3;           /* darker blue on hover */
  text-decoration: underline;
}
.tos-link {
  position: fixed;
  bottom: 10px;
  right: 15px;
  text-decoration: none;
  color: #ff0000;
  background: rgba(0, 0, 0, 0.1);
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: bold;
  z-index: 9999;
  transition: 0.2s;
}

.tos-link:hover {
  background: #ffeb3b;
  color: #b30000;
}
