* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  color: var(--home-primary-color);
  background-color: transparent;
  font-size: 1rem;
  overflow: visible;
  font-family: var(--font-body);
  list-style: none;
  background: none;
}

#headerWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  height: var(--header-height);
  background-color: #ECEBFF;
}

@media screen and (min-width: 992px) {
  #headerWrapper {
    padding: 10px 50px;
    justify-content: space-between;
  }
}

#headerLogo {
  height: 50px;
  width: auto;
}

#headerWrapper span {
  text-decoration: none;
  color: var(--home-primary-color);
}

.center-header-wrapper {
  display: none;
}

@media screen and (min-width: 1024px) {
  .center-header-wrapper {
    display: block;
  }

  .center-header-wrapper p{
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--home-primary-color);
  }
}

main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 992px) {
  main {
    flex-direction: row;
  } 
}

#graphicImage {
  width: 100%;
  height: 500px;
  max-width: 1000px;
  object-position: center;
  object-fit: cover;
}

@media screen and (min-width: 992px) {
  #graphicImage {
    height: 560px;
  }
}

#contactSection {
  width: 90%;
  background: #fcfbfb;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin: auto;
}

#contactSection h1 {
  color: var(--home-primary-color);
  text-align: center;
  margin: 6px 0 16px;
  font-size: 1.8rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px){
  #contactSection {
    width: 70%;
    margin-top: 40px;
    margin-right: 160px;
  }
}

#contactForm {
  display: flex;
  flex-direction: column;
  margin: auto;
}

.floating-label-group {
  position: relative;
  margin-bottom: 20px;
}

.form-input,
.floating-label-group select {
  width: 100%;
  padding: 16px 16px 16px 16px;
  font-size: 0.9rem;
  border: 0.5px solid #ECEBFF;
  border-radius: 4px;
  background: #fcfbfb;
  outline: none;
  color: var(--home-primary-color);
  cursor: pointer;
}

@media screen and (min-width: 1024px) {
  #contactForm {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .form-input {
    width: 240px;
  }
}

.floating-label-group label {
  position: absolute;
  top: 16px;
  left: 14px;
  color: var(--home-primary-color);
  opacity: 0.8;
  background: transparent;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  pointer-events: none;
}

option {
  color: var(--home-primary-color);
  font-size: 0.8rem;
  opacity: 0.8;
}

option:disabled {
  color: gainsboro;
  font-size: 0.8rem;
}


.form-input:focus + label,
.form-input:not(:placeholder-shown) + label,
.floating-label-group select:focus + label,
.floating-label-group select:not([value=" "]) + label {
  top: -10px;
  left: 6px;
  color: var(--home-primary-color);
  background: #fcfbfb;
  font-size: 0.8rem;
  opacity: 1
}

#submitBtn{
  background: var(--home-primary-color);
  color: var(--text-color-white);
  padding: 10px 30px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin: auto;
  transition: background 0.3s ease;
}

#submitBtn:hover {
  background: var(--home-primary-color);
}

#status {
  margin: 20px auto;
  color: var(--home-primary-color);
  text-align: center;
}

#contactOptions {
  display: flex;
  padding: 20px 0;
  flex-direction: column;
  gap: 20px;
  margin: auto;
  margin-top: 20px;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  #contactOptions {
    flex-direction: row;
    width: 90%;
  }
}

.contact-option {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 10px 20px;
  text-align: left;
  width: 85%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-option {
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .contact-option {
    max-width: 240px;
    text-align: center;
  }
}

.contact-option * {
  color: var(--home-primary-color);
}

.contact-option h2{
  margin: 10px 0;
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
}

.contact-option p {
  margin: 5px 0;
  font-size: 1rem;
  font-weight: 400;
}

.contact-option span {
  color: var(--home-primary-color);
  font-size: 0.8rem;
}

.contact-option img {
  width: 50px;
  height: 50px;
  vertical-align: center;
}

.contact-option-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (min-width: 768px) {
  .contact-option-header {
    justify-content: center;
  }
}

#socialsTechRoom {
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px
}

@media screen and (min-width: 768px) {
  #socialsTechRoom {
    flex-direction: row;
    justify-content: center;
  }
}

#socialsTechRoom h5,
#socialsTechRoom h6{
  color: var(--home-primary-color);
  font-weight: 400;
}

#socialsTechRoom h5 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-style: italic;
}

#socialsTechRoom h6 {
  margin-bottom: 16px;
  font-size: 1rem;
}

#socialsTechRoom span {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--home-primary-color);
  font-weight: 500;
}

#socialIcons {
  display: flex;
  gap: 20px;
  justify-content: left;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  #socialIcons {
    width: 80%;
  }
}

.social-icon {
  width: 30px;
  height: 30px;
  opacity: 0.5;
}

footer {
  background: var(--home-primary-color);
  color: var(--text-color-white);
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

footer img {
  display: block;
  width: 100px;
  margin: 20px auto;
}

footer a {
  text-decoration: underline;
  color: var(--text-color-white);
  font-size: 0.9rem;
}

footer span,
footer p {
  color: var(--text-color-white);
  font-size: 0.9rem;
}