#hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;

  @media (min-width: 576px) {
    height: 65vh;
  }

  @media (min-width: 768px) {
    height: 50vh;
  }

  .overlay {
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.75));
  }

  .hero-content-overlay {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    text-align: center;
    color: var(--color-text-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    h1.title {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    h2 {
      font-size: clamp(1.5rem, 4vw, 2rem);
      font-weight: 500;
      margin-bottom: 1rem;
    }

    p {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
      color: #ffffffe2;
    }

    strong {
        color: var(--color-primary) !important;
    }

    .cta-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;

      a {
        background-color: var(--color-primary);
        color: var(--color-text-white);
        padding: 0.6rem 1.5rem;
        border: none;
        border-radius: 0.5rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;

        &:hover {
          background-color: var(--color-primary-hover);
          transform: translateY(-3px);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
      }
    }
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  #hero .hero-content-overlay {
    width: 95%;
    padding: 0 1rem;

    h1.title {
      font-size: 2rem;
    }

    h2 {
      font-size: 1.5rem;
    }

    p {
      font-size: 0.95rem;
    }
  }
}

#hero .hero-corousel {
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}