/* Hero Page Component Styles */

/* Hero Section */
.hero-page {
  position: relative;
  background: linear-gradient(135deg,
      rgba(57, 94, 136, 0.35) 0%,
      rgba(57, 94, 136, 0.35) 100%);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--berloga-white);
  text-align: center;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-page__container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

/* Breadcrumbs */
.hero-page__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--regular-text-font-family);
  font-size: 16px;
  font-weight: 600;
}

.hero-page .hero-page__breadcrumbs .hero-page__breadcrumb {
  color: var(--berloga-white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.hero-page__breadcrumb:hover {
  opacity: 1;
}

.hero-page__breadcrumb--current {
  opacity: 1;
  font-weight: 600;
}

.hero-page__breadcrumb-separator {
  opacity: 0.6;
}

/* Hero Title */
.hero-page__title {
  font-family: var(--h1-font-family, 'Nunito', sans-serif);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--berloga-white);
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}



/* Responsive Design */

/* Desktop 1440px */
@media (max-width: 1440px) {
  .hero-page__title {
    font-size: 56px;
  }
}

/* Desktop 1200px */
@media (max-width: 1200px) {
  .hero-page__title {
    font-size: 48px;
  }

  .hero-page {
    min-height: 550px;
  }

  .hero-page__container {
    gap: 35px;
  }
}

/* Tablet 1024px */
@media (max-width: 1024px) {
  .hero-page {
    min-height: 500px;
  }

  .hero-page__title {
    font-size: 52px;
  }

  .hero-page__container {
    gap: 30px;
  }

  .hero-page__cta {
    padding: 16px 32px;
    font-size: 17px;
  }
}

/* Mobile 768px */
@media (max-width: 768px) {
  .hero-page {
    min-height: 400px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }

  .hero-page__title {
    font-size: 40px;
  }

  .hero-page__breadcrumbs {
    font-size: 14px;
    gap: 8px;
  }

  .hero-page__container {
    gap: 25px;
  }

  .hero-page__cta {
    padding: 15px 30px;
    font-size: 16px;
  }
}

/* Mobile Small 480px */
@media (max-width: 480px) {
  .hero-page {
    min-height: 350px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }

  .hero-page__container {
    padding: 0 15px;
    gap: 20px;
  }

  .hero-page__title {
    font-size: 32px;
  }

  .hero-page__cta {
    padding: 15px 30px;
    font-size: 16px;
  }

  .hero-page__breadcrumbs {
    font-size: 13px;
    gap: 6px;
    flex-wrap: wrap;
  }
}

/* Mobile Extra Small 350px */
@media (max-width: 350px) {
  .hero-page__title {
    font-size: 28px;
  }

  .hero-page__container {
    padding: 0 12px;
    gap: 18px;
  }

  .hero-page__cta {
    padding: 14px 24px;
    font-size: 15px;
  }
}