/* Prevent headings from being hidden behind sticky header/navbar */
section {
  scroll-margin-top: 120px;
}
@media (max-width: 576px) {
  .masonry-gallery img {
    max-width: 70vw;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
/* Masonry gallery layout */
.masonry-gallery {
  column-count: 3;
  column-gap: 1rem;
}
.masonry-gallery .gallery-img {
  display: inline-block;
  width: 100%;
  margin-bottom: 1rem;
  cursor: pointer;
}
.masonry-gallery img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.masonry-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
@media (max-width: 992px) {
  .masonry-gallery {
    column-count: 2;
    column-gap: 0.75rem;
  }
}
@media (max-width: 576px) {
  .masonry-gallery {
    column-count: 1;
    column-gap: 0.5rem;
  }
  .masonry-gallery img {
    border-radius: 0.4rem;
  }
  .masonry-gallery .gallery-img {
    margin-bottom: 0.5rem;
  }
}
/* Add spacing between gallery images */
#gallery .row {
  --bs-gutter-x: 0.5rem;
  --bs-gutter-y: 0.5rem;
}
/* Reduce gallery image size by 50% */
#gallery .img-fluid {
  width: 50% !important;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* Make all images greyscale */
img {
  filter: grayscale(100%);
}
/* Remove background color from hamburger collapse menu */
.navbar-collapse {
  background-color: transparent !important;
}
/* Make table header black with white font */
.table thead th, .table thead td, .table thead {
    background-color: #a3d5c8 !important;
    color: #fff !important;
}
/* Gallery styles */
.gallery {
  margin-top: 2em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2em;
  margin: 0 auto;
  max-width: 900px;
}
/* Uniform gallery image sizing for Bootstrap grid */
.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  aspect-ratio: 1/1;
}
.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(224,176,0,0.18);
}
@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.7em;
  }
  .gallery-grid img {
    height: 110px;
    aspect-ratio: 1/1;
  }
}
/* Hamburger menu styles */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5em 1em;
  margin-right: 1em;
  z-index: 20;
}
.hamburger {
  display: block;
  width: 28px;
  height: 3px;
  background: #f8f8f7;
  position: relative;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 3px;
  background: #fcfbfb;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger::before {
  top: -9px;
}
.hamburger::after {
  top: 9px;
}
.nav-toggle.open .hamburger {
  background: transparent;
}
.nav-toggle.open .hamburger::before {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open .hamburger::after {
  transform: rotate(-45deg) translate(5px, -5px);
}
.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: max-height 0.3s;
}
@media (max-width: 700px) {
  .nav-toggle {
    display: block;
    position: absolute;
    left: 1em;
    top: 1.2em;
  }
  nav {
    position: relative;
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    background: #222;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    max-height: 0;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    z-index: 10;
  }
  .nav-list.nav-open {
    max-height: 300px;
    padding-bottom: 1em;
  }
  .nav-list li {
    margin: 1em 0 0 1.5em;
  }
  .nav-list a {
    font-size: 1.2em;
  }
}
/* Logo and header styles */
header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 0 0.5em 0;
  gap: 1em;
}
header img {
  height: 60px;
  width: auto;
  margin-right: 1em;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  background: #fff;
}
header span {
  font-size: 2em;
  font-weight: 800;
  color: #222;
  letter-spacing: 1px;
}
@media (max-width: 700px) {
  header span {
    font-size: 1.3em;
  }
  header img {
    height: 40px;
    margin-right: 0.5em;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');
body {
    font-family: 'Satoshi', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #fff 0%, #000 100%);
    color: #222;
}

.strap-line {
    font-weight: bold;
}

nav {
    background: #222;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 0.5em 0;
    position: sticky;
    top: 0;
    z-index: 10;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
nav ul li {
  margin: 0 1.5em;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  position: relative;
}
nav ul li a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #0e0d0d;
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -4px;
}
nav ul li a:hover {
  color: #f3f3f2;
}
nav ul li a:hover::after {
  width: 100%;
}
main {
  max-width: 900px;
  margin: 3em auto 2em auto;
  background: #fff;
  padding: 2.5em 2em;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
h1 {
  font-size: 2.5em;
  font-weight: 800;
  margin-bottom: 0.5em;
  color: #222;
  letter-spacing: 1px;
}

h2 {
    color: #125354;
    font-weight: 900;
}

p, label, th, td {
    font-size: 1.1em;
    font-weight: 300;
}
footer {
  text-align: center;
  padding: 1.5em 0 1em 0;
  background: #222;
  color: #fff;
  font-size: 1em;
  letter-spacing: 0.5px;
  position: fixed;
  width: 100%;
  bottom: 0;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5em;
  background: #a3d5c8;
  border-radius: 8px;
  overflow: hidden;
}
table, th, td {
  border: none;
}
th {
  background: #a3d5c8;
  color: #a3d5c8;
  font-weight: 700;
  padding: 1em 0.5em;
}
td {
  padding: 0.75em 0.5em;
  border-bottom: 1px solid #eee;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 2em;
}
label {
  font-weight: 600;
  color: #222;
}
input, textarea {
  padding: 0.75em;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  background: #f9f9f9;
  transition: border 0.2s;
}
input:focus, textarea:focus {
  border: 1.5px solid #e0b000;
  outline: none;
}
button {
  padding: 0.9em;
  background: #0e0d0d;
  color: #222;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.1em;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(224,176,0,0.08);
  transition: background 0.2s;
}

@media (max-width: 700px) {
  main {
    padding: 1em;
    margin: 1em;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  nav ul li {
    margin: 0.7em 0;
  }
  h1 {
    font-size: 2em;
  }
}
