*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  margin-top: 70px;
  box-sizing: border-box;
  min-height: calc(100dvh - 70px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow-y: scroll;
}

.indexBody {
  font-family: Arial, sans-serif;
  height: fit-content;
  background-attachment: scroll;
  transition: background-position 1s ease-in-out;
  background: url("./images/websitewallpaer.jpg") no-repeat center top,
    black no-repeat center bottom;
  background-size: 100% auto;
}
.contactBody {
  background: url("./images/contactus.jpg") no-repeat center top;
  background-size: 100% auto;
  min-height: calc(100dvh - 70px);
  height: fit-content;
  background-attachment: scroll;
  transition: background-position 1s ease-in-out;
}

.missionText {
  z-index: 2;
  width: 100%;
}

.missionText .missionTitle {
  font-size: 60px; /* Adjust the size of the text */
  color: white; /* Text color */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  text-align: left;
  margin: 50px 20px 20px 80px;
}

/* Header Styling */
nav {
  background-color: #242222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0px;
  margin: 0 auto;
  padding: 10px 20px;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-left {
  display: flex;
  align-items: center;
  color: #fff;
}

.nav-text {
  margin-right: 20px;
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  position: relative;
  z-index: 1000;
}

.page-indicator {
  font-size: 0.8em;
  opacity: 0.8;
  font-style: italic;
  font-family: Arial, sans-serif;
}

.nav-right {
  display: flex;
  color: #fff;
  text-decoration: none;
  justify-content: flex-end;
  gap: 10px;
}

.navbutton {
  font-family: "Arial", sans-serif;
  font-size: 20px;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  background-color: transparent;
  border: none;
  border-radius: 0;
}

.navbutton:hover {
  text-decoration: underline;
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001; /* Ensure it's above other elements */
}

/* Footer Styling */
footer {
  background: rgba(31, 29, 29, 0.8);
  color: #fff;
  position: relative;
  bottom: 0;
  width: 100%;
  height: 90px;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}
footer * {
  margin: 0;
}

footer a:hover {
  text-decoration: underline !important;
}

.shopNowButton {
  font-size: 50px;
  background-color: gray;
  border-radius: 8px;
  cursor: pointer;
  margin-left: 80px;
}

.shopNowButton:hover {
  text-decoration: underline;
}

.mainText {
  height: fit-content;
  min-height: 100dvh;
  width: 100%;
  padding: 0 20px;
}

h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: 32px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
  color: white;
}

h3 {
  font-family: "Arial", sans-serif;
  font-size: 20px;
  text-align: center;
}

/* Process page styling */
.process-steps {
  margin-bottom: 40px;
  padding: 0 20px;
}

.process-image {
  display: block;
  margin: 20px auto;
}

.paragraph {
  max-width: 800px;
  margin: 0 auto 20px;
}

.column {
  flex: 33.33%;
  padding: 20px;
}

.row {
  display: flex;
  width: 100%;
}

/* Responsive styles */
@media (max-width: 768px) {
  /* Change background image for mobile */
  .indexBody {
    background: url("./images/wallpapertopographic.JPG") no-repeat center top,
      black no-repeat center bottom;
    background-size: cover;
    background-attachment: scroll;
  }

  /* Navigation */
  .nav-right {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #242222;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 15px;
    transform: translateY(-100%);
    transition: 0.3s ease;
    opacity: 0;
  }

  .nav-right.active {
    transform: translateY(0);
    opacity: 1;
  }

  .menu-toggle {
    display: block;
    position: relative; /* Ensure proper positioning */
  }

  .nav-text {
    font-size: 22px;
  }

  /* Typography */
  .missionText .missionTitle {
    font-size: 40px;
    margin: 30px 15px 15px 20px;
  }

  h1 {
    font-size: 40px !important;
    text-align: center !important;
  }

  h2 {
    font-size: 24px;
  }

  /* Layout */
  .missionText p {
    font-size: 16px !important;
    width: 90% !important;
    margin: 0 auto 20px !important;
    text-align: center !important;
  }

  .shopNowButton {
    font-size: 24px;
    margin: 0 auto;
    display: block;
  }

  /* Background images */
  .contactBody {
    background-size: cover;
  }

  /* Footer */
  footer {
    height: auto;
    padding: 15px 0;
  }
}

@media (max-width: 480px) {
  /* Typography */
  .missionText .missionTitle {
    font-size: 32px;
  }

  h1 {
    font-size: 32px !important;
  }

  /* Layout */
  .missionText p {
    font-size: 14px !important;
    width: 95% !important;
  }

  /* Navigation */
  .navbutton {
    font-size: 18px;
    padding: 8px 15px;
  }

  .nav-text {
    font-size: 18px;
  }

  /* Process page */
  .process-image {
    width: 100% !important;
  }

  .paragraph {
    font-size: 16px !important;
  }
}
