/* OOAK LIFE About Page Styles */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #f5f3f0; /* Light background for the page */
}

.about-page {
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

/* About Container */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
  background-color: #f5f3f0;
}

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

.about-main-title {
  font-size: 72px;
  font-weight: 400;
  color: #7a9b8e; /* Greenish tone matching OOAK brand */
  margin: 0;
  letter-spacing: 12px;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.1;
}

/* About Content Section */
.about-content-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.about-content {
  margin-bottom: 40px;
}

.about-intro,
.about-philosophy,
.about-offerings,
.about-commitment,
.about-contact {
  margin-bottom: 60px;
}

.about-section-title {
  font-size: 28px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 25px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.3;
}

.about-text {
  font-size: 18px;
  font-weight: 400;
  color: #666666;
  margin: 0 0 20px 0;
  line-height: 1.8;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.about-text:last-child {
  margin-bottom: 0;
}

.about-text.highlight {
  font-size: 20px;
  font-weight: 500;
  color: #7a9b8e;
  font-style: italic;
  text-align: center;
  margin: 30px 0;
}

/* Offering Items */
.offering-item {
  margin-bottom: 40px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offering-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.offering-item:last-child {
  margin-bottom: 0;
}

.offering-title {
  font-size: 22px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 15px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* Responsive Design for About Page */
@media (max-width: 1200px) {
  .about-container {
    padding: 80px 30px;
  }

  .about-header-section {
    margin-bottom: 60px;
  }

  .about-main-title {
    font-size: 64px;
    letter-spacing: 10px;
  }

  .about-section-title {
    font-size: 26px;
    margin-bottom: 22px;
  }

  .about-text {
    font-size: 17px;
    margin-bottom: 18px;
  }

  .about-text.highlight {
    font-size: 19px;
  }

  .offering-item {
    padding: 25px;
    margin-bottom: 35px;
  }

  .offering-title {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .about-container {
    padding: 60px 25px;
  }

  .about-header-section {
    margin-bottom: 50px;
  }

  .about-main-title {
    font-size: 56px;
    letter-spacing: 8px;
  }

  .about-content-section {
    max-width: 700px;
  }

  .about-section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .about-text {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .about-text.highlight {
    font-size: 18px;
    margin: 25px 0;
  }

  .about-intro,
  .about-philosophy,
  .about-offerings,
  .about-commitment,
  .about-contact {
    margin-bottom: 50px;
  }

  .offering-item {
    padding: 22px;
    margin-bottom: 30px;
  }

  .offering-title {
    font-size: 19px;
  }
}

@media (max-width: 768px) {
  .about-container {
    padding: 50px 20px;
  }

  .about-header-section {
    margin-bottom: 40px;
  }

  .about-main-title {
    font-size: 48px;
    letter-spacing: 6px;
  }

  .about-content-section {
    max-width: 100%;
  }

  .about-section-title {
    font-size: 22px;
    margin-bottom: 18px;
    text-align: center;
  }

  .about-text {
    font-size: 15px;
    margin-bottom: 15px;
    text-align: left;
  }

  .about-text.highlight {
    font-size: 17px;
    margin: 20px 0;
  }

  .about-intro,
  .about-philosophy,
  .about-offerings,
  .about-commitment,
  .about-contact {
    margin-bottom: 40px;
  }

  .offering-item {
    padding: 20px;
    margin-bottom: 25px;
  }

  .offering-title {
    font-size: 18px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: 40px 15px;
  }

  .about-header-section {
    margin-bottom: 30px;
  }

  .about-main-title {
    font-size: 36px;
    letter-spacing: 4px;
  }

  .about-section-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .about-text {
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 1.6;
  }

  .about-text.highlight {
    font-size: 16px;
    margin: 18px 0;
  }

  .about-intro,
  .about-philosophy,
  .about-offerings,
  .about-commitment,
  .about-contact {
    margin-bottom: 35px;
  }

  .offering-item {
    padding: 18px;
    margin-bottom: 20px;
  }

  .offering-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

@media (max-width: 360px) {
  .about-main-title {
    font-size: 32px;
    letter-spacing: 3px;
  }

  .about-section-title {
    font-size: 18px;
  }

  .about-text {
    font-size: 13px;
  }

  .about-text.highlight {
    font-size: 15px;
  }

  .offering-title {
    font-size: 15px;
  }
}

/* Loading State */
.about-page.loading {
  opacity: 0.6;
}

/* Print Styles */
@media print {
  .about-page {
    background-color: white;
  }

  .about-container {
    padding: 20px;
    max-width: none;
  }

  .about-main-title {
    color: #000000;
    font-size: 36px;
  }

  .about-section-title {
    color: #000000;
    font-size: 18px;
  }

  .about-text {
    color: #000000;
    font-size: 14px;
    line-height: 1.5;
  }

  .offering-item {
    box-shadow: none;
    border: 1px solid #cccccc;
  }
}
