@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");


@font-face {
  font-family: 'GT Walsheim Pro';
  src: local('GT Walsheim Pro Regular'), local('GT-Walsheim-Pro-Regular'),
    url('/fonts/GTWalsheimPro-Regular.woff2') format('woff2'),
    url('/fonts/GTWalsheimPro-Regular.woff') format('woff'),
    url('/fonts/GTWalsheimPro-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}


*,
*::after,
*::before {
  font-family: 'GT Walsheim Pro', sans-serif;
  font-style: normal;
  box-sizing: border-box;

}

html,
body {
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  position: relative;
}

.loading-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #add8e6;
  z-index: 100;
}

.loading-progress {
  width: 0;
  height: 100%;
  background-color: #4682b4;
  animation: loadProgress 3s linear forwards;
}

.guitar-container {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  background-color: white;
}

.guitar-image {
  width: 600px;
  margin-top: 10rem;
  z-index: 2;
  opacity: 0;
  transition: opacity 3s ease, transform 3s ease;
}

@keyframes moveGuitar {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes loadProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.hidden {
  display: none;
}


.svg-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  overflow-x: hidden;
  width: 100vw;
  height: auto;
}


.md\:block {
  display: none;
}

.md\:hidden {
  display: block;
}


.personal-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-block: 40px;
  gap: 2rem;
}

.profile-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 8px solid white;
  border-radius: 5rem;
  -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.25);
}

.profile-image-wrapper img {
  object-fit: contain;
  width: 115px;
}

.profile-name {
  font-weight: 700;
  font-size: 1.5rem;
}

.contact-btns-row {
  display: flex;
  gap: 2rem;
}

.contact-btns-row a {
  display: grid;
  place-items: center;
  background-color: white;
  color: black;
  border-radius: 50%;
  width: 62px;
  height: 62px;
  font-size: 1.3rem;
  padding-bottom: 2px;
  transition: all 150ms ease-in-out;
  -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.15);
}

.contact-btns-row a:hover {
  transform: scale(1.05);
  background-color: rgba(255, 255, 255, 0.85);
}

.expanded-contacts-wrapper {
  display: flex;
  flex-direction: column;
  width: 45rem;
  gap: 2rem;
}

.contacts-list {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1.5rem 1.5rem 1.5rem;
  background-color: white;
  -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.15);
  border-radius: .5rem;

}

.contact-anchor {
  text-decoration: none;
}

.contact-anchor:hover {
  opacity: 0.8;
}

.separate-contact-wrapper {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid #d8d8d8;
  padding: 1rem 0;
}

.separate-contact-icon {
  display: grid;
  place-items: center;
  background: rgb(238, 238, 238);
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  transition: all 150ms ease-in-out;
}

.separate-contact-icon i {
  font-size: 1rem;
  color: black;
}

.separate-contact-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}

.contact-text-type {
  color: rgb(85, 85, 85);
  font-size: 0.875rem;

}

.contact-text {
  color: black;
  font-weight: 500;
  font-size: 1.125rem;
}

.show-map-btn {
  background-color: rgb(235, 248, 246);
  color: black;
  font-size: 0.875rem;
  padding: 6px 14px;
  border-radius: 22px;
  align-self: center;
}

.add-contact-btn {
  text-align: center;
  border-style: unset;
  cursor: pointer;
  padding: 1rem;
  border-radius: .5rem;
  font-size: 1.125rem;
  background-color: rgba(126, 192, 159, 1);
  transition: all 150ms ease-in-out;
  color: black;
}

.add-contact-btn i {
  margin-right: 0.25rem;
  font-size: 1.5rem;
}

.add-contact-btn:hover {
  background-color: rgba(126, 192, 159, 0.85);
}


@media (min-width: 768px) {
  .md\:hidden {
    display: none;
  }

  .md\:block {
    display: block;
  }


}

@media (max-width: 767px) {
  .expanded-contacts-wrapper {
    width: 100%;
    padding-inline: 2rem;
  }

  .guitar-image {
    width: 350px;
    margin-top: 0rem;
  }

}