body, html {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  height: 100%;
  background-image: url(../images/Whitebg.png);
  background-color: #fff;
  cursor: none;
  cursor: url("../images/cursor.png") 8 8, auto;
  overflow-x: hidden;
}

:root{
  --blue: #082567 ;
  --orange: #D9644A ;

  --playfair: 'Playfair Display', serif;
  --impact: 'Anton', sans-serif;
  --racing: 'Racing Sans One', cursive;
  --lobster: 'Lobster', cursive;
}

p {
  font-size: 18px;
  line-height: 1.2;
  margin: 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  padding: 0 4rem;
  background-color: transparent;
  transition: background-color 0.3s ease;
  z-index: 102;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.699);
  backdrop-filter: blur(4px);
}

.logo {
  padding: 0.5rem 4rem 0.5rem 1rem;
  img {
    width: 8.8rem;
    height: auto;
  }
}

header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  width: 28rem;
  padding: 0.8rem 0;
  gap: 4rem;
  background: white;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  list-style: none;
  
  li {
    list-style: none;
    height: 3.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }

  a {
      font-size: 1.25rem;
      text-decoration: none;
      display: inherit;
      justify-content: inherit;
      align-items: inherit;
      height: 100%;
      font-weight: lighter;
  }
}

.navbar-toggler {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  color: var(--blue);
}

.navbar-toggler .navbar-icon {
  width: 100%;
  height: 0.2rem;
  background-color: var(--blue);
  transition: all 0.3s ease;
  position: relative;
}

.navbar-toggler .navbar-icon::before,
.navbar-toggler .navbar-icon::after {
  right: 0;
  content: '';
  position: absolute;
  width: 100%;
  height: 0.2rem;
  background-color: var(--blue);
  transition: all 0.3s ease;
}

.navbar-toggler .navbar-icon::before {
  top: -0.40rem;
  }

.navbar-toggler .navbar-icon::after {
  top: 0.40rem;
}

.lets-talk-btn {
  color: var(--blue);
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 100;
  transition: color 0.3s ease, transform 0.3s ease;
}

.lets-talk-btn:hover {
  color: var(--orange);
  transform: scale(1.1);
}

.text-label {
  white-space: nowrap;
  font-weight: bold;
  transition: color 0.3s ease;
  font-size: 1.25rem;
}

/* Mobile menu */
.navbar-links {
  position: fixed;
  top: 0;
  right: 20px;
  width: 100%;
  max-width: 200px;
  height: max-content;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 102;
  display: none;
  background-color: white;
  padding: 1rem;
  margin: 0;
  gap: 0;
  border-radius: 0;
  outline: none;
}

.navbar-links.show {
  display: flex;
}

.navbar-links li {
  height: auto;
  margin: 0.2rem 0;
}

.navbar-links a {
  font-size: 20px;
  padding: 0;
}

.navbar-links a:hover {
  color: var(--orange);
}

.logo-mobile {
  display: none;
  right: 10px;
}

@media (pointer: coarse) {
  body {
    cursor: auto;
  }
  /* .custom-cursor {
    display: none;
  } */
}

@media (max-width: 1090px) {
  header img {
    margin: 0 1rem;
    width: 120px;
  }

  header nav {
    gap: 2.5rem;
    width: 50vw;
    padding: 0 1rem;
  }

  .lets-talk-btn {
    right: 1rem;
    top: 1.3rem;
  }
}

@media (max-width: 776px) {
  p {
    font-size: 16px;
  }

  header {
    padding: 1rem;
    justify-content: right;
    backdrop-filter: none;
    outline: none;
    background-color: transparent;
  }
  header nav { background: none; }

  header.scrolled {
    background-color: transparent;
    backdrop-filter: none;
  }

  .logo {
    display: none;
  }

  .logo-mobile {
    display: block;
    margin-bottom: 1rem;
  }

  .navbar-links {
    max-width: none;
    right: 0;
  }

  .navbar-links a {
    font-size: 1rem;
  }

  .navbar-toggler {
    display: flex;
    color: var(--blue);
    width: 1.5rem;
  }

  .navbar-toggler .navbar-icon {
    height: 0.15rem;
    box-shadow: 0px 2px rgb(255 255 255);
  }
  .navbar-toggler .navbar-icon::before,
  .navbar-toggler .navbar-icon::after {
    height: 0.15rem;
    box-shadow: 0px 2px rgb(255 255 255);
  }
  .navbar-toggler .navbar-icon::before {
    top: -0.3rem;
    }
  .navbar-toggler .navbar-icon::after {
    top: 0.3rem;
  }
  .lets-talk-btn {
    display: none;
  }
}

@media (max-width: 546px) {
  p {
    font-size: 14px;
  }
}