/* ========================================
   ABOUT PAGE - STYLES
   This file contains all about page-specific styles including:
   - Page content layout with gradient background
   - Page hero section
   - About content sections
   - Values grid with icons and descriptions
   - Responsive styles for about page
   ======================================== */

/* ==================== PAGE CONTENT STYLES ==================== */

/* Note: .page-content and .page-hero styles are inherited from layouts/sections.css */

/* About Page Styles */
.about-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.about-section {
  margin-bottom: 3rem;
}

.about-section h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
  opacity: 0.8;
  margin-bottom: 1rem;
  font-weight: 400;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 0;
}

.value-item {
  text-align: center;
  padding: 0.5rem 2rem 2rem;
  position: relative;
}

.about-section h3 i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  font-size: 1rem;
  margin-right: 10px;
  vertical-align: middle;
}

.value-item i {
  font-size: 1.5rem;
  color: #ffffff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: inline-block;
  margin: 0 auto;
  margin-bottom: 0.5rem;
  display: block;
  transition: transform 0.3s ease;
}

.value-item i:hover {
  transform: scale(1.1);
}

.value-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.value-item p {
  color: #ffffff;
  opacity: 0.8;
  font-size: 0.95rem;
  font-weight: 400;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* ==================== PAGE CONTENT RESPONSIVE ==================== */

@media (max-width: 768px) {
  .about-content {
    padding: 0 30px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 480px) {
  .about-content {
    padding: 0 20px;
  }

  .about-section h2 {
    font-size: 1.5rem;
  }

  .about-section p {
    font-size: 1rem;
  }

  .value-item h3 {
    font-size: 1.1rem;
  }

  .value-item p {
    font-size: 0.9rem;
  }

  .values-grid {
    gap: 40px;
    grid-template-columns: 1fr;
  }
}
