/**
 * Smort Page Hero Block Styles
 */

.smort-page-hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

/* Container — bakgrundsbild sitter här */
.smort-page-hero-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Height variants */
.smort-page-hero-small .smort-page-hero-container {
  min-height: 300px;
}

.smort-page-hero-medium .smort-page-hero-container {
  min-height: 400px;
}

.smort-page-hero-large .smort-page-hero-container {
  min-height: 500px;
}

/* Overlay */
.smort-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 1);
  z-index: 1;
}

/* Content */
.smort-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 0.8s ease-out;
}

.smort-page-hero-center .smort-page-hero-content {
  margin: 0 auto;
  text-align: center;
}

.smort-page-hero-left .smort-page-hero-content {
  text-align: left;
}

/* Breadcrumbs */
.smort-page-hero-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.smort-page-hero-breadcrumb-link {
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.smort-page-hero-breadcrumb-link:hover {
  opacity: 0.7;
}

.smort-page-hero-breadcrumb-separator {
  opacity: 0.5;
}

.smort-page-hero-breadcrumb-current {
  font-weight: 600;
}

/* Subtitle */
.smort-page-hero-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

/* Title */
.smort-page-hero-title {
  font-size: var(--text-7xl);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
}

/* Description */
.smort-page-hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
}

.smort-page-hero-center .smort-page-hero-description {
  margin-left: auto;
  margin-right: auto;
}

/* Button */
.smort-page-hero-button-wrapper {
  margin-top: 2rem;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .smort-page-hero-small {
    min-height: 250px;
  }

  .smort-page-hero-medium {
    min-height: 300px;
  }

  .smort-page-hero-large {
    min-height: 350px;
  }

  .smort-page-hero-breadcrumbs {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }

  .smort-page-hero-subtitle {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .smort-page-hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .smort-page-hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .smort-page-hero-button-wrapper {
    margin-top: 1.5rem;
  }
}

/* Responsive - Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .smort-page-hero-title {
    font-size: 2.5rem;
  }

  .smort-page-hero-description {
    font-size: 1rem;
  }
}
