/* //////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Hero Section */

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
}

@media (min-width: 1440px) {
  .hero {
    height: calc(100vh - 14.4rem);
  }
}

.hero-home {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.95)
    ),
    url(../../src/assets/images/hero-home-mobile.webp);
  background-position: top;
  background-size: cover;
}

.hero-services {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.95)
    ),
    url(../../src/assets/images/hero-services-mobi.webp);
  background-position: top;
  background-size: cover;
}

.hero-fleet {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.95)
    ),
    url(../../src/assets/images/hero-fleet-mobile.webp);
  background-position: top;
  background-size: cover;
}

.hero-pink-lady {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.95)
    ),
    url(../../src/assets/images/hero-pink-lady-mobile.webp);
  background-position: top;
  background-size: cover;
}

.hero-thank-you {
  height: 100vh !important;
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.95)
    ),
    url(../../src/assets/images/hero-home-mobile.webp);
  background-position: top;
  background-size: cover;
}

@media (min-width: 1024px) {
  .hero-home {
    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.95)
      ),
      url(../../src/assets/images/hero-home-desktop.webp);
  }

  .hero-services {
    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.95)
      ),
      url(../../src/assets/images/hero-services-desktop.webp);
  }

  .hero-fleet {
    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.95)
      ),
      url(../../src/assets/images/hero-fleet-desktop.webp);
  }

  .hero-pink-lady {
    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.95)
      ),
      url(../../src/assets/images/hero-pink-lady-desktop.webp);
  }

  .hero-thank-you {
    height: 100vh !important;
    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.95)
      ),
      url(../../src/assets/images/hero-home-desktop.webp);
  }
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Content Container */

.hero-content-container {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  padding: 0 2.4rem;
  margin-top: 4.8rem;
  transition: all 0.3s ease-in-out;
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Sub Title */

.hero-subtitle {
  font-family: quicksand, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6rem;
  color: var(--white);
  text-shadow: 0 0 1.2rem 0 var(--shadow);
  margin-bottom: 1.2rem;
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Services - Hero Sub Title */

.hero-services-subtitle {
  max-width: 38rem;
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Fleet - Hero Sub Title */

.hero-fleet-subtitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-fleet-subtitle {
    flex-direction: row;
    gap: 1.2rem;
  }
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Main Title */

.hero-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: montserrat, sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 0 1.2rem 0 var(--shadow);
  margin-bottom: 0.6rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.8rem;
    margin-bottom: 0.8rem;
  }
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Services - Main Title */

.hero-services-title {
  margin-bottom: 3.6rem;
}

@media (min-width: 768px) {
  .hero-services-title {
    flex-direction: row;
    gap: 1.6rem;
    margin-bottom: 7.2rem;
  }
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Fleet - Main Title */

.hero-fleet-title {
  margin-bottom: 3.6rem;
}

@media (min-width: 768px) {
  .hero-fleet-title {
    margin-bottom: 7.2rem;
  }
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Text */

.hero-text {
  color: var(--white);
  text-shadow: 0 0 1.2rem 0 var(--shadow);
  margin-bottom: 3.6rem;
}

.hero-home-text {
  max-width: 39.5rem;
}

@media (min-width: 768px) {
  .hero-text {
    margin-bottom: 7.2rem;
  }

  .hero-home-text {
    max-width: 52.7rem;
  }
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Button Container */

.hero-button-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
}

@media (min-width: 768px) {
  .hero-button-container {
    flex-direction: row;
    gap: 3.6rem;
  }
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////// */
/* CTAs */

.hero-cta-one {
  border-radius: 1.8rem 0 0 0 !important;
  width: 22.323rem !important;
}

@media (min-width: 768px) {
  .hero-cta-one {
    width: max-content !important;
  }
}

.hero-cta-two {
  border-radius: 0 0 1.8rem 0;
  color: var(--grey) !important;
  background-color: var(--white) !important;
}

.hero-cta-two:focus {
  color: var(--grey) !important;
  background-color: var(--white) !important;
}

.hero-cta-two:focus-visible {
  color: var(--white) !important;
  background-color: var(--grey) !important;
}

.hero-cta-two:active {
  color: var(--white) !important;
  background-color: var(--grey) !important;
}

@media (min-width: 1280px) {
  .hero-cta-two:hover {
    color: var(--white) !important;
    background-color: var(--grey) !important;
  }

  .hero-cta-two:active {
    color: var(--grey) !important;
    background-color: var(--white) !important;
  }
}
