/* About Page - Dynamic Design */

/* Hero Banner */
.about-hero {
  background: linear-gradient(135deg, #063f18 0%, #0a5c25 50%, #084d1e 100%);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.about-hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 40px;
  max-width: 800px;
}

.about-hero-title {
  color: #ffffff;
  font-size: 3.5em;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.about-hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.25em;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

/* Main Content Area */
.about-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

.about-main {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.about-content-wrapper {
  padding: 50px 60px;
}

/* Typography Enhancements */
.about-content-wrapper h1,
.about-content-wrapper h2 {
  color: #063f18;
  margin-top: 50px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #063f18;
  font-weight: 700;
}

.about-content-wrapper h1:first-child,
.about-content-wrapper h2:first-child {
  margin-top: 0;
}

.about-content-wrapper h3 {
  color: #1a1a1a;
  font-size: 1.4em;
  margin-top: 35px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.about-content-wrapper h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #063f18, #0a5c25);
  border-radius: 2px;
}

.about-content-wrapper p {
  font-size: 1.1em;
  line-height: 1.9;
  color: #333;
  margin-bottom: 20px;
}

.about-content-wrapper strong {
  color: #063f18;
  font-weight: 600;
}

.about-content-wrapper ul,
.about-content-wrapper ol {
  margin: 25px 0;
  padding-left: 0;
  list-style: none;
}

.about-content-wrapper li {
  position: relative;
  padding: 12px 20px 12px 35px;
  margin-bottom: 10px;
  background: #f8faf8;
  border-radius: 8px;
  border-left: 4px solid #063f18;
  font-size: 1.05em;
  line-height: 1.6;
}

.about-content-wrapper li::before {
  content: none;
}

/* Blockquotes / Pull Quotes */
.about-content-wrapper blockquote {
  background: linear-gradient(135deg, #f0f7f2 0%, #e8f4eb 100%);
  border-left: 5px solid #063f18;
  margin: 40px 0;
  padding: 30px 35px;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 1.15em;
  color: #2a2a2a;
  position: relative;
}


/* Links */
.about-content-wrapper a {
  color: #063f18;
  text-decoration: none;
  border-bottom: 2px solid rgba(6, 63, 24, 0.3);
  transition: all 0.2s ease;
}

.about-content-wrapper a:hover {
  border-bottom-color: #063f18;
  background: rgba(6, 63, 24, 0.05);
}

/* Section Dividers */
.about-content-wrapper hr {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, transparent, #063f18, transparent);
  margin: 50px 0;
}

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

  .about-hero-title {
    font-size: 2.5em;
  }

  .about-hero-subtitle {
    font-size: 1.1em;
  }

  .about-hero-overlay {
    padding: 40px 20px;
  }

  .about-content-wrapper {
    padding: 30px 25px;
  }

  .about-content-wrapper h1,
  .about-content-wrapper h2 {
    font-size: 1.8em;
  }

  .about-content-wrapper h3 {
    font-size: 1.3em;
  }
}

/* Dark Mode for About Page */
[data-theme="dark"] .about-hero {
  background: linear-gradient(135deg, #0a2612 0%, #0d3318 50%, #0a2612 100%);
}

[data-theme="dark"] .about-main {
  background: #1e1e1e;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

[data-theme="dark"] .about-content-wrapper h1,
[data-theme="dark"] .about-content-wrapper h2 {
  color: #2ecc71;
  border-bottom-color: #2ecc71;
}

[data-theme="dark"] .about-content-wrapper h3 {
  color: #e0e0e0;
}

[data-theme="dark"] .about-content-wrapper h3::before {
  background: linear-gradient(180deg, #2ecc71, #27ae60);
}

[data-theme="dark"] .about-content-wrapper p {
  color: #b0b0b0;
}

[data-theme="dark"] .about-content-wrapper strong {
  color: #2ecc71;
}

[data-theme="dark"] .about-content-wrapper li {
  background: #252525;
  border-left-color: #2ecc71;
}

[data-theme="dark"] .about-content-wrapper blockquote {
  background: linear-gradient(135deg, #1a2e1f 0%, #162618 100%);
  border-left-color: #2ecc71;
  color: #b0b0b0;
}

[data-theme="dark"] .about-content-wrapper a {
  color: #2ecc71;
  border-bottom-color: rgba(46, 204, 113, 0.3);
}

[data-theme="dark"] .about-content-wrapper a:hover {
  background: rgba(46, 204, 113, 0.1);
}

[data-theme="dark"] .about-content-wrapper hr {
  background: linear-gradient(90deg, transparent, #2ecc71, transparent);
}
