* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

a:link {
  color: yellow;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: rgb(255, 193, 7);
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: rgb(255, 193, 7);
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}

.banner-container {
  width: 100vw;
  overflow: hidden;
}

#banner-image-top,
#banner-image-bottom {
  width: 100vw;
  height: auto;
}

#banner-image-top {
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

#banner-image-bottom {
  mask-image: linear-gradient(to top, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, black 80%, transparent 100%);
}

.content-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

#contact-container {
  height: calc(auto + 200px);
  background-color: rgb(123, 161, 132);
}

.modal {
  width: calc(100% - 2in);
  max-width: 1200px;
  background-color: rgb(240, 240, 240);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
}

#contact-modal {
  background-color: rgb(54, 94, 77);
  color: rgb(240, 240, 240);
}

.modal-header {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 20px;
  line-height: 1;
}

.modal-header::after {
  content: "";
  display: block;
  background-color: currentColor;
  width: 25%;
  height: 2px;
  margin: 10px auto 0;
}

.modal-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.left-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 10px;
  flex: 1;
}

.right-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 10px;
  flex: 1;
}

.left-column>p,
.right-column>p {
  text-align: left;
  text-indent: 30px;
}

.left-column>h1,
.right-column>h1,
.left-column>h2,
.right-column>h2 {
  text-align: center;
}

/* Form styling */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  /* Let the form take up the full width of its container */
  box-sizing: border-box;
  /* Make sure padding does not add extra width */
}

form label {
  font-weight: bold;
  padding-left: 5px;
}

form input {
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  font-size: 1rem;
}

form textarea {
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  font-size: 1rem;
  resize: vertical;
}

form button {
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  font-size: 1rem;
  background-color: darkseagreen;
  color: white;
  cursor: pointer;
  border: none;
}

form button:hover {
  background-color: seagreen;
}

/* Flex container for email and phone */
.form-row {
  width: 100%;
  display: flex;
  gap: 10px;
  /* Space between the two fields */
}

.form-row .form-field {
  flex: 1;
  /* Each field takes up 50% of the row */
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* Align label and input vertically */
}

/* Gallery image */
.gallery-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery-left-column {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 10px;
  flex: 2;
}

.gallery-right-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 10px;
  flex: 1;
}

.glow {
  font-size: 60px;
  color: #fff;
  text-align: center;
  -webkit-animation: glow 2s ease-in-out infinite alternate;
  -moz-animation: glow 2s ease-in-out infinite alternate;
  animation: glow 2s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow:
      0 0 10px #fff,
      0 0 20px #fff,
      0 0 30px #ffc107,
      0 0 40px #ffc107,
      0 0 50px #ffc107,
      0 0 60px #ffc107,
      0 0 70px #ffc107;
  }

  to {
    text-shadow:
      0 0 20px #fff,
      0 0 30px #ffeb3b,
      0 0 40px #ffeb3b,
      0 0 50px #ffeb3b,
      0 0 60px #ffeb3b,
      0 0 70px #ffeb3b,
      0 0 80px #ffeb3b;
  }
}

#map-wrapper {
  border-style: double;
  border-color: seagreen;
  border-width: 5px;
}