/* ============================================
   ABOUT PAGE
   Purpose: Styles for about.ejs
   ============================================ */

.about-container {
  padding: var(--page-padding);
}

@media (min-width: 768px) {
  .about-container {
    padding: 40px var(--page-padding);
  }
}

/* About Header */
.about-header {
  text-align: center;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .about-header {
    margin-bottom: 80px;
  }
}

.about-header h1 {
  font-size: var(--font-page-title);
  color: var(--text-dark);
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .about-header h1 {
    font-size: 40px;
  }
}

.about-subtitle {
  font-size: var(--font-body);
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .about-subtitle {
    font-size: 20px;
  }
}

/* Our Story Section */
.about-story {
  max-width: 1200px;
  margin: 0 auto 80px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 768px) {
  .about-story {
    flex-direction: row;
    align-items: center;
    margin-bottom: 100px;
    gap: 60px;
  }
}

.story-content {
  flex: 1;
}

.story-content h2 {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .story-content h2 {
    font-size: 36px;
    margin-bottom: 32px;
  }
}

.story-content p {
  font-size: var(--font-body);
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .story-content p {
    font-size: 18px;
    margin-bottom: 24px;
  }
}

.story-content p:last-child {
  margin-bottom: 0;
}

.story-image {
  flex: 1;
}

@media (min-width: 768px) {
  .story-image {
    max-width: 500px;
  }
}

.story-image img {
  width: 100%;
  height: auto;
  padding: 10px;
}

/* Our Values Section */
.about-values {
  max-width: 1200px;
  margin: 0 auto 80px auto;
}

@media (min-width: 768px) {
  .about-values {
    margin-bottom: 100px;
  }
}

.about-values h2 {
  font-size: 28px;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .about-values h2 {
    font-size: 36px;
    margin-bottom: 60px;
  }
}

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

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  background: var(--card-bg);
  padding: 32px 24px;
  border-radius: var(--radius-medium);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

@media (min-width: 768px) {
  .value-card {
    padding: 40px 32px;
  }
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px auto;
  background: var(--primary-purple);
  color: var(--text-on-purple);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .value-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
    margin-bottom: 24px;
  }
}

.value-card h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }
}

.value-card p {
  font-size: var(--font-body);
  color: var(--text-medium);
  line-height: 1.6;
}

/* What We Do Section */
.about-services {
  max-width: 1000px;
  margin: 0 auto 80px auto;
  text-align: center;
}

@media (min-width: 768px) {
  .about-services {
    margin-bottom: 100px;
  }
}

.about-services h2 {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .about-services h2 {
    font-size: 36px;
    margin-bottom: 32px;
  }
}

.services-intro {
  font-size: var(--font-body);
  color: var(--text-medium);
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .services-intro {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .services-list {
    flex-direction: row;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
  }
}

.service-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-column li {
  font-size: var(--font-body);
  color: var(--text-dark);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .service-column li {
    font-size: 18px;
    padding: 16px 0;
  }
}

.service-column li:last-child {
  border-bottom: none;
}

.services-cta {
  font-size: var(--font-body);
  color: var(--text-medium);
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .services-cta {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

/* Service Area Section */
.about-service-area {
  max-width: 900px;
  margin: 0 auto 80px auto;
  text-align: center;
}

@media (min-width: 768px) {
  .about-service-area {
    margin-bottom: 100px;
  }
}

.about-service-area h2 {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .about-service-area h2 {
    font-size: 36px;
    margin-bottom: 32px;
  }
}

.area-intro {
  font-size: var(--font-body);
  color: var(--text-medium);
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .area-intro {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

.service-areas {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .service-areas {
    flex-direction: row;
    justify-content: center;
    gap: 80px;
    margin-bottom: 40px;
  }
}

.area-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.area-column li {
  font-size: var(--font-body);
  color: var(--text-dark);
  padding: 10px 0;
}

@media (min-width: 768px) {
  .area-column li {
    font-size: 18px;
    padding: 12px 0;
  }
}

.area-note {
  font-size: var(--font-body);
  color: var(--text-medium);
}

@media (min-width: 768px) {
  .area-note {
    font-size: 18px;
  }
}

.area-note a {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 500;
}

.area-note a:hover {
  text-decoration: underline;
}

/* Why Choose Us Section */
.about-why-choose {
  max-width: 1200px;
  margin: 0 auto 80px auto;
}

@media (min-width: 768px) {
  .about-why-choose {
    margin-bottom: 100px;
  }
}

.about-why-choose h2 {
  font-size: 28px;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .about-why-choose h2 {
    font-size: 36px;
    margin-bottom: 60px;
  }
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .why-choose-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.why-item h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .why-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }
}

.why-item p {
  font-size: var(--font-body);
  color: var(--text-medium);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .why-item p {
    font-size: 18px;
  }
}

/* Process Section */
.about-process {
  max-width: 1200px;
  margin: 0 auto 80px auto;
}

@media (min-width: 768px) {
  .about-process {
    margin-bottom: 100px;
  }
}

.about-process h2 {
  font-size: 28px;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .about-process h2 {
    font-size: 36px;
    margin-bottom: 32px;
  }
}

.process-intro {
  font-size: var(--font-body);
  color: var(--text-medium);
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .process-intro {
    font-size: 18px;
    margin-bottom: 60px;
  }
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-step {
  background: var(--card-bg);
  padding: 32px 24px;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

@media (min-width: 768px) {
  .process-step {
    padding: 40px 32px;
  }
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px auto;
  background: var(--primary-purple);
  color: var(--text-on-purple);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .step-number {
    width: 70px;
    height: 70px;
    font-size: 32px;
    margin-bottom: 24px;
  }
}

.process-step h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .process-step h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }
}

.process-step p {
  font-size: var(--font-body);
  color: var(--text-medium);
  line-height: 1.6;
}

/* Hours Section */
.about-hours {
  max-width: 600px;
  margin: 0 auto 80px auto;
  text-align: center;
}

@media (min-width: 768px) {
  .about-hours {
    margin-bottom: 100px;
  }
}

.about-hours h2 {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .about-hours h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
}

.hours-table {
  background: var(--card-bg);
  border-radius: var(--radius-medium);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .hours-table {
    padding: 32px;
    margin-bottom: 32px;
  }
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .hours-row {
    padding: 20px 0;
  }
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row.closed {
  opacity: 0.6;
}

.day {
  font-size: var(--font-body);
  color: var(--text-dark);
  font-weight: 600;
}

@media (min-width: 768px) {
  .day {
    font-size: 18px;
  }
}

.time {
  font-size: var(--font-body);
  color: var(--text-medium);
}

@media (min-width: 768px) {
  .time {
    font-size: 18px;
  }
}

.hours-note {
  font-size: var(--font-small);
  color: var(--text-medium);
}

@media (min-width: 768px) {
  .hours-note {
    font-size: var(--font-body);
  }
}

/* CTA Section */
.about-cta {
  background: var(--card-bg);
  padding: 40px 20px;
  border-radius: var(--radius-large);
  text-align: center;
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .about-cta {
    padding: 60px 40px;
  }
}

.about-cta h2 {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .about-cta h2 {
    font-size: 36px;
    margin-bottom: 24px;
  }
}

.about-cta > p {
  font-size: var(--font-body);
  color: var(--text-medium);
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .about-cta > p {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto 24px auto;
}

@media (min-width: 768px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
  }
}

.cta-note {
  font-size: var(--font-small);
  color: var(--text-medium);
}

@media (min-width: 768px) {
  .cta-note {
    font-size: var(--font-body);
  }
}

.cta-note a {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 500;
}

.cta-note a:hover {
  text-decoration: underline;
}