/* Landing Hero Component */
body {
  background-color: #cde8e7;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Landing Hero Container */
.landing-hero {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

/* Landing Hero Background */
.landing-hero__background {
  margin: 0;
  padding: 0;
  width: 100%;
  order: 2;
}

.landing-hero__background img {
  width: 100%;
  height: auto;
  display: block;
}

/* Landing Hero Content */
.landing-hero__content {
  padding: 40px 20px;
  order: 1;
  display: flex;
  align-items: center;
}

.landing-hero__wrapper {
  max-width: 500px;
  width: 100%;
}

.landing-hero__logo {
  max-width: 120px;
  width: 100%;
  height: auto;
  margin-bottom: 25px;
  display: block;
}

.landing-hero__title {
  font-family: var(--header-font-family);
  font-size: 32px;
  margin-bottom: 20px;
  color: #7B4A87;
  line-height: 1.2;
  text-transform: uppercase;
}

.landing-hero__description {
  font-family: var(--body-font-family);
  font-size: 16px;
  margin-bottom: 30px;
  color: #333;
  line-height: 1.6;
}

.landing-hero__button {
  display: inline-block;
  font-family: var(--accent-font-family);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
}

.landing-hero__button.button--primary {
  background-color: #7B4A87;
  border-color: #7B4A87;
}

.landing-hero__button.button--primary:hover {
  background-color: #633a6d;
  border-color: #633a6d;
}

/* Phone Only - Max 599px */
@media (max-width: 599px) {
  .landing-hero__content {
    padding: 30px 20px;
  }

  .landing-hero__logo {
    max-width: 100px;
  }

  .landing-hero__title {
    font-size: 36px;
  }

  .landing-hero__description {
    font-size: 17px;
  }
}

/* Tablet Portrait Up - Min 600px */
@media (min-width: 600px) {
  .landing-hero {
    flex-direction: row;
    position: relative;
  }

  .landing-hero__background {
    order: initial;
    width: 100%;
    height: 100vh;
    position: relative;
  }

  .landing-hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .landing-hero__content {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    padding: 0;
    order: initial;
    z-index: 1;
    max-width: 500px;
  }

  .landing-hero__wrapper {
    padding: 40px;
    background-color: #cde8e7;
    border-radius: 10px;
  }

  .landing-hero__logo {
    max-width: 130px;
  }

  .landing-hero__title {
    font-size: 36px;
  }

  .landing-hero__description {
    font-size: 17px;
  }
}

/* Tablet Portrait Only - 600px to 899px */
@media (min-width: 600px) and (max-width: 899px) {
  .landing-hero__content {
    max-width: 450px;
  }
}

/* Tablet Landscape Up - Min 900px */
@media (min-width: 900px) {
  .landing-hero__content {
    left: 60px;
    max-width: 500px;
  }

  .landing-hero__wrapper {
    padding: 50px;
    background-color: #cde8e7;
    border-radius: 10px;
  }

  .landing-hero__logo {
    max-width: 140px;
  }

  .landing-hero__title {
    font-size: 42px;
    margin-bottom: 25px;
  }

  .landing-hero__description {
    font-size: 18px;
    margin-bottom: 35px;
  }
}

/* Tablet Landscape Only - 900px to 1199px */
@media (min-width: 900px) and (max-width: 1199px) {
  .landing-hero__content {
    max-width: 520px;
  }
}

/* Desktop Up - Min 1200px */
@media (min-width: 1200px) {
  .landing-hero__content {
    left: 80px;
    max-width: 550px;
  }

  .landing-hero__wrapper {
    padding: 60px;
  }

  .landing-hero__logo {
    max-width: 150px;
  }

  .landing-hero__title {
    font-size: 48px;
    margin-bottom: 30px;
  }

  .landing-hero__description {
    font-size: 19px;
    margin-bottom: 40px;
  }
}

/* Desktop Only - 1200px to 1799px */
@media (min-width: 1200px) and (max-width: 1799px) {
  .landing-hero__title {
    font-size: 46px;
  }
}

/* Big Desktop Up - Min 1800px */
@media (min-width: 1800px) {
  .landing-hero__content {
    left: 100px;
    max-width: 600px;
  }

  .landing-hero__wrapper {
    padding: 70px;
  }

  .landing-hero__logo {
    max-width: 160px;
  }

  .landing-hero__title {
    font-size: 52px;
    margin-bottom: 35px;
  }

  .landing-hero__description {
    font-size: 21px;
    margin-bottom: 45px;
  }
}