/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: black;
  color: white;
  font-family: "Times New Roman", Times, serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Hamburger Menu */
.menu {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.menu .bar {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

/* Side Navigation Overlay */
.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  z-index: 2000;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.side-nav.active {
  opacity: 1;
  visibility: visible;
}

.side-nav .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  text-decoration: none;
  color: white;
  z-index: 2100;
}

.nav-top,
.nav-middle,
.nav-bottom {
  width: 100%;
  text-align: center;
}

.nav-top {
  margin-top: 60px;
}

.nav-logo {
  width: calc(100% - 40px);
  max-width: 500px;
  height: auto;
  margin: 20px auto;
}

.nav-middle {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-middle a {
  display: block;
  width: 100%;
  padding: 20px 0;
  font-size: 2rem;
  color: white;
  text-decoration: none;
}

.nav-middle a:hover {
  color: #aaa;
}

.nav-bottom {
  margin-bottom: 20px;
}

.nav-footer-text {
  margin-top: 10px;
  font-size: 0.75rem;
  color: white;
}

/* Contact Content */
.contact-content {
  padding: 80px 20px 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.top-logo {
  display: block;
  margin: 10px auto 40px auto;
  width: 300px;
  height: auto;
}

/* Hero Section */
.contact-hero h1 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: left;
}

.contact-hero p {
  font-size: 28px;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 20px;
  text-align: justify;
}

/* Supporting / Contact Info */
.supporting {
  margin-top: 40px;
  text-align: left;
}

.supporting h2 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 4px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.supporting p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
  text-align: justify;
}

/* Each contact block has 20px spacing */
.contact-block {
  margin-bottom: 20px;
}

.supporting a {
  color: #ccc;
  text-decoration: none;
}

.supporting a:hover {
  color: #aaa;
}

/* Images */
.images-block {
  margin: 50px auto;
  text-align: center;
}

.sub-image {
  width: 100%;
  max-width: 800px;
  margin: 30px auto;
  display: block;
  height: auto;
  object-fit: cover;
}

/* Footer */
.page-footer {
  text-align: center;
  margin-top: 60px;
}

.footer-logo {
  width: 260px;
  height: auto;
  margin-bottom: 10px;
}

.footer-text {
  font-size: 0.75rem;
  color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-hero h1,
  .contact-hero p,
  .supporting,
  .supporting h2,
  .supporting p {
    text-align: left;
  }

  .sub-image {
    max-width: 100%;
  }
}
