/* ====================
HERO IMAGE SECTION
==================== */
/* ====================
RESPONSIVE TYPOGRAPHY SYSTEM
==================== */
/* 
 * Responsive Typography Variables for Hero Image Section
 * 
 * This section defines all responsive font sizes and line heights
 * for easy management across different breakpoints.
 */
/* Desktop (default) - Large screens */
:root {
  /* Main Title */
  --hero-image-title-size: var(--font-size-2xl-plus); /* 72px */
  --hero-image-title-height: var(--line-height-2xl-plus); /* 80px */
  /* Description Text */
  --hero-image-description-size: var(--font-size-sm); /* 20px */
  --hero-image-description-height: var(--line-height-lg); /* 32px */
}

/* Tablet Breakpoint Variables */
@media (max-width: 1024px) {
  :root {
    /* Main Title - Tablet */
    --hero-image-title-size: var(--font-size-2xl); /* 64px */
    --hero-image-title-height: var(--line-height-4xl); /* 88px */
    /* Description Text - Tablet */
    --hero-image-description-size: var(--font-size-sm); /* 18px */
    --hero-image-description-height: var(--line-height-md); /* 24px */
  }
}
/* Mobile Breakpoint Variables */
@media (max-width: 740px) {
  :root {
    /* Main Title - Mobile */
    --hero-image-title-size: var(--font-size-xl); /* 48px */
    --hero-image-title-height: var(--line-height-2xl); /* 48px */
    /* Description Text - Mobile */
    --hero-image-description-size: var(--font-size-sm); /* 16px */
    --hero-image-description-height: var(--line-height-sm); /* 20px */
  }
}
/* ====================
MAIN SECTION
==================== */
.hero-image-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-4x);
  position: relative;
  padding-right: var(--spacing-2x);
  padding-left: var(--spacing-2x);
  width: 100%;
  background-color: var(--color-background);
  margin-bottom: var(--major-section-spacing);
}

/* ====================
HEADER GROUP
==================== */
.header-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
  width: 100%;
}

/* ====================
SECTION HEADER
==================== */
.section-header {
  align-self: stretch;
  text-align: center;
  position: relative;
}

.hero-image-title {
  color: var(--color-text);
  font-family: var(--font-family);
  font-size: var(--hero-image-title-size);
  font-weight: var(--font-weight-medium);
  line-height: var(--hero-image-title-height);
  margin: 0;
}

/* ====================
DESCRIPTION SECTION
==================== */
.description-section {
  align-self: stretch;
  text-align: center;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.description-text {
  color: var(--color-text);
  font-family: var(--font-family);
  font-size: var(--hero-image-description-size);
  font-weight: var(--font-weight-normal);
  line-height: var(--hero-image-description-height);
  margin: 0;
}

/* ====================
IMAGE SECTION
==================== */
.hero-image-container {
  width: 100%;
  max-width: var(--max-width-lg);
  margin: 0 auto;
  position: relative;
}

.hero-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-outer);
  margin: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
}

/* ====================
RESPONSIVE DESIGN
==================== */
/* Tablet breakpoint (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-image-section {
    gap: var(--spacing-xl);
  }
}
/* Mobile breakpoint (max-width: 640px) */
@media (max-width: 740px) {
  .hero-image-section {
    gap: var(--spacing-lg);
  }
}
