/* Store About Page - Enterprise Grade Design */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.about-page {
  min-height: 100vh;
  background: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section with Background Image */
.hero-section {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.7) 0%,
    rgba(118, 75, 162, 0.2) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto;
}

/* Hero Section Simple (No Background Image) */
.hero-section-simple {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 5rem 0;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.hero-section-simple::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
}

.hero-section-simple .container {
  position: relative;
  z-index: 1;
}

/* Section Icons */
.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 1rem;
  color: #fff;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

/* Mission Section */
.mission-section {
  background: #fff;
  padding: 4rem 3rem;
  border-radius: 1.5rem;
  margin-bottom: 4rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  border: 1px solid #e9ecef;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mission-text {
  font-size: 1.25rem;
  line-height: 2;
  color: #475569;
  max-width: 900px;
  margin: 0 auto;
}

/* Story Section */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.story-content {
  background: #fff;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  border: 1px solid #e9ecef;
}

.story-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #475569;
  white-space: pre-wrap;
}

.story-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  height: 100%;
  min-height: 400px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.story-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.story-image:hover .image-overlay {
  opacity: 1;
}

/* Highlights Section */
.highlights-section {
  padding: 4rem 0;
  margin-bottom: 4rem;
}

.section-header-center {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header-center .section-icon {
  margin: 0 auto 1.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  margin-top: 1rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.highlight-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 1.25rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  border-color: #667eea;
}

.highlight-card:hover::before {
  transform: scaleX(1);
}

.highlight-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  line-height: 1;
}

.highlight-content {
  position: relative;
  z-index: 1;
}

.highlight-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.highlight-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
}

.highlight-number {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 4rem;
  font-weight: 700;
  color: #f1f5f9;
  z-index: 0;
  line-height: 1;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 1.5rem;
  padding: 5rem 3rem;
  margin: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content svg {
  color: rgba(255, 255, 255, 0.9);
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  line-height: 1.2;
}

.svg-txt-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

/* Inner flex wrapper to align icon + text perfectly */
.btn-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.btn-primary {
  background: #ffffff;
  color: #667eea;
  border-color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.3);
  background: #f8fafc;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #667eea;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
}

/* Base icon styling inside CTA buttons */
.btn-inner svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* Ensure icons inherit the button text color */
.cta-buttons .btn-inner svg {
  color: inherit;
}

/* Empty State */
.empty-state-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.empty-content {
  text-align: center;
  background: #fff;
  padding: 5rem 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  max-width: 700px;
  margin: 0 auto;
}

.empty-content svg {
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.empty-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.empty-content .lead {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 1rem;
}

.empty-content .empty-message {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2.5rem;
}

.empty-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.empty-actions .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
}

.empty-actions .btn-secondary {
  background: #fff;
  color: #667eea;
  border-color: #667eea;
}

.empty-actions .btn-secondary:hover {
  background: #667eea;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    height: 400px;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .story-section {
    grid-template-columns: 1fr;
  }

  .story-image {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero-section {
    height: 350px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-section-simple {
    padding: 3rem 0;
  }

  .section-icon {
    width: 48px;
    height: 48px;
  }

  .section-icon svg {
    width: 24px;
    height: 24px;
  }

  .mission-section {
    padding: 3rem 2rem;
    margin-bottom: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .mission-text {
    font-size: 1.125rem;
  }

  .story-content {
    padding: 2rem;
  }

  .story-text {
    font-size: 1rem;
  }

  .story-image {
    min-height: 300px;
  }

  .highlights-section {
    padding: 3rem 0;
    margin-bottom: 3rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .highlight-card {
    padding: 2rem;
  }

  .highlight-title {
    font-size: 1.25rem;
  }

  .cta-section {
    padding: 3rem 2rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1.125rem;
  }

  .cta-buttons,
  .empty-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 300px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .mission-section {
    padding: 2rem 1.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .story-content {
    padding: 1.5rem;
  }

  .story-image {
    min-height: 250px;
  }

  .highlight-card {
    padding: 1.5rem;
  }

  .cta-section {
    padding: 2.5rem 1.5rem;
  }

  .cta-content h2 {
    font-size: 1.75rem;
  }

  .empty-content {
    padding: 3rem 2rem;
  }

  .empty-content h1 {
    font-size: 2rem;
  }
}
