* {
  box-sizing: border-box;
}

body {
  color: #1A365D;
  font-family: sans-serif;
  background-color: #F9F8F6;
  margin: 0;
  padding: 0;
  width: 100%;
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 5rem;
  background-color: #F9F8F6;
  padding-top: 1%;
  padding-bottom: 1%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -1rem 1rem 1rem rgba(0, 0, 0, 0.5);
}

.nav-logo {
  padding-left: 2%;
  font-size: 25px;
  font-weight: bold;
}

.hamburger {
  display: block;
  margin-right: 2rem;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #1A365D;
}

.nav-links {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 1.5rem 0;
  list-style: none;
  background-color: #F9F8F6;
  flex-direction: column;
  text-align: center;
  gap: 1.5rem;
}

/* Show menu when active */
.nav-links.active {
  display: flex;
  box-shadow: 0 1rem 1rem 0rem rgba(0, 0, 0, 0.5);
}

.nav-links a {
  color: #4A5568;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: bold;
}

.nav-links a:hover {
  color: #1A365D;
}

.about {
  background-color: #F9F8F6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 25rem;
  padding: 0 1rem;
}

.about-us-p {
  padding: 0 1rem;
  text-align: justify;
}

@media (min-width: 800px) {
  header {
    height: 3rem;
    /*box-shadow: 0 1rem 20rem 2rem rgba(0, 0, 0, 0.5);*/
    box-shadow: 0 -1rem 1rem 1rem rgba(0, 0, 0, 0.5);
  }

  .hamburger {
    display: none;
  }
  
  .nav-links {
    display: flex;
    position: static;
    width: auto;
    padding: 0;
    background: none;
    flex-direction: row;
    gap: 3rem;
    padding-right: 3rem;
    box-shadow: 0 0rem 0rem 0rem rgba(0, 0, 0, 0.5);
  }

  .nav-links a {
    transition: color 0.25s ease-in-out;
  }

  .nav-links a:hover {
    color: #1A365D;
  }

  .about-us-p {
    font-size: 1.25rem;
    margin: 0 0 6rem 0;
    max-width: 100rem;
    padding: 0 5rem;
    text-align: center;
  }
  .about {
    background-color: #F9F8F6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 25rem;
    padding: 0 5rem;
  }
}

.welcome-box {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.mobile-fixed-bg {
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8)), url('inside.jpg');
  background-repeat: no-repeat;

  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  z-index: -4;
}

.title {
  color: #C5A880;
  text-align: center;

}

.title h1 {
  font-size: 3.5rem;
  margin: 0;
}

.title h3 {
  font-size: 2rem;
  padding: 0;
  margin: 0;
}


.about h2 {
  font-size: 2rem;
  margin: 4rem 0;
}

.about p {
  font-size: 1.25rem;
  margin: 0 0 6rem 0;
  max-width: 100rem;
}

.information {
  text-align: center;
  background-color: #ccc9c7;
  padding: 5rem 0
}

.information h2 {
  background-color: #1A365D;
  color: #F9F8F6;
  margin: 0 15%;
  padding: 1rem;
  border-radius: 2rem;
  box-shadow: 0 1rem 1rem 0rem rgba(0, 0, 0, 0.5);
  font-size: 2rem;
}

.information-info {
  display: flex;
  text-align: left;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 5%;
}

.information-column {
  flex-grow: 1;
  padding: 5%;
  margin: 2%;
  flex-basis: 300px;
  max-width: 100%;
  font-size: 1.5rem;
  border-radius: 2rem;
  color: #F9F8F6;
  box-shadow: 0 1rem 1rem 0.5rem rgba(0, 0, 0, 0.5);

  /* Mobile-compatible fixed clipping setup */
  position: relative;
  clip-path: inset(0 round 2rem); /* Clips fixed pseudo-element to match rounded corners */
  z-index: 1;
}

.information-column::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  /* Image properties */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url('inside.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  z-index: -1; /* Sits behind text content inside the clipped box */
  pointer-events: none;
}


.contact {
  background-color: #F9F8F6;
  padding: 5rem 5%;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin: 0 0 3rem;
  color: #1A365D;
}

.contact-boxes {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.contact-info,
.form-container {
  flex: 1;
  min-width: 300px;
  padding: 3rem;
  border-radius: 2rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.contact-info {
  background-color: #1A365D;
  color: #F9F8F6;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h3 {
  font-size: 1.75rem;
  margin-top: 0;
  color: #C5A880;
}

.contact-info address {
  font-size: 1.2rem;
  line-height: 1.8;
  font-style: normal;
}

.contact-info a {
  color: #C5A880;
}

.form-container {
  background-color: #ccc9c7;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-weight: bold;
  color: #1A365D;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid #1A365D;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 0.5rem;
  background-color: #1A365D;
  color: #F9F8F6;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.25s ease-in-out;
}

.submit-btn:hover {
  background-color: #2E5E8C;
}
