/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    background: #000;
    color: #f5f1e8;
  
    font-family:
      "Futura PT",
      "Futura",
      "Trebuchet MS",
      sans-serif;
  
    overflow-x: hidden;
    cursor: crosshair;
  
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  /* =========================
     GLOBAL
  ========================= */
  
  main {
    position: relative;
  }
  
  .container {
    width: 92%;
    max-width: 1600px;
    margin: 0 auto;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  img {
    display: block;
    max-width: 100%;
  }
  
  /* =========================
     HEADER
  ========================= */
  
  .header {
    position: fixed;
    top: 0;
    left: 0;
  
    width: 100%;
  
    padding: 38px 0;
  
    z-index: 1000;
  
    mix-blend-mode: difference;
  }
  
  .header-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  /* LOGO */
  
  .logo {
    font-size: 12px;
    font-weight: 500;
  
    letter-spacing: 0.35em;
  
    text-transform: uppercase;
  
    color: #fff;
  }
  
  /* NAV */
  
  .nav {
    display: flex;
    flex-direction: row;
    gap: 24px;
  }
  
  .nav-link {
    position: relative;
  
    font-size: 15px;
    font-weight: 500;
  
    letter-spacing: 0.35em;
  
    text-transform: uppercase;
  
    color: #fff;
  
    opacity: 0.75;
  
    transition:
      opacity 0.8s ease,
      transform 0.8s ease;
  }

  .nav-link.active {
    opacity: 1;
  }
  
  .nav-link:hover {
    opacity: 1;
    transform: translateY(-2px);
  }
  
  /* =========================
     HERO
  ========================= */
  
  .hero {
    position: relative;
  
    width: 100%;
    min-height: 100svh;

    overflow: hidden;
  
    background: #000;
  }
  
  /* BACKGROUND */
  
  .hero-background {
    position: absolute;
    inset: 0;
  
    width: 100%;
    height: 100%;
  
    z-index: 1;
  }
  
  /* GIF */
  
  .hero-gif {
    width: 100%;
    height: 100%;
  
    object-fit: cover;
  
    animation: slowZoom 18s ease-in-out infinite alternate;
  }
    
  .contact-content .social-link {
    letter-spacing: 0;
}

.hero-center {
    position: absolute;
  
    inset: 0;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    z-index: 20;
    flex-flow: column;
  
    /* pointer-events: none; */
  }
  
  /* HERO LOGO */
  
  .hero-logo{
    font-family:
      "Futura PT",
      "Futura",
      sans-serif;
  
    font-size: clamp(58px, 16vw, 130px);
  
    font-weight: 500;
  
    letter-spacing: .2em;
  
    text-transform: uppercase;
  
    color: #f5f1e84d;
  
    text-align: center;
  
    opacity: 0;
  
    animation: logoReveal 2s ease forwards;
  
    animation-delay: 2s;
  }

  .contact-content {

    font-size: clamp(40px, 12vw, 25px);
  
    font-weight: 500;
  
    letter-spacing: .2em;

    color: #f5f1e83d;
  
    text-align: center;
  
    opacity: 0;
  
    animation: logoReveal 2s ease forwards;
  
    animation-delay: 2s;
  }

  .social-link {
    display: inline-block;
  
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
  }
  
  .social-link:hover {
    opacity: 0.7;
    transform: translateY(-3px);
  }
  
  /* ANIMATION */
  
  @keyframes logoReveal {
  
    from {
      opacity: 0;
      transform: translateY(20px);
    }
  
    to {
      opacity: 1;
      transform: translateY(0);
    }
  
  }

  /*============ end ANIMATION GIF =====*/

  
  /* =========================
     FILM GRAIN
  ========================= */
  
  .grain {
    position: absolute;
    inset: -200%;
  
    background-image:
      url("https://grainy-gradients.vercel.app/noise.svg");
  
    opacity: 0.06;
  
    mix-blend-mode: soft-light;
  
    animation: grainMove 8s steps(10) infinite;
  
    pointer-events: none;
  
    z-index: 3;
  }