/* About Page Styles - Editable CSS File */
/* Access via: http://localhost:3000/css/about.css */

/* Container */
.about-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.about-main {
  flex-grow: 1;
  padding: 3rem 0;
}

.about-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.about-header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.about-divider {
  width: 6rem;
  height: 0.25rem;
  background: #475569;
  margin: 0 auto;
}

/* About Image */
.about-image-container {
  margin-bottom: 3rem;
  position: relative;
  width: 100%;
  height: 24rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.about-content {
  margin-bottom: 3rem;
}

.about-text {
  color: #64748b;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Feature Card */
.feature-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  color: #475569;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.feature-text {
  color: #64748b;
  line-height: 1.6;
}

/* Loading State */
.loading-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.loading-spinner {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border: 4px solid #e2e8f0;
  border-top-color: #475569;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 2rem;
  }
  
  .about-image-container {
    height: 16rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}


