/* Global resets and typography */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.4;
  color: #1e293b;
  background: #f8fafc;
}

a {
  color: #007d3b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
  height: 70px;
}

header a {
  font-weight: 600;
  font-size: 1.1rem;
  margin-right: 1rem;
}

.header-content {
  max-width: 960px;
  margin: 0.2rem auto;
}

.header-right {
  width: 32px;
}

a.current-page {
  text-decoration: underline;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.menu-right {
  width: 140px;
  text-align: right;
  margin-right: 0px;
}

.menu-bars {
  display: none;
}

@media (max-width: 960px) {
  nav a {
    padding: 0.3rem 0.3rem 0.3rem 1.5rem;
    text-align: right;
    text-decoration: none;
    display: block;
    font-size: 1.3rem;
  }
  nav {
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    top: 85px;
    right: 0px;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 140, 70, 0.2);
  }
  .menu-bars {
    display: inherit;
  }
  .nav-hide {
    display: none;
  }
  .nav-show {
    display: block;
  }
  .header-right {
    width: 110px;
  }
}
/* Main content */
main {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 1rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #007d3b;
}

h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #007d3b;
}

h3 {
  color: #007d3b;
}

img {
  max-width: 100%;
  border-radius: 0.5rem;
}

/* Cards */
.card {
  background: white;
  border-radius: 0.2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  margin-bottom: 1rem;
}

.card h3 {
  margin-top: 0;
}

/* Badges */
.badge {
  display: inline-block;
  background: #d1fae5;
  color: #065f46;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
}

/* Navigation */
.prev-next {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.prev-next-prev-item {
  flex-basis: 40%;
  margin: 0px 5px;
}

.prev-next-next-item {
  flex-basis: 40%;
  margin: 0px 5px;
  text-align: right;
}

.prev-next-news-item {
  flex-basis: 20%;
  margin: 0px 5px;
  text-align: center;
}

/* Footer */
.footer-content {
  max-width: 960px;
  margin: 0.2rem auto;
}

footer {
  padding: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: #475569;
  background: #f1f5f9;
}

/* Responsive grid */
.grid {
  display: grid;
  column-gap: 1rem;
}

@media (min-width: 640px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.columns {
  column-count: auto;
  column-width: 320px;
}

.columns3 {
  column-count: auto;
  column-width: 300px;
}

/* Hero styles */
.hero-section {
  width: 100%;
  height: 60vh;
  min-height: 500px;
  background: url("/assets/images/gallery/gallery-2024-06-03.jpg") no-repeat center center/cover;
  background-color: rgba(0, 0, 0, 0.25);
  background-blend-mode: darken;
  display: flex;
  justify-content: space-between;
  text-align: center;
  flex-direction: column;
  color: #fff;
  position: relative;
  margin-bottom: 1rem;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  text-shadow: 0px 0px 0.5rem black;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 600;
  color: white;
}

.hero-strap {
  display: block;
  font-size: 1.4rem;
  margin: 10px 0 0px;
  font-weight: 300;
}

.hero-strap2 {
  display: block;
  font-size: 1.1rem;
  margin: 0px 0 20px;
  font-weight: 300;
}

.hero-spacer-line {
  display: block;
}

.hero-credit-line {
  display: block;
  text-align: right;
  height: 2rem;
}

.hero-credit {
  display: inline;
  background-color: rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
  margin: 0.4rem;
  font-weight: 300;
  padding: 0.4rem;
  border-radius: 0.4rem;
  text-align: right;
}

.main-content {
  padding: 50px 5%;
  max-width: 1200px;
  margin: auto;
}

.sponsor-image {
  display: block;
  max-width: 80%;
  margin: auto;
}

/* Heading styles for lists */
.heading-text-colour {
  color: #1e293b;
}

/* Styles for those long lists */
ul {
  margin-top: 0;
  line-height: 1.1;
}

ol {
  margin-top: 0;
  line-height: 1.1;
}

li {
  color: #1e293b;
  border-bottom: 1px #e8e8e8 none;
  padding-bottom: 0.3em;
}

li:nth-child(odd) {
  color: #3b1e1e;
}

li:nth-child(even) {
  color: #1e3b1e;
}

td {
  vertical-align: top;
}

/* Gallery styles */
.gallery-section {
  width: 100%;
  height: 66vw;
  max-height: 640px;
  background: url("/assets/images/gallery/gallery-2024-06-03.jpg") no-repeat center center/cover;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
  color: #fff;
  position: relative;
  margin-bottom: 1rem;
}

.gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gallery-credit {
  display: block;
  background-color: rgba(0, 0, 0, 0.7);
  font-size: 0.9rem;
  margin: 0.4rem;
  font-weight: 300;
  padding: 0.4rem;
  border-radius: 0.4rem;
}

.orchid-video {
  width: 100%;
  height: calc(min(960px, 100vw) * 9 / 16);
}

/* Timeline entries */
.timeline-year {
  padding-top: 0.7rem;
  text-align: right;
  border-right: #1e293b solid 1px;
  border-bottom: inherit;
  padding-left: inherit;
  padding-right: 5px;
  margin-bottom: 10px;
}

@media (max-width: 640px) {
  .timeline-year {
    text-align: left;
    border-right: inherit;
    border-bottom: #1e293b solid 1px;
    padding-right: inherit;
    padding-left: 5px;
    margin-bottom: 10px;
  }
}
.grid-timeline {
  justify-content: center;
}

@media (min-width: 640px) {
  .grid-timeline {
    grid-template-columns: minmax(10%, max-content) minmax(50%, max-content);
  }
}

/*# sourceMappingURL=style.css.map */