/* contact-subpage-stylesheet */
/*
/* navbar */
nav {
  padding: 1rem;
  display: flex;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  left: 0;
  right: 0;
  padding: 32px 32px;
  gap: 20px;
}

.navbar > ul {
  display: flex;
  list-style-type: none;
  gap: 40px;
}

.navbar-mobile {
  padding: 1rem;
  display: flex;
  /* margin-bottom: 50px; */
}

.underline-text {
  color: white;
  font-family: "proxima-nova", sans-serif;
  text-decoration: none !important;
  font-size: 20px;
}

.underline-text-mobile {
  color: black !important;
  font-family: "proxima-nova", sans-serif !important;
  font-size: 3rem !important;
  text-decoration: none !important;
}

.underline-text-social-mobile {
  color: black !important;
}

/* background container */
.background-image {
  width: 100%;
}

.background-container-mobile {
  width: 100%;
  height: 50vh;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.background-image-mobile {
  width: 100%;
}

.sub-text {
  font-family: "Archivo Black", sans-serif;
  font-size: 2rem;
  text-align: center;
}

.sub-text-mobile {
  font-family: "Archivo Black", sans-serif;
  font-size: 2rem;
  text-align: center;
}

.sub-text-mobile.active {
  display: none;
}

.sub-text-services {
  font-family: "proxima-nova", sans-serif;
  font-size: 1.5rem;
  text-align: center;
}

.sub-text-services-mobile {
  font-family: "proxima-nova", sans-serif;
  font-size: 1rem;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding: 1rem;
}

.sub-text-services-mobile.active {
  display: none;
}

/* logo/title */
#logo {
  font-size: 40px;
  text-decoration: none;
  font-family: "Archivo Black", sans-serif;
  padding-top: 16px;
  padding-left: 32px;
  padding-right: 32px;
}

#logo:hover {
  cursor: pointer;
}

#logo-mobile {
  font-size: 2rem;
  display: flex;
  justify-content: center;
  margin-top: 8px;
  /* margin-left: 30px; */
  margin-right: 30px;
  flex-grow: 0;
  flex-shrink: 1;
  text-decoration: none;
  font-family: "Archivo Black", sans-serif;
}

#logo-mobile:hover {
  cursor: pointer;
}

/* ham menu */
.ham-menu {
  height: 50px;
  width: 40px;
  margin-left: auto;
  position: relative;
  /* z-index: 1; */
}

.ham-menu span {
  height: 5px;
  width: 100%;
  background-color: white;
  border-radius: 25px;
  position: absolute;
  left: 25%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
}

.ham-menu span:nth-child(1) {
  top: 25%;
}

.ham-menu span:nth-child(3) {
  top: 75%;
}

.ham-menu.active span {
  background-color: black;
}

.ham-menu.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.ham-menu.active span:nth-child(2) {
  opacity: 0;
}

.ham-menu.active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* off-screen-menu */
.off-screen-menu {
  background-color: white;
  height: 100%;
  width: 100%;
  /*   max-width: 450px; */
  position: fixed;
  /* top: 0; */
  right: -100%;
  /*  right: 450px; */
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
  transition: 0.3s ease;
  padding: 1rem;
}

.off-screen-menu.active {
  right: 0;
  /* z-index: 1; */
}

#logo-mobile-off-screen-menu {
  display: flex;
  margin-top: 8px;
  margin-left: 30px;
  margin-right: 30px;
  flex-grow: 0;
  flex-shrink: 1;
  font-size: 2rem;
  text-decoration: none;
  font-family: "Archivo Black", sans-serif;
  color: black;
}

.services-off-screen-menu {
  position: relative;
  display: flex;
  flex-grow: 1;
  flex-shrink: 0;
  justify-content: center;
  flex-direction: column;
  margin: 0 70px;
}

/* social media links */
.social-media-links {
  display: flex;
  justify-content: left;
  position: absolute;
  gap: 40px;
  padding: 42px 32px;
  font-size: 20px;
  z-index: 1;
}

.social-media-links-off-screen-menu {
  display: flex;
  align-items: center;
  margin: 0 30px;
  flex-grow: 0;
  flex-shrink: 1;
  margin-bottom: 1.5vw;
  gap: 40px;
  font-size: 1.5rem;
}

/* aboutme-stylesheet */
/*
/* aboutme section */
.aboutme-section {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  /* padding-bottom: 2rem; */
}

.aboutme-image {
  width: 50%;
  height: 75vh;
  /* display: block; */
  /* The CSS property display: block is used to change the default behavior of an element from inline to block-level. 
      When an element has a block display value, it will start on a new line and take up the full width available by default. 
      This means that other elements will be pushed down or up to make room for it. */
  background-repeat: no-repeat;
  /* background-size: cover; */
  background-attachment: fixed;
  background-position-x: center;
  background-position-y: center;
  object-fit: cover;
  object-position: bottom;
  /* The CSS property object-fit: cover is used to adjust to any image frame/size for all devices */
}

.aboutme-text-container {
  flex-direction: column;
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: left;
  margin: auto;
  width: 50%;
  /* height: 75vh; */
  line-height: 30px;
  padding: 1rem;
}

.aboutme-title {
  width: 50%;
  font-size: 2rem;
  font-family: "Archivo Black", sans-serif;
  color: white;
  padding: 1rem 0rem;
}

.aboutme-sub-title {
  width: 50%;
  font-size: 1.5rem;
  font-family: "proxima-nova", sans-serif;
  color: white;
  padding: 1rem 0rem;
}

.aboutme-text {
  width: 50%;
  font-size: 1rem;
  font-family: "proxima-nova", sans-serif;
  color: white;
}

/* button  */
.container-button-aboutme {
  margin: auto;
  margin-top: 2rem;
  margin-bottom: 0rem;
  width: 50%;
}

.my-button-popup {
  background-color: white;
  color: black;
  border: none;
  height: 75px;
  width: 275px;
  border-radius: 8px;
  font-size: 1rem;
  padding: 10px 20px;
  cursor: pointer;
}

.my-button-popup:hover {
  background-color: #7393b3;
  color: black;
}

.contact-footer {
  display: flex;
  margin: auto;
  justify-content: space-between;
  /* width: 1250px; */
  width: 100vw;
  padding: 1rem;
  margin-top: 50px;
  margin-bottom: 50px;
}

.left-information {
  text-align: left;
}

.right-information {
  text-align: right;
}

.footer-text {
  font-family: "Archivo Black", sans-serif;
  font-size: 27.5px;
}

.footer-sub-text {
  font-family: "proxima-nova", sans-serif;
}

/* Code for pop up */
.overlay-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup-box {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  width: 750px;
  height: 100vh;
  overflow: auto;
  text-align: center;
  opacity: 0;
  transform: scale(0.8);
  animation: fadeInUp 0.5s ease-out forwards;
}

.form-container {
  display: flex;
  flex-direction: column;
}

.testing {
  display: flex;
  flex-direction: row !important;
  gap: 0.5rem;
}

.popup-header {
  display: flex;
  justify-content: space-between;
}

.testing-2 {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-label {
  margin-bottom: 10px;
  font-size: 16px;
  color: #444;
  text-align: left;
  font-family: "proxima-nova", sans-serif;
}

.form-input {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-input-2 {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-input-3 {
  padding-left: 6px;
  padding-right: 6px;
  padding-top: 11.5px;
  padding-bottom: 11.5px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.btn-submit {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-submit {
  background-color: black;
  color: #fff;
}

.btn-submit:hover {
  background-color: #7393b3;
}

.fa-xmark {
  color: black;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
}

.insta-popup {
  color: black;
  font-size: 2rem;
  margin-bottom: 2rem;
  cursor: pointer;
}

/* Keyframes for fadeInUp animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation for popup */
.overlay-container.show {
  display: flex;
  opacity: 1;
}
/* Code for pop up ends */

/* media quieries */
/* media quieries - Desktop */
@media screen and (max-width: 1024px) {
  .show-on-desktop {
    display: none;
  }
}

/* media quieries - Mobile */
@media screen and (min-width: 1025px) {
  .hide-on-desktop {
    display: none;
  }
}

/* media quieries - let's connect section */
/* Desktop */
@media screen and (max-width: 667px) {
  .show-on-desktop-aboutme {
    display: none;
  }
}

@media screen and (min-width: 1280px) {
  .section-settings {
    height: 100vh;
  }
}

/* Mobile */
@media screen and (min-width: 668px) {
  .hide-on-desktop-aboutme {
    display: none;
  }
}

@media screen and (max-width: 667px) {
  .mobile-image-settings {
    width: 100%;
    height: 45vh;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .mobile-section-settings {
    height: 100%;
  }

  .mobile-text-container-settings {
    width: 100%;
  }

  .mobile-text-settings {
    padding-top: 1rem;
  }

  /* increases size of button on mobile view so it spans across device */
  .increase-size-on-mobile-aboutme {
    width: 100% !important;
  }
}

/* media quieries - Desktop & Ipad & Mobile */
/* helps with image sizing for vertical/horizontal view across all devices */
@media screen and (max-width: 1200px) {
  .mobile-media-settings {
    width: 100%;
  }

  .ipad-media-settings {
    width: 100%;
  }
}

@media screen and (max-width: 1680px) {
  .ipad-image-size {
    height: 750px;
  }
}

@media screen and (max-height: 665px) {
  .image-size {
    height: 750px;
  }
}

/* iphone se device horizontal view */
@media only screen and (min-width: 667px) and (max-height: 375px) {
  .iphone-se-image-settings {
    width: 100%;
    height: 85vh !important;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .iphone-se-section-settings {
    width: 100% !important;
  }

  .iphone-se-container-settings {
    width: 100% !important;
  }

  .iphone-se-text-settings {
    padding-top: 1rem;
  }
}

/* media quieries - Footer Section */
/* media quieries - Desktop */
@media screen and (min-width: 1300px) {
  .desktop-settings-left {
    margin-left: 250px;
  }

  .desktop-settings-right {
    margin-right: 250px;
  }
}

@media screen and (max-width: 769px) {
  .popup-box {
    width: 100%;
    border-radius: 0px;
  }
}

@media only screen and (min-width: 668px) and (max-width: 1025px) {
  .navbar-mobile {
    margin-bottom: 40px;
  }
}
