/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light gray for general text */
  background-color: #1a1a1a; /* Dark background */
  line-height: 1.6;
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-about__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-about__section:last-of-type {
  border-bottom: none;
}

.page-about__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-about__hero-section {
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.9), rgba(255, 215, 0, 0.5)), url('[GALLERY:bg:abstract_pattern,gold_red,dark_background]') center/cover no-repeat;
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
}

.page-about__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for hero title */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #e0e0e0;
}

.page-about__hero-actions {
  margin-top: 30px;
}

.page-about__btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  margin: 0 10px;
  cursor: pointer;
  text-align: center;
}

.page-about__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1a1a1a; /* Dark text for contrast */
  border: 2px solid #FFD700;
}

.page-about__btn--primary:hover {
  background-color: #b39700;
  border-color: #b39700;
  color: #ffffff;
}

.page-about__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold border and text */
  border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
  background-color: #FFD700;
  color: #1a1a1a;
}

.page-about__story-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-about__story-text {
  flex: 1;
}

.page-about__story-text p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #d0d0d0;
}

.page-about__story-image {
  flex: 1;
  text-align: center;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-about__card {
  background-color: #2a2a2a; /* Slightly lighter dark background for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #8B0000; /* Dark red accent */
}

.page-about__card-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__card p {
  font-size: 1.05em;
  color: #c0c0c0;
  margin-bottom: 20px;
}

.page-about__card-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
}

.page-about__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-about__value-item {
  background-color: #2a2a2a;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-about__value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-about__value-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-about__value-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-about__value-item p {
  color: #c0c0c0;
  font-size: 1em;
}

.page-about__why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-about__why-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #8B0000;
  transition: background-color 0.3s ease;
}

.page-about__why-item:hover {
  background-color: #3a3a3a;
}

.page-about__why-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-about__why-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-about__why-item p {
  color: #c0c0c0;
}

.page-about__action-footer {
  text-align: center;
  margin-top: 50px;
}

.page-about__responsible-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-about__responsible-image {
  flex: 1;
  min-width: 300px;
}

.page-about__responsible-text {
  flex: 1.5;
  min-width: 300px;
}

.page-about__responsible-text p {
  margin-bottom: 15px;
  color: #d0d0d0;
  font-size: 1.1em;
}

.page-about__responsible-text ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #d0d0d0;
}

.page-about__responsible-text ul li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-about__responsible-text strong {
  color: #FFD700;
}

.page-about__cta {
  background-color: #8B0000; /* Dark red background for CTA */
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-about__cta-content {
  max-width: 900px;
}

.page-about__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-about__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-about__cta-actions .page-about__btn {
  margin: 0 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }

  .page-about__section-title {
    font-size: 2.2em;
  }

  .page-about__story-content,
  .page-about__responsible-content {
    flex-direction: column;
    text-align: center;
  }

  .page-about__story-image,
  .page-about__responsible-image {
    margin-top: 30px;
  }

  .page-about__card-image {
    height: 150px;
  }
}

@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2.2em;
  }

  .page-about__hero-description {
    font-size: 1em;
  }

  .page-about__section-title {
    font-size: 1.8em;
  }

  .page-about__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 10px 0;
    display: block;
  }

  .page-about__hero-actions,
  .page-about__cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .page-about__cta-title {
    font-size: 2.2em;
  }

  .page-about__cta-description {
    font-size: 1.1em;
  }

  .page-about__grid,
  .page-about__values-grid,
  .page-about__why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }

  .page-about__section-title {
    font-size: 1.5em;
  }

  .page-about__card-title {
    font-size: 1.5em;
  }

  .page-about__value-title {
    font-size: 1.3em;
  }

  .page-about__why-title {
    font-size: 1.4em;
  }

  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__btn {
    width: 90%;
  }
}