@import "stylebase.css";

/* Welcome page styles */
#body_header {
    position: relative;
}

#body_header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6),
    rgba(126, 126, 126, 0.2)
  );
}

#body_header > img {
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
}

#body_header > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  border: solid 1px rgba(223, 223, 223, 0.25);
  background-color: rgba(223, 223, 223, 0.25);
  backdrop-filter: blur(8px);
}

h1 {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.5rem, 2.5vw, 4rem);
}

#main_video {
  width: 100%;
  height: auto;
  min-height: 250px;
  max-height: 600px;
  object-fit: contain;
}

iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.main_links .btn {
  min-width: 155px;
  max-width: 190px;
  width: 100%;
  background-color: var(--main_btn_background);
  color: var(--main_btn_text);
  border: solid 2px var(--main_btn_text);
  border-radius: 0;
  font-size: clamp(0.7rem, 1vw, 1rem);
  font-weight: 500;
  padding: 0.5rem 2rem;
  transition: background-color 0.3s ease;
}

.icons_color {
  color: var(--icons_color);
}

.main_links .btn:hover {
  background-color: var(--main_btn_text);
  color: var(--main_btn_background);
}

#body_content > :first-child {
  background-color: var(--background_content);
}

#signature {
  font-family: "Licorice", cursive;
  font-weight: 400;
  font-style: normal;
}

.employee_info_container {
  position: relative;
  top: 10%;
  transform: translate(0, -50%);
}

.employee_img {
  border: solid 3px var(--main_btn_text);
}

.employee_info {
  background-color: var(--background_content);
  border: solid 3px var(--background_content_light);
}