body {
  font-family: Roboto, sans-serif;
  line-height: 1.6;
  color: #f4f4f4;
  margin: 0;
  padding: 0;
  background: #222;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(128, 128, 128, 0.5), rgba(128, 128, 128, 0.5)), url('assets/img/cityscape.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}
.contact-background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(128, 128, 128, 0.5), rgba(128, 128, 128, 0.5)), url('assets/img/comms.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 0 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Neuropol-nova, sans-serif;
}

.logo {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 300px;
  /* filter: grayscale(100%); */
  z-index: 101;
}

.menu-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 0.5rem 0;
  z-index: 100;
}

.menu-bar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu-bar li {
  display: inline;
  margin: 0 1rem;
}

.menu-bar a {
  color: #f4f4f4;
  text-decoration: none;
  font-family: Roboto, sans-serif;
  font-weight: 100;
  font-size: 1.1rem;
}

.menu-bar a:hover {
  color: #777;
}

.hero {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: url(assets/img/city.jpg) center center no-repeat;
  background-size: cover;
}

.section-title {
  text-align: center;
  font-family: Neuropol-nova, sans-serif;
  font-weight: normal;
  font-size: 7rem; /* increase the title text size */
  padding: 5rem 0;
  color: #fff;
}

.sub-section-title {
  text-align: center;
  font-family: Neuropol-nova, sans-serif;
  font-weight: 100;
  font-size: 5rem; /* increase the title text size */
  padding: 5rem 0;
  color: #fff;
}

.section-title h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  

}

.section-title p {
  font-size: 1.3rem;
}

.sections {
  padding: 3rem 0;
}

.section {
  margin-bottom: 3rem;
}

.section-text {
  font-family: Roboto, sans-serif;
  font-weight: 100;
  font-size: 1.2rem;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.5); /* Add translucent black background */
  padding: 10px; /* Add some padding for better appearance */
  border-radius: 5px; /* Optional: Add border-radius for rounded corners */

}

.last-paragraph {
  margin-bottom: 150px; /* Adjust the value as needed */

}


.content-wrapper {
  max-width: 60%;
  margin: 0 auto;
}

.header-title {
  text-align: center;
    font-size: 3.5rem;
  margin-bottom: 2rem;
  font-family: Neuropol-nova, sans-serif;
  font-weight: normal;
}

.footer {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  padding: 0.5rem;
  z-index: 100;
}

.footer-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  color: #f4f4f4;
}
.contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form label {
  font-size: 1.1rem;
  margin-top: 1rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  max-width: 500px;
  padding: 0.5rem;
  margin-bottom: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: #f4f4f4;
  font-family: Roboto, sans-serif;
  font-size: 1.1rem;
}

.contact-form input[type="submit"] {
  align-self: flex-end;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: #f4f4f4;
  font-family: Roboto, sans-serif;
  font-size: 1.1rem;
  cursor: pointer;
}

.contact-form input[type="submit"]:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.contact-form-description {
  font-family: Roboto, sans-serif;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 2rem;
  background-color: rgba(0, 0, 0, 0.5); /* Add translucent black background */
  padding: 10px; /* Add some padding for better appearance */
  border-radius: 5px; /* Optional: Add border-radius for rounded corners */
}

form {
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}

form label {
  display: block;
  margin-bottom: 0.5rem;
}

form input[type="text"],
form input[type="email"],
form textarea {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 3px;
  color: #fff;
}

form input[type="submit"] {
  display: inline-block;
  background-color: #444;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  text-align: center;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 1rem;

}

form input[type="submit"]:hover {
  background-color: #777;
}
.background-overlay-legal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(128, 128, 128, 0.5), rgba(128, 128, 128, 0.5)), url('assets/img/legal.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}

/* ========== HOMEPAGE STYLES ========== */

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

html, body {
  height: 100%;
  width: 100%;
  overflow: auto;
}

.fullscreen-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -100;
}

.fullscreen-bg__video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(128, 128, 128, 0.5); /* Grey overlay with 50% opacity */
  z-index: 0;
}

.copyright {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  font-size: 14px;
  color: #ffffff; /* Adjust text color as needed */
  z-index: 2;
}

.home-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 75%;
  max-height: 75%;
  z-index: 1;
  transform: translateX(-50%) translateY(-50%);
}


.home-menu-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 2;
}

.home-menu-bar ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 10px;
}

.home-menu-bar ul li {
  margin: 0 10px;
}

.home-menu-bar ul li a {
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
}

.home-menu-bar ul li a:hover {
  text-decoration: underline;
}

/* ========== CYBERPUNK EFFECTS ========== */

/* Scanline overlay effect */
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.scanlines::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
}

/* Subtle flicker animation for scanlines */
.scanlines::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  animation: scanline-flicker 0.15s infinite;
  pointer-events: none;
}

@keyframes scanline-flicker {
  0% { opacity: 0.03; }
  50% { opacity: 0.06; }
  100% { opacity: 0.03; }
}

/* ========== END CYBERPUNK EFFECTS ========== */

/* Add this at the end of your main.css file */
@media screen and (max-width: 768px) {
  .logo {
    width: 150px; /* Reduce logo size */
    top: 0.5rem;
    right: 0.5rem;
  }

  .menu-bar li {
    margin: 0 0.5rem; /* Reduce menu item margin */
  }

  .menu-bar a {
    font-size: 1rem; /* Reduce menu item font size */
  }

  .hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section-title {
    font-size: 4rem; /* Reduce section title font size */
  }

  .section-title h1 {
    font-size: 2.5rem; /* Reduce section title h1 font size */
  }

  .section-title p {
    font-size: 1.1rem; /* Reduce section title paragraph font size */
  }

  .content-wrapper {
    max-width: 90%; /* Increase content wrapper width */
  }

  .header-title {
    font-size: 2.5rem; /* Reduce header title font size */
  }

  .section-text {
    font-size: 1rem; /* Reduce section text font size */
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form textarea {
    font-size: 1rem; /* Reduce contact form input font size */
  }

  .contact-form input[type="submit"] {
    font-size: 1rem; /* Reduce contact form submit button font size */
  }

  .contact-form-description {
    font-size: 1.1rem; /* Reduce contact form description font size */
  }

  .footer-text {
    font-size: 0.9rem; /* Reduce footer text font size */
  }

  .home-menu-bar ul li a {
    font-size: 12px; /* Reduce home menu bar font size */
  }

 .copyright {
    bottom: 50px; /* Increase bottom value to avoid clashing with the navbar */
  }
}
