.hero-section {
	color: var(--primary-text-color);
	background: url('hero_section_background.png') center center / cover no-repeat;
	border-radius: var(--primary-border-radius);
	min-height: 60vh;
	padding: 40px 20px 60px;
	position: relative;
	overflow: hidden;
}

.hero-section h1 {
	color: var(--primary-text-color);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
	font-size: clamp(1.8rem, 4vw + 1rem, 3.2rem);
}

.hero-section h2 {
	color: var(--primary-text-color);
	font-size: clamp(1.7rem, 2vw + 0.5rem, 2rem);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.custom-uk-text-lead {
	color: var(--primary-text-color);
	font-size: clamp(1.2rem, 2vw + 0.5rem, 2rem);
}

.hero-section .uk-container {
	position: relative;
	z-index: 2;
	padding-right: 0;
	width: 120%;
}
@media (max-width: 992px) {
	.hero-section .uk-container {
		width: 100%;
		padding-right: 30px;
	}
	
	.hero-section .uk-container .uk-grid-collapse {
		justify-content: center;
		width: 850px;
	}
}
@media (max-width: 960px) {
	.hero-section .uk-container .uk-grid-collapse {
		width: 100%;
		margin: 0 auto;
	}
}
@media (max-width: 680px) {
  .hero-section .uk-container {
    width: 100%;
    padding: 0 15px;
  }

  .hero-section h1,
  .hero-section h2 {
    text-align: center;
  }

  .uk-flex-right {
    align-items: center;
  }

  .hero-section .uk-container .uk-grid-collapse {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 100%;
  }
}
/* TODO */
@media (max-width: 409px) {
  .hero-section .uk-container {
    width: 100%;
    padding: 0 15px;
  }

  .hero-section h1,
  .hero-section h2 {
    text-align: center;
  }

  .uk-flex-right {
    align-items: center;
  }

  .hero-section .uk-container .uk-grid-collapse {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 409px) {
  .hero-section .uk-container .uk-grid-collapse {
    width: 103%;
    max-width: 103%;
  }
}
@media (max-width: 396px) {
  .hero-section .uk-container .uk-grid-collapse {
    width: 110%;
    max-width: 110%;
    margin-left: -1.5rem;
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(255, 255, 255, 0.25) 0%, transparent 18%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, transparent 18%),
    linear-gradient(to left, rgba(255, 255, 255, 0.25) 0%, transparent 18%),
    linear-gradient(to right, rgba(255, 255, 255, 0.25) 0%, transparent 18%);
}

.hero-overlay {
	background-color: rgba(0, 0, 0, 0.05);
	z-index: 1;
}

.hero-contrast-background {
	margin-top: -28px;
	background-color: rgba(0, 0, 0, 0.2);
	padding: 10px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-radius: var(--primary-border-radius);
}

.custom-uk-button {
	background-color: var(--primary-background-color);
	color: var(--primary-text-color);
	font-size: clamp(1.3rem, 1.5vw + 0.5rem, 1.4rem);
	border: none;
	text-align: center;
	margin: 0 auto;
	max-width: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 4.4rem;
	width: 100%;
	max-width: 350px;
}