:root {
  --primary-color: rgba(137, 133, 164);
  --primary-font-color: rgba(255, 255, 255);
  --secondary-font-color: rgba(0, 0, 0);
  --purple-font-color: rgba(94, 45, 225);
  --primary-font-size: 36px;
  --primary-font-size-smaller: 30px;
  --primary-font-size-mobile: 36px;
  --secondary-font-size: 19px;
  --secondary-font-size-smaller: 16px;
  --secondary-font-size-mobile: 19px;
  --primary-line-space: 36px;
  --primary-line-space-smaller: 30px;
  --primary-line-space-mobile: 36px;
  --secondary-line-space: 19px;
  --secondary-line-space-smaller: 16px;
}

@font-face {
  font-family: "Helvetica Neue Black";
  src: url("fonts/HelveticaNeueLTPro-Blk.otf") format("opentype");
  font-weight: 900;
}
@font-face {
  font-family: "Fedra Sans";
  src: url("fonts/FedraSansL-Demi.otf") format("opentype");
  font-weight: 900;
}

html,
body {
  background-color: var(--primary-color);
  font-family: "Helvetica Neue Black";
  margin: 0;
  padding: 20px 0;
}

header {
  color: #fff;
  text-align: center;
  padding: 1em 0;
}

/* DESKTOP - STATIC SECTION */
.logo {
  position: fixed;
  display: flex;
  align-items: flex-start;
  top: -130px;
  left: -10px;
  z-index: 5;
}

.logo img {
  max-width: 500px;
  height: auto;
}

.highlight-text {
  font-family: "Fedra Sans";
  color: #fff;
}

.left-column,
.right-column {
  width: 50%;
}

.left-column {
  position: fixed;
  top: 0;
  bottom: 0;
  max-width: 49%;
  height: 100vh;
  padding-left: 10px;
  margin-left: 30px;
  z-index: 0;
}

.right-column {
  padding: 30px 60px 30px 30px;
  margin-left: 50vw;
  overflow-y: auto;
  box-sizing: border-box;
  line-height: var(--primary-line-space);
}

.start-container {
  margin-top: 45vh;
}

.start-header {
  font-size: var(--primary-font-size);
  color: white;
  margin-bottom: 30px;
  margin-top: 0;
}

.start-text {
  font-size: var(--primary-font-size);
  line-height: var(--primary-line-space);
  margin-bottom: 0;
  margin-top: 0;
}

.social-media-container img {
  max-width: 40px;
  height: auto;
  margin-right: 10px;
}

.footer-links a {
  display: block;
  font-size: var(--secondary-font-size);
  color: black;
}

.footer-links a:hover {
  color: white;
  text-decoration: none;
}
.footer-links a:focus {
  color: white;
  text-decoration: none;
}

p {
  font-size: var(--primary-font-size);
}

.collapse-header {
  font-size: var(--primary-font-size);
  text-decoration: underline;
}

.collapse-servie p {
  font-size: var(--secondary-font-size);
  line-height: var(--secondary-line-space);
  font-weight: lighter;
}

.collapse-more-button {
  font-size: var(--primary-font-size);
  text-decoration: underline;
}

.collapse-less-button {
  font-size: var(--primary-font-size);
  text-decoration: underline;
  margin-bottom: 10%;
}

.collapse-img-container img {
  width: 20%;
}

.desktop-nav {
  position: fixed;
  top: 30px;
  right: 0;
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  z-index: 5;
  width: 100vw;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  text-align: start;
}

nav a {
  color: white;
  font-size: var(--secondary-font-size);
  text-decoration: underline;
  position: relative;
  display: block;
  margin: 0 40px;
}

nav a:hover {
  color: black;
  text-decoration: none;
}

.content-section {
  padding-top: 10%;
  letter-spacing: -0.5px;
}

.block {
  text-align: justify;
}

.small-content,
.small-content p {
  font-size: var(--secondary-font-size);
  line-height: var(--secondary-line-space);
}

.image-container {
  display: flex;
  justify-content: flex-end;
}

.image-container img {
  width: 100%;
}

.signature img {
  width: 100%;
  margin-top: -15%;
}

.burger-menu {
  display: none;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
}

.break-long-words {
  overflow-wrap: break-word;
  hyphens: auto;
}

.purple-font {
  color: var(--purple-font-color);
}

@media only screen and (min-width: 1025px) and (max-width: 1400px) {
  .logo {
    top: 0px;
  }

  .logo img {
    max-width: 400px;
    height: auto;
  }
}

@media only screen and (min-width: 1025px) {
  .mobile-content {
    display: none;
  }

  .mobile-nav {
    display: none;
  }
}

/* mobile: 320px — 480px, */
/* iPads, Tablets – 481px — 768px. */

/* SMALLER DEVICES */
@media only screen and (max-width: 1024px) {
  p {
    font-size: var(--primary-font-size-mobile);
  }
  .right-column {
    display: none;
  }

  .left-column {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  header {
    display: none;
  }

  .content-section-mobile {
    letter-spacing: -0.5px;
  }

  .mobile-nav {
    display: inline;
  }

  .mobile-header {
    position: fixed;
    z-index: 800;
    top: 40px;
    width: 70vw;
    color: #fff;
    font-size: var(--primary-font-size-mobile);
    text-decoration: underline;
    overflow-wrap: break-word;
    margin: 0;
  }

  #about-me-header {
    line-height: 3.5rem;
  }

  .burger-menu-container,
  .close-icon {
    position: fixed;
    right: 10px;
    z-index: 900;
    display: flex;
    justify-content: flex-end;
    margin-right: 20px;
  }

  .burger-menu {
    display: flex;
    flex-direction: column;
  }

  .close-icon {
    top: 30px;
    right: 10px;
    color: #fff;
    font-size: var(--primary-font-size-mobile);
    cursor: pointer;
  }

  .logo-mobile {
    display: flex;
    justify-content: center;
    position: relative;
    bottom: 160px;
    left: 0;
  }

  .logo-mobile img {
    max-width: 600px;
    height: auto;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    background-color: var(--primary-color);
    z-index: 1000;
  }

  .mobile-menu nav {
    position: fixed;
    top: 50px;
    right: 0;
    left: 30px;
    height: 100vh;
    width: 70%;
    overflow-y: scroll;
  }

  .mobile-menu nav ul {
    flex-direction: column;
    gap: 20px;
  }

  .mobile-menu nav ul li a {
    color: #000;
    text-decoration: underline;
  }

  .social-media-mobile {
    margin-top: 25px;
    display: flex;
    margin-bottom: 100px;
  }

  nav a {
    color: white;
    font-size: var(--primary-font-size);
    text-decoration: underline;
    position: relative;
    display: block;
    margin: 0 10px;
  }

  nav a:hover,
  nav a:focus {
    color: black;
    text-decoration: none;
  }

  .social-media-mobile img {
    justify-content: flex-start;
    width: auto;
    height: 30px;
  }

  .social-media-mobile-start {
    display: flex;
    gap: 10px;
  }

  .social-media-mobile-start img {
    width: 50px;
    height: auto;
    margin-right: 10px;
  }

  .mobile-content {
    padding: 0px 20px 20px 20px;
    line-height: var(--primary-line-space-mobile);
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .start-header-mobile {
    font-size: var(--primary-font-size-mobile);
    color: #fff;
  }

  .mobile-me-image-container {
    padding: 0;
    margin: -60px -20px;
  }

  .mobile-about-me-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
  }

  .mobile-content-container {
    margin-top: 100px;
  }

  .collapse-img-container {
    margin: 0px;
  }
  .collapse-img-container img {
    width: 20%;
  }

  .start-container-mobile {
    position: relative;
    top: -280px;
  }

  .social-media-mobile img {
    justify-content: flex-start;
    width: auto;
    height: 60px;
  }

  .social-media-mobile-start {
    display: flex;
    gap: 10px;
  }

  .social-media-mobile-start img {
    width: 60px;
    height: auto;
    margin-right: 10px;
  }

  .logo-mobile {
    top: -90px;
  }

  .logo-mobile img {
    max-width: 500px;
    height: auto;
  }
}

/* MOBILE */
@media only screen and (max-width: 630px) {
  p {
    font-size: var(--primary-font-size-mobile);
  }

  .logo-mobile {
    top: -90px;
  }

  .logo-mobile img {
    max-width: 400px;
    height: auto;
  }

  .mobile-menu nav {
    font-size: var(--secondary-font-size);
  }

  .mobile-menu nav ul li a {
    color: #000;
    text-decoration: underline;
  }

  nav a {
    font-size: var(--secondary-font-size);
  }

  .start-container-mobile {
    top: -250px;
  }
}
