/* ===============================
   SLIDE 1 – HERO
================================ */

#slide-1.hero-slide {
  width: 100vw;
  height: 100vh;
  background: #24007a; /* deep purple */
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 0 6vw; */
  overflow: hidden;
  padding-left: 6vw;
  position: relative;
}

/* LEFT CONTENT */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 80%;
  color: #fff;
}

.hero-logo {
  width: 190px;
  opacity: 0.9;
  margin-top: -30px;
  margin-left: -1rem !important;
}

/* Vertical text */
.hero-text {
  position: relative;
}

.hero-vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 100px;
  font-family: 'Libre Caslon Text', Georgia, serif !important;
  font-weight: 400;
  opacity: 0.08;
  /* position: absolute; */
  /* left: -40px; */
  bottom: 0;
}

.hero-title {
  font-size: 36px;
  font-family: 'Libre Caslon Text', Georgia, serif;
  margin-top: 40px;
}

/* RIGHT IMAGE */
.hero-image {
  height: 90%;
  display: flex;
  /* align-items: center; */
  /* top: 10%; */
}

.hero-image img {
  height: 100%;
  width: auto;
  max-width: 700px;
  object-fit: contain;
  margin-top: -4rem;
  margin-left: 7rem;
}


@media (max-width: 1024px) {

  #slide-1.hero-slide {
    padding: 0 4vw;
  }

  .hero-image {
    height: 75%;
  }

  .hero-vertical {
    font-size: 100px;
  }
}

@media (min-width: 900px){
  .hero-image img {
    margin-top: -6rem;
  }

}

@media (max-width: 768px) {

  #slide-1.hero-slide {
    height: auto;
    padding: 80px 20px 60px;
    /* justify-content: center; */
    align-items: start;
  }

  /* REMOVE IMAGE */
  .hero-image {
    display: none;
  }

  /* CENTER CONTENT */
  .hero-content {
    /* align-items: center; */
    text-align: center;
    height: auto;
    gap: 12rem;
  }

 

  .hero-title {
    font-size: 32px;
  }
}



/* =========================================================
   LARGE SCREENS (1600px+) — 16-inch laptops
========================================================= */
@media (min-width: 1600px) {

  #slide-1.hero-slide {
    padding-left: 8vw;
  }

  /* LOGO */
  .hero-logo {
    width: 180px;
    margin-left: 1rem;
  }

  /* VERTICAL TEXT */
  .hero-vertical {
    font-size: 150px;
  }

  /* HERO TITLE */
  .hero-title {
    font-size: 44px;
  }

  /* HERO CONTENT HEIGHT */
  .hero-content {
    height: 85%;
  }

  /* RIGHT IMAGE */
  .hero-image {
    height: 95%;
  }

  .hero-image img {
    max-width: 1030px;
    margin-left: 4rem;
    margin-top: -9rem;
  }
}

/* =========================================================
   EXTRA LARGE (1800px+)
========================================================= */
@media (min-width: 1800px) {

  #slide-1.hero-slide {
    padding-left: 10vw;
  }

  .hero-logo {
    width: 200px;
  }

  .hero-vertical {
    font-size: 180px;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-image img {
    max-width: 950px;
    margin-left: 2rem;
  }
}

/* =========================================================
   27-INCH / 2K SCREENS (2560px+)
========================================================= */
@media (min-width: 2560px) {
  #slide-1.hero-slide {
    padding-left: 12vw;
  }

  .hero-logo {
    width: 240px;
  }

  .hero-vertical {
    font-size: 220px;
  }

  .hero-title {
    font-size: 64px;
  }

  .hero-content {
    height: 80%;
  }

  .hero-image {
    height: 95%;
  }

  .hero-image img {
    max-width: 1200px;
    margin-left: 6rem;
    margin-top: -10rem;
  }
}

/* =========================================================
   4K SCREENS (3840px+)
========================================================= */
@media (min-width: 3840px) {
  #slide-1.hero-slide {
    padding-left: 14vw;
  }

  .hero-logo {
    width: 300px;
  }

  .hero-vertical {
    font-size: 300px;
  }

  .hero-title {
    font-size: 88px;
  }

  .hero-image img {
    max-width: 1600px;
    margin-left: 8rem;
    margin-top: -12rem;
  }
}

