/*
 * Minimal Style - Hero V1 Clean
 * Ultra-clean centered hero with maximum whitespace
 * Prefix: fl-min-hero1-*
 */

/* === Hero Wrapper === */

.fl-min-hero1 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 80px 24px;
  background-color: #FFFFFF;
  overflow: hidden;
}

@media (min-width: 768px) {
  .fl-min-hero1 {
    min-height: 90vh;
    padding: 120px 48px;
  }
}

@media (min-width: 1024px) {
  .fl-min-hero1 {
    min-height: 100vh;
    padding: 0 80px;
  }
}

/* === Hero Content === */

.fl-min-hero1__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
}

/* === Badge === */

.fl-min-hero1__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999999;
  border: 1px solid #E5E5E5;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .fl-min-hero1__badge {
    margin-bottom: 48px;
  }
}

/* === Title === */

.fl-min-hero1__title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: #111111;
  letter-spacing: -0.03em;
}

.fl-min-hero1__title-highlight {
  color: #DC2626;
}

/* === Subtitle === */

.fl-min-hero1__subtitle {
  margin-top: 24px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  color: #999999;
  max-width: 560px;
}

@media (min-width: 768px) {
  .fl-min-hero1__subtitle {
    margin-top: 32px;
  }
}

/* === Divider === */

.fl-min-hero1__divider {
  width: 48px;
  height: 1px;
  background-color: #E5E5E5;
  margin: 40px 0;
}

@media (min-width: 768px) {
  .fl-min-hero1__divider {
    margin: 56px 0;
  }
}

/* === Actions === */

.fl-min-hero1__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

@media (min-width: 480px) {
  .fl-min-hero1__actions {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }
}

.fl-min-hero1__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 16px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #111111;
  border-radius: 0;
  background: transparent;
  color: #111111;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fl-min-hero1__btn:hover {
  background: #111111;
  color: #FFFFFF;
}

.fl-min-hero1__btn--primary {
  border-color: #DC2626;
  color: #DC2626;
}

.fl-min-hero1__btn--primary:hover {
  background: #DC2626;
  color: #FFFFFF;
}

.fl-min-hero1__btn--ghost {
  border-color: transparent;
}

.fl-min-hero1__btn--ghost:hover {
  border-color: #111111;
}

/* === Image / Media === */

.fl-min-hero1__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fl-min-hero1__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.06;
}

.fl-min-hero1__content {
  position: relative;
  z-index: 1;
}

/* === Bottom Fade === */

.fl-min-hero1__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, #FFFFFF, transparent);
  pointer-events: none;
}
