/* style/about.css */
.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  background-color: #140C0C; /* Background */
}

.page-about__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  min-height: 500px;
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background: rgba(42, 18, 18, 0.7); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  color: #FFF1E8;
}

.page-about__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #F3C54D; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-about__description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 30px;
  color: #FFF1E8;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #FFF1E8;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__cta-button:hover {
  background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
  transform: translateY(-2px);
}

.page-about__section {
  padding: 60px 0;
  background-color: #140C0C;
}

.page-about__section:nth-of-type(even) {
  background-color: #2A1212; /* Card BG */
}

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

.page-about__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F3C54D; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-about__text-block {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #FFF1E8;
  text-align: justify;
}

.page-about__text-block strong {
  color: #F3C54D; /* Gold */
}

.page-about__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  object-fit: cover;
}

.page-about__image--centered {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.page-about__image--right {
  margin-left: auto;
  max-width: 800px;
}

.page-about__image--left {
  margin-right: auto;
  max-width: 800px;
}

.page-about__cta-section {
  padding: 80px 0;
  background: linear-gradient(90deg, #C61F1F 0%, #E53030 100%); /* Main and Aux colors */
  text-align: center;
  color: #FFF1E8;
}

.page-about__cta-container {
  max-width: 800px;
}

.page-about__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-about__cta-button--secondary {
  background: #FFF1E8;
  color: #C61F1F;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-about__cta-button--secondary:hover {
  background: #F3C54D; /* Gold */
  color: #C61F1F;
}

.page-about__faq-section {
  padding: 60px 0;
  background-color: #140C0C;
}

.page-about__faq-item {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF1E8;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  background-color: #C61F1F; /* Main color */
  color: #FFF1E8;
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-about__faq-question::-webkit-details-marker {
  display: none;
}

.page-about__faq-question:hover {
  background-color: #E53030; /* Aux color */
}

.page-about__faq-qtext {
  flex-grow: 1;
}

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
}

.page-about__faq-answer {
  padding: 20px 25px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #FFF1E8;
  background-color: #2A1212; /* Card BG */
}

.page-about__faq-answer p {
  margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-about__hero-content {
    padding: 30px 15px;
  }

  .page-about__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-about__description {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  }

  .page-about__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }

  .page-about__text-block {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    min-height: 400px;
  }

  .page-about__hero-image {
    min-height: 400px;
  }

  .page-about__hero-content {
    padding: 20px 15px;
  }

  .page-about__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-about__description {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }

  .page-about__section {
    padding: 40px 0;
  }

  .page-about__section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-about__text-block {
    font-size: 0.95rem;
  }

  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-about__cta-button {
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-about__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-about__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-about__faq-question {
    padding: 15px 20px;
    font-size: 1.1rem;
  }

  .page-about__faq-answer {
    padding: 15px 20px;
    font-size: 1rem;
  }
  
  .page-about__hero-section {
    padding-top: 10px !important;
  }

  .page-about__image--centered,
  .page-about__image--right,
  .page-about__image--left {
    margin-left: auto;
    margin-right: auto;
  }
}