﻿/* --------------------------------------------------
   GLOBAL RESET & BASE
-------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: #222;
  line-height: 1.6;
}

/* Global link styling */
a {
  color: #005bbb;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Utility containers */
.section {
  padding: 2.5rem 1.25rem;
}
.section-alt {
  background: #f7f7f7;
}
.section-inner {
  max-width: 900px;
  margin: 0 auto;
}
/* Section backgrounds */
.section {
  background: #f9f9f9;
  padding: 30px 20px;
}
.section-alt {
  background: #e6f2f2; /* light teal */
  padding: 30px 20px;
}

/* Headings with richer colors */
.page-article h1 {
  color: #004c4c; /* deep teal */
}
.page-article h2 {
  color: #800000; /* burgundy */
}

/* Table enhancements */
.schedule-table th {
  background: #191970; /* midnight blue */
  color: #fff;
}
.schedule-table tr:nth-child(even) {
  background: #f2f2f2;
}

/* Footer gradient */
.site-footer {
  background: linear-gradient(90deg, #004c4c, #008080);
  color: #fff;
}

/* --------------------------------------------------
   HEADER & NAVIGATION
-------------------------------------------------- */
.site-header {
  background: #003366;
  color: #fff;
  padding: 0.75rem 1rem;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: #fff;
  height: 3px;
  width: 28px;
  border-radius: 2px;
  position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-label span::before {
  top: -8px;
}A.nav-toggle-label span::after {
  top: 8px;
}

/* Desktop nav */
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
}

.site-nav a {
  color: #fff;
  font-weight: bold;
}

/* --------------------------------------------------
   MOBILE NAV
-------------------------------------------------- */
@media (max-width: 800px) {
  .nav-toggle-label {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #003366;
    display: none;
    padding: 1rem 0;
  }

  .site-nav ul {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .nav-toggle:checked + .nav-toggle-label + .site-nav {
    display: block;
  }
}

/* --------------------------------------------------
   HERO SECTION
-------------------------------------------------- */
.hero {
  background: url('/images/wellington-hero.jpg') center/cover no-repeat;
  padding: 4rem 1.25rem;
  color: #fff;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0,0,0,0.45);
  padding: 2rem;
  border-radius: 6px;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  margin-top: 1rem;
  font-size: 1.1rem;
}

/* --------------------------------------------------
   HEADINGS
-------------------------------------------------- */
h2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  color: #003366;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
.site-footer {
  background: #003366;
  color: #fff;
  padding: 2rem 1.25rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-nav ul {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-nav a {
  color: #fff;
}

/* --------------------------------------------------
   AFFILIATE NOTE
-------------------------------------------------- */
.affiliate-note {
  font-size: 0.9rem;
  color: #444;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* --------------------------------------------------
   IMAGES
-------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
  margin: 15px 0;
  border-radius: 4px;
}
