:root {
  --heading-font-family: "Playfair Display", serif;
  --branding-color: #6c63ff;
  --accent-font-family: "Poppins", sans-serif;
  --mask: radial-gradient(47.34px at 50% 64.8px, #000 99%, #0000 101%)
      calc(50% - 48px) 0/96px 100%,
    radial-gradient(47.34px at 50% -40.8px, #0000 99%, #000 101%) 50% 24px/96px
      100% repeat-x;
  --deepcalm-color: #bed4e9;
  --lightcalm-color: #f9f7fe;
  --deepdeepcalm-color: #8f5774;
  --lightpink-color: #fceeed;
  --mediumcalm-color: #dac4d0;
}

body {
  font-family: var(--accent-font-family);
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  font-family: var(--heading-font-family);
}

.container {
  max-width: 1100px;
}

h1 {
  font-weight: 700;
  font-size: 96px;
  color: black;
}

.content-container h1 {
  font-family: var(--heading-font-family);
  font-size: 50px;
}

h2 {
  font-size: 35px;
}

.img-work {
  width: auto;
  height: auto;
  object-fit: cover;
}

.content-container h2 {
  font-family: var(--accent-font-family);
  font-size: 2em;
}

.content h3 {
  font-family: var(--accent-font-family);
  font-weight: 700;
  font-size: 24px;
  text-align: center;
}

p {
  font-family: var(--accent-font-family);
  font-weight: normal;
  font-size: 16px;
  line-height: 2;
}

a {
  text-decoration: none;
}

.logo-name {
  font-size: 25px;
  margin: 0;
  color: #c24d2c;
}

.content-container p {
  font-family: var(--accent-font-family);
  font-size: 16px;
  font-weight: 400;
}

.work-para {
  font-family: var(--accent-font-family);
  font-size: 14px;
  text-align: center;
}

.hero {
  background-color: #f9f7fe;
  text-align: center;
  padding: 100px 20px;
}

.content-container {
  padding: 100px 60px;
}

.content {
  margin: 20px;
}

.location {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.5;
  color: #272142;
}

.btn-branding {
  background-color: var(--branding-color);
  color: white;
  font-size: 15px;
  padding: 18px 30px;
  border-radius: 4px;
}

.based-text {
  font-size: 24px;
  line-height: 2;
}

.btn-branding-outline {
  color: var(--branding-color);
  font-size: 15px;
  padding: 18px 30px;
  border-radius: 4px;
  border: 1px solid var(--branding-color);
}

.project-description {
  padding: 50px 40px;
}

.about-image {
  border-radius: 4px;
}

nav {
  padding: 20px 0;
}

.nav-hamburger {
  display: flex;
  visibility: visible;
}

/* why did they add position. it doesnt help anything */

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fa-bars {
  color: #c24d2c;
  font-size: 25px;
}

.nav-links {
  padding: 0;
  margin: 0;
}

.nav-links li {
  display: inline;
  list-style: none;
  margin-left: 15px;
}

.nav-links a {
  text-decoration: none;
  color: #272142b2;
  transition: all 100ms ease-in-out;
}

.nav-links a:hover {
  color: #6c63ff;
}

.nav-mobile-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle-button {
  cursor: pointer;
  display: none;
}

footer .email-link {
  text-align: center;
  text-decoration: none;
  color: black;
  font-size: 24px;
}

footer .email-link:hover {
  color: var(--branding-color);
}

.social-links {
  font-size: 25px;
  margin: 0 20px;
  padding: 10px 14px;
  color: var(--branding-color);
  text-decoration: none;
  border-radius: 50%;
}

.social-links:hover {
  transition: all 100ms ease-in-outs;
  color: white;
  background-color: var(--branding-color);
}

.footer-inquiry {
  background: #f9f7fe;
  padding: 30px;
  border-radius: 10px;
}

.work-link {
  margin: 0 auto;
  display: block;
}

.container {
  max-width: 1400px;
}

.project-links {
  padding: 12px 10px;
}

.project-details-1 {
  background-color: var(--lightpink-color);
  padding: 3rem;
}

.project-details-2 {
  background-color: var(--mediumcalm-color);
  padding: 3rem;
}

.project-details-3 {
  background-color: var(--lightcalm-color);
  padding: 3rem;
}

@media (max-width: 900px) {
  h1 {
    font-size: 40px;
  }

  .project-links {
    margin-bottom: 8px;
  }

  .work-card-wrapper {
    margin-bottom: 0.4rem;
  }

  .weather-app-wrapper {
    padding-top: 16px;
  }

  .img-work {
    height: auto;
  }

  .weather-container {
    padding-bottom: 16px;
  }

  h2 {
    font-size: 25px;
  }

  h5 {
    font-size: 14px;
  }
  .content-container {
    text-align: center;
    padding: 30px 20px;
  }

  .content-container h1 {
    font-size: 30px;
  }

  .hero {
    padding: 80px 20px;
  }

  .based-text {
    font-size: 14px;
  }

  .project-description {
    padding: 0;
    text-align: center;
  }

  nav {
    padding: 10px 0;
  }

  .toggle-button {
    display: block;
  }

  .nav-bar {
    display: block;
  }

  .nav-hamburger {
    display: none;
    visibility: hidden;
    height: 0;
    align-items: center;
  }

  .nav-hamburger-active {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    visibility: visible;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .nav-links li {
    display: inline;
    list-style: none;
    margin-left: 0;
    padding: 5px 0;
  }
}
