/**
 * About Page - Hero Section Styles
 * Contains all styles related to the hero section including title, quote, and story text
 */

/* Enhanced Hero Section */
.about-hero-section {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--about-bg-gradient);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 167, 124, 0.1) 0%, transparent 50%);
  pointer-events: none;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.about-hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--about-bg-secondary), transparent);
}

.about-hero-title {
  font-family: var(--serif-font);
  font-size: clamp(38px, 6vw, 54px);
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 50px;
  letter-spacing: -1px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  font-size: 72px;
  color: white;
  margin-bottom: 30px;
  letter-spacing: -3px;
  line-height: 1.1;
  text-transform: none;
  z-index: 1;
}

.about-hero-quote {
  font-family: var(--serif-font);
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.4;
  font-style: normal;
  font-weight: 400;
  margin: 0 auto 40px;
  max-width: 900px;
  color: var(--text-color);
  padding: 0 20px;
  position: relative;
  z-index: 2;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  line-height: 1.5;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero-accent-line {
  width: 120px;
  height: 4px;
  background: var(--accent-gradient);
  margin: 0 auto;
  border-radius: 0;
  box-shadow: var(--shadow-sm);
  width: 150px;
  height: 5px;
  background: rgba(255, 255, 255, 0.8);
  margin: 40px auto 0;
  border-radius: 0;
  position: relative;
  z-index: 1;
  animation: pulse 2s ease-in-out infinite;
}

.hero-story-text {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-story-text p {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

/* Hero Section Container */
.about-hero-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content-wrapper {
  background: transparent;
  padding: 0;
  border-radius: 0;
  display: block;
  text-align: center;
  width: 100%;
}

/* Override styles with banner image */
.about-page-wrapper .about-hero-section {
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  background-image: url('../images/Story-of-Hydrate.png') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
  background-color: #212529 !important;
  height: auto !important;
  min-height: 600px !important;
  max-height: unset !important;
  padding: 100px 0 !important;
  margin-bottom: 10px !important;
  margin-top: 0 !important;
}

.about-page-wrapper .about-hero-section::before,
.about-page-wrapper .about-hero-section::after {
  display: none !important;
  content: none !important;
}

.about-page-wrapper .about-hero-section * {
  animation: none !important;
  transition: none !important;
}

.about-page-wrapper .about-hero-section,
.about-page-wrapper .about-hero-section:before,
.about-page-wrapper .about-hero-section:after {
  background-image: url('../images/Story-of-Hydrate.png') !important;
}

.about-hero-title {
  color: white !important;
  text-shadow: none !important;
  font-size: 42px !important;
  font-weight: 700 !important;
  margin-bottom: 15px !important;
  line-height: 1.2 !important;
  text-align: center !important;
}

.hero-story-text {
  color: white !important;
  text-shadow: none !important;
  text-align: center !important;
  width: 100% !important;
}

.hero-story-text p {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: none !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  margin: 0 auto 20px !important;
  line-height: 1.5 !important;
  max-width: 800px !important;
  text-align: center !important;
}

.hero-accent-line {
  background: #212529 !important;
}
