/* GENERAL */

@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Source+Code+Pro&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

.main-wrapper {
  max-width: 2560px;
  min-width: 320px;
  overflow-x: auto;
  margin: 0 auto;
  padding: 0 5%;
}

/* TEXTS */
a {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

p,
li {
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: 320;
  font-style: normal;
  color: rgb(85, 85, 85);
}


h1 {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #26428b;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: rgb(85, 85, 85);

}

h1:hover,
h2:hover,
h3:hover,
h4:hover,
h5:hover,
h6:hover {
  cursor: default; /
}

.title {  
  padding-bottom: 0.5rem;
}

.name1, .name2 {
  display: inline;
}

.name1 {
  font-weight: bold;
  color: #26428b; 
  margin: 1rem 0;
}

.name2 {
  font-style: italic; 
  margin: 1rem 0;
  font-weight: 500;
}

.name3 {
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
}

.description {
  list-style-type: disc; 
  padding-left: 20px; 
  margin: 0.5rem 0;
  font-size: 0.9375rem; 
}

.description li {
  margin-bottom: 0.25rem;
}

.profile_text {
  align-self: center;
  text-align: center;
}

.profile_text p {
  font-weight: 600;
}

.profile_name {
  font-size: 3rem;
  text-align: center;
}

.profile_text_1 {
  text-align: center;
}

.profile_text_2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}


/* DESKTOP NAV */

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 17vh;
  padding: 1rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-size: 1.5rem;
}

a {
  color: black;
  text-decoration: none;
  text-decoration-color: white;
}

a:hover {
  color: #26428b;
  text-decoration: underline;
  text-underline-offset: 1rem;
  text-decoration-color: rgb(181, 181, 181);
}

a,
.btn {
  transition: all 300ms ease;
}

/* HAMBURGER MENU */

#hamburger-nav {
  display: none;
}

.hamburger-menu {
  position: relative;
  display: inline-block;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  width: 30px;
  cursor: pointer;
}

.hamburger-icon span {
  width: 100%;
  height: 2px;
  background-color: black;
  transition: all 0.3 ease-in-out;
}

.hamburger-icon span {
  width: 100%;
  height: 2px;
  background-color: black;
  transition: all 0.3 ease-in-out;
}

.menu-links {
  position: absolute;
  top: 100%;
  right: 0;
  width: fit-content;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3 ease-in-out;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: none;
}

.menu-links a {
  display: block;
  padding: 10px;
  text-align: center;
  font-size: 1.5rem;
  color: black;
  text-decoration: none;
  transition: all 0.3 ease-in-out;
}

.menu-links a:hover {
  color: #26428b;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
  text-decoration-color: rgb(181, 181, 181);
}

.menu-links li {
  list-style: none;
}

.menu-links.open {
  max-height: 400px;
}

.hamburger-icon.open span:first-child {
  transform: rotate(45deg) translate(10px, 5px);
}

.hamburger-icon.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-icon.open span:last-child {
  transform: rotate(-45deg) translate(10px, -5px);
}

.hamburger-icon span:first-child {
  transform: none;
}

.hamburger-icon span:first-child {
  opacity: 1;
}

.hamburger-icon span:first-child {
  transform: none;
}

/* SECTIONS */

section {
  /* padding-top: 4vh; */
  height: auto;
  padding: 1rem;
}

/* PROFILE SECTION */

#profile {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  height: 87vh;
  margin-bottom: 7rem;
}

.profile_pic_container {
  display: flex;
  height: 400px;
  width: 400px;
  margin: auto 0;
}

.profile_about {
  margin: 1rem 0;
}

/* BUTTONS */

.btn-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  font-weight: 600;
  transition: all 300ms ease;
  padding: 1rem;
  width: 8rem;
  border-radius: 2rem;
}

.btn-color-1,
.btn-color-2 {
  border: rgb(53, 53, 53) 0.1rem solid;
}

.btn-color-1:hover,
.btn-color-2:hover {
  cursor: pointer;
}

.btn-color-1,
.btn-color-2:hover {
  background: rgb(53, 53, 53);
  color: white;
}

.btn-color-1:hover {
  background: rgb(0, 0, 0);
}

.btn-color-2 {
  background: none;
}

.btn-color-2:hover {
  border: rgb(255, 255, 255) 0.1rem solid;
}

.btn-container {
  gap: 1rem;
}

/* SKILLS */

.skill-bar {
  background-color: #ddd;
  width: 100%;
  height: 10px;
  margin: 0.5rem 0;
  border-radius: 5px;
}

.level {
  height: 100%;
}

.competent {
  width: 33%;
  background-color: #a3bce3;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.proficient {
  width: 66%;
  background-color: #5679c9;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.experienced {
  width: 100%;
  background-color: #26428b;
  border-radius: 5px;
}

/* Experience */



/* FOOTER SECTION */

footer {
  height: auto;
  margin: 0 5%;
  text-align: center;
  padding: 1rem;
}
