/* ================================
   About Us Page Specific Styles
   ================================ */

/* About Section Wrapper */
.about-section {
  margin: 40px auto;
  max-width: 1000px;
}
 
.about-section p {
  text-align: justify;
}

/* Quote Section */
.quote {
  text-align: center;
  font-size: 1.2rem;
  font-family: emoji;
  color: var(--brand-accent);
  background-color: #fff8f0;
  border-left: 5px solid var(--brand-accent);
  padding: 20px;
  border-radius: 12px;
}


/* Founder Section */
.founder {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.founder img {
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.founder div {
  flex: 1;
}

/* Timeline Section */
.timeline {
  background: linear-gradient(135deg, var(--brand-hover), var(--brand-header));
  color: var(--text-main);
  text-align: left;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.timeline h2 {
  text-align: center;
  color: var(--brand-accent);
  margin-bottom: 20px;
}

.timeline ul {
  list-style: none;
  padding: 0;
}

.timeline li {
  margin: 10px 0;
  padding: 10px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Brochure Section */
.brochure {
  text-align: center;
}

.brochure h2 {
  margin-bottom: 15px;
  color: var(--brand-accent);
}

.brochure p {
  margin-bottom: 20px;
}

/* Navigation Buttons */
.nav-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: -8px;
  flex-flow: row;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #1d3557; /* dark blue */
  position: absolute;
  top: 20px;
  right: 8px;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    gap: 10px;
    display: none;
    margin-top: 15px;
  }

  .main-nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}