#header {
  color: #ffffff;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  position: fixed;
  flex-wrap: wrap;
  width: 100%;
  padding: 2rem 5rem;
  left: 0;
  right: 0;

  z-index: 999999;

}
.menu-toggle {
  position: fixed;
  top: 1em;
  right: 2em;
  width: 120px;
  height: 60px;
  background-color: transparent;
  border-radius: 8em;
  transition: width 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transform-origin: right;
  cursor: pointer;
  z-index: 999;
}

.menu-toggle.opened {
  width: 60px;
}

.menu-copy {
  position: absolute;
  top: 42%;
  left: 40px;
  transform: translateY(-50%);
  color: #dadada;
  transition: left 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  z-index: 1;
}

.menu-copy p {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  margin: 0;
  padding-right: 1rem;
}

.menu-toggle:hover .menu-copy {
  left: 20px;
}

.menu-toggle.opened .menu-copy {
  opacity: 0;
}

.menu-toggle-icon {
  position: absolute;
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  clip-path: circle(10% at 50% 50%);
  background-color: #dadada;
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  z-index: 10;
  overflow: hidden;
}

.menu-toggle:hover .menu-toggle-icon {
  clip-path: circle(35% at 50% 50%);
  background-color: #f35a26;
}

.menu-toggle.opened .menu-toggle-icon {
  clip-path: circle(50% at 50% 50%);
  transform: scale(1.125);
}

.hamburger {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  opacity: 0;
}

.menu-toggle:hover .hamburger,
.menu-toggle.opened .hamburger {
  top: 50%;
  opacity: 1;
}

.menu-bar {
  position: absolute;
  width: 25px;
  height: 1px;
  background: #000;
  transition-property: transform;
  transition: all 250ms ease-out;
}

.menu-bar[data-position="top"] {
  transform: translateY(-3px);
}

.menu-bar[data-position="bottom"] {
  transform: translateY(3px);
}

.menu-toggle.opened .menu-bar[data-position="top"] {
  transform: translateY(0) rotate(45deg) scaleX(1.05);
}

.menu-toggle.opened .menu-bar[data-position="bottom"] {
  transform: translateY(0) rotate(-45deg) scaleX(1.05);
}

.menu {
  position: fixed;
  top: 0rem;
  right: 0rem;
  width: 25rem;
  height: 80vh;
  display: flex;
  background-color: #1d1d1d;
  backdrop-filter: blur(100px);

  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  pointer-events: none;
  transform-style: preserve-3d;
  perspective: 1000px;


  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 2rem;
}

.menu a {
  color: #ffffff;
  font-size: 2.5rem;

  font-family: "orpheuspro", serif;
  /* font-style: italic; */

  transition: 0.2s ease-in-out;

  font-weight: 400;

  width: 100;

}

.menu a:hover {
  color: #f35a26;
  transform: skew(-10deg); /* Skew the element */
  transition: transform 0.3s ease, color 0.3s ease; /* Smooth animation for the skew and color */
}

.links {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 1rem;

  position: absolute;
  bottom: 2rem;
  right: 2rem;
}

.social {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social a {
  font-size: 2rem;
  display: flex;
  background-color: #1d1d1d;
  padding: 1rem;
  border-radius: 50%;
  transition: 0.3s ease, color 0.3s ease;
}

.social a:hover {
  background-color: #f35a26;
  color: white;
  transform: skew(0); /* Skew the element */
}

.reel {
  background-color: #f35a26;
  width: 90%;
  height: 13rem;
  position: absolute;
  top: 5rem;
  border-radius: 0px;
clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);

background-image: url(https://images.unsplash.com/photo-1512663150964-d8f43c899f76?q=80&w=2796&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}

.logo {
  font-size: 1.5rem;
  font-family: "orpheuspro", serif;
  position: fixed;
  top: 1em;
  padding: 0.4rem;
}
.logo > a > h1 {
  color: white;
}
#head-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 1.1rem;
  border-radius: 100px;
}

#head-nav i {
  color: #f35a26;
  transition: color 0.3s ease;
}

#head-nav a {
  padding: 0.5rem;
  border-top: 1px solid transparent;

  transition: 0.3s ease-in-out;
}

#head-nav a:hover {
  color: #f35a26;
  border-top: 1px solid #f35a26;
}

.connect {
  padding: 0.7rem 1.5rem;
  font-size: 1.1rem;

  background-color: #f35a26;
  border-radius: 100px;
}






.text {
  text-decoration: none;
  font-family: "Krooner", serif;
  line-height: 1rem;
  color: var(--secondary);
  height:  1.1rem;
  overflow: hidden;
}

.text:hover .letter,
.text.play .letter {
  transform: translateY(-100%);
}

.text .block:last-child {
  color: var(--primary);
}

.text .letter {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

.letter:nth-child(1) {
  transition-delay: 0s;
}

.letter:nth-child(2) {
  transition-delay: 0.03s;
}

.letter:nth-child(3) {
  transition-delay: 0.06s;
}

.letter:nth-child(4) {
  transition-delay: 0.09s;
}

.letter:nth-child(5) {
  transition-delay: 0.12s;
}

.letter:nth-child(6) {
  transition-delay: 0.15s;
}

.letter:nth-child(7) {
  transition-delay: 0.18s;
}

.letter:nth-child(8) {
  transition-delay: 0.21s;
}

.letter:nth-child(9) {
  transition-delay: 0.24s;
}

.letter:nth-child(10) {
  transition-delay: 0.27s;
}

.letter:nth-child(11) {
  transition-delay: 0.3s;
}

.letter:nth-child(12) {
  transition-delay: 0.33s;
}


.logo1 a{
  color: white;
  font-size: 1.2rem;
}
.head-links a{
  color: var(--light);
  font-size: .7rem;

  font-family: "neue-kabel", sans-serif;

  text-transform: uppercase;
}
.head-links a:hover{
  color: var(--white);
}

.head-links{
  display: flex;
  flex-direction: column;
  text-align: right;
  gap: .5rem;
}



@media (max-width: 768px) {
  #header{
    padding: 1.6rem 1rem;
  }
}



@media (min-width: 787px) and (max-width: 1024px) {
  #header{
    padding: 3rem;
  }
}

