:root {
  --branding-color: #a71254;
  --secondary-color: #84b3aa;
  --secondary-color-less: #84b3aa39;
  --heading-font-family: "Questrial", sans-serif;
  --default-font-family: "Poppins", sans-serif;
  --title-font-family: "Bodoni Moda", serif;
}

body {
  font-family: var(--default-font-family);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: black;
  font-family: var(--title-font-family);
  font-weight: bold;
}

h1 {
  font-size: 96px;
  line-height: 1.5;
}

h2 {
  font-size: 64px;
}

h3 {
  font-size: 48px;
}

a {
  color: var(--branding-color);
  font-family: "Poppins", sans-serif;
  text-align: center;
  text-decoration: none;
}

p {
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
}

.hero {
  background: var(--secondary-color-less);
  text-align: center;
  padding: 80px 20px;
}

.hero p {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
  color: #272142;
}

.hero h2 {
  font-family: var(--heading-font-family);
  font-weight: normal;
  line-height: 1.5;
  font-size: 24px;
}

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

.content h1 {
  font-size: 64px;
  line-height: 80px;
}

.content h2 {
  font-size: 18px;
  font-family: var(--default-font-family);
}

.content h3 {
  font-size: 24px;
  line-height: 1.5;
  font-family: var(--default-font-family);
}

.content p {
  font-size: 16px;
}

.content {
  margin: 30px;
}

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

.btn-behance {
  background: var(--secondary-color);
  border-radius: 4px;
  color: white;
  font-size: 18px;
  line-height: 27px;
  padding: 15px 30px;
  margin-bottom: 50px;
}

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

.project-description {
  padding: 120px 60px;
}

.logo {
  max-height: 40px;
}

.email-link {
  display: flex;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 28px;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

.email-link:visited {
  text-decoration-color: beige;
}

nav {
  padding: 20px 0;
}

nav ul {
  padding: 0;
  margin: 0;
}

nav li {
  display: inline;
  list-style: none;
  line-height: 42px;
  margin-left: 15px;
}

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

nav a:hover,
nav li.active a {
  color: var(--branding-color);
}

footer {
  margin: 60px 0;
}

footer .contact-box {
  background: var(--secondary-color-less);
  padding: 30px 120px;
  border-radius: 10px;
}

footer .contact-box p {
  margin: 0;
}

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

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

i {
  font-size: 24px;
  color: rgb(255, 255, 255);
}

/* Updated Social Links */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* Adds space between the icons */
  flex-wrap: wrap; /* Prevents icons from being squished on smaller screens */
  margin-top: 20px;
}

.social-links a {
  font-size: 24px; /* Increases icon size */
  color: var(--branding-color);
  background: var(--secondary-color);
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px; /* Ensures consistent circle size */
  height: 50px;
  transition: transform 0.2s ease-in-out, background 0.2s ease-in-out;
}

.social-links a:hover {
  color: white;
  background: var(--branding-color);
  transform: scale(1.1); /* Adds a slight zoom effect */
}

@media (max-width: 900px) {
  h1 {
    font-size: 44px;
    line-height: 1.5;
  }

  h2 {
    font-size: 44px;
  }

  h3 {
    font-size: 26px;
  }

  .content {
    text-align: left;
    padding: 0 20px;
  }

  .project-description {
    padding: 0 20px;
    text-align: left;
  }

  .social-links {
    gap: 15px; /* Adjust spacing for smaller screens */
  }

  .social-links a {
    font-size: 20px;
    width: 45px;
    height: 45px;
  }
}
