/*-----------------------------------*\
  #ABOUT PAGE
\*-----------------------------------*/

/*-----------------------------------*\
  #COMPONENTS
\*-----------------------------------*/

@import url("./../components/btn.css");

.about .container {
  display: grid;
  gap: 50px;
}

.about .section-text { margin-block: 25px 16px; }

.about-list {
  display: flex;
  align-items: center;
  gap: 25px;
}

.about-list .list-text {
  color: var(--jet);
  font-weight: var(--fw-500);
}

.about-list .strong {
  color: var(--orange-red);
  display: block;
}

.about .wrapper {
  margin-block-start: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 25px;
}

.story {
  padding: 10px 0 50px 0;
}

.highlight-box {
  background-color: #FFF7ED;
  padding: 2rem;
  border-left: 4px solid #F97316;
  border-radius: 0.5rem;
  margin: 2rem 0;
}

.highlight {
  color: #EA580C;
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.text-block p {
  line-height: 1.75;
  margin-bottom: 2rem;
  color: #4B5563;
  margin-block: 25px 16px;
}



/*-----------------------------------*\
  #EDUCATION
\*-----------------------------------*/
.education {
  padding: 3rem 0;
  background-color: var(--jet);
}

.education h2 {
  color: var(--white);
}

.education p {
  color: var(--white_a75);
}

.tabs {
  display: flex;
  justify-content: center;
  margin: 20px 0 40px 0;
  gap: 10px;
}

.tab-button {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background-color: transparent;
  color: var(--white_a75);
}

.tab-button.active {
  background-color: white;
  color: #1e293b;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.timeline {
  position: relative;
  padding: 0 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--orange-red);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.timeline-content {
  width: 45%;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  text-align: left;
}

.timeline-content h3 {
  color: #1e293b;
}

.timeline-content p {
  color: #475569;
  margin: 5px 0;
}

.linedot {
  width: 12px;
  height: 12px;
  background-color: var(--orange-red);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  z-index: 1;
}







/*-----------------------------------*\
  #EXPERIENCE
\*-----------------------------------*/

.experience-section {
  padding: 5rem 1rem;
}


.experience-title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 4rem;
  color: #111827;
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.experience-card {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.experience-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.experience-content {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.details {
  flex: 1;
}

.role-period {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .role-period {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.role {
  font-weight: bold;
  color: #111827;
}

.period {
  color: #ea580c;
  font-weight: 600;
}

.company {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.division {
  font-weight: 600;
  color: #ea580c;
  margin-bottom: 0.75rem;
}

.description {
  color: #4b5563;
  line-height: 1.6;
}






/*-----------------------------------*\
  #PHILOSOPHY
\*-----------------------------------*/

.philosophy {
  background-color: var(--jet);
}

.philosophy h2 {
  color: var(--white);
  margin-bottom: 4rem;
}

.philosophy-grid {
  display: grid;
  gap: 3rem;
}

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

.philosophy-column {
  display: flex;
  flex-direction: column;
}

.column-title {
  font-weight: bold;
  color: #fb923c; /* orange-400 */
  margin-bottom: 2rem;
}

.core-values .value {
  border-left: 4px solid #f97316; /* orange-500 */
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.core-values .value h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.core-values .value p {
  color: #d1d5db; /* gray-300 */
  line-height: 1.5;
}

.principles .principle {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.principles .principle .dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #f97316;
  border-radius: 9999px;
  margin-top: 1rem;
  flex-shrink: 0;
}

.principles .principle p {
  color: #d1d5db;
  line-height: 1.5;
}

.beliefs .belief {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.beliefs .belief .dot {
  width: 0.75rem;
  height: 0.75rem;
  background-color: #facc15; /* yellow-400 */
  border-radius: 9999px;
  flex-shrink: 0;
  margin-top: 0.6rem; /* 👈 Add this for vertical alignment */
}

.beliefs .belief p {
  color: #fff;
  font-weight: 500;
}

.belief-note {
  background-color: #374151; /* gray-700 */
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 0.5rem;
}

.belief-note p {
  font-style: italic;
  color: #d1d5db;
}





/*-----------------------------------*\
  #SCREEN
\*-----------------------------------*/

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}


.section-header p {
  color: #4b5563;
}

.activities {
  margin: 0 auto;
}

.activity-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.activity-item:hover {
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.activity-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.activity-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.activity-icon {
  font-size: 3rem;
}

.activity-title {
  font-weight: 600;
}

.chevron {
  transition: transform 0.3s ease;
}

.chevron.rotate {
  transform: rotate(180deg);
}

.activity-description {
  padding: 0 1.5rem 1.5rem 4rem;
  color: #4b5563;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.activity-description.active {
  max-height: 300px;
  opacity: 1;
}

.quote-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-top: 4rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.quote {
  font-style: italic;
  color: #374151;
}

.author {
  color: #ea580c;
  font-weight: 600;
  margin-top: 1rem;
}






/*-----------------------------------*\
  #ABOUT-CTA
\*-----------------------------------*/
section .about-cta {
    padding: 0 0 0 0;
}




/*-----------------------------------*\
  #MEDIA-QUERIES
\*-----------------------------------*/

@media (min-width: 575px) {

  /**
   * CLIENT, ABOUT & SKILL
   */

  .about-banner {
    max-width: max-content;
    margin-inline: auto;
  }



  /**
   * CTA
   */

  .cta .container { justify-content: space-between; }

}

/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * ABOUT
   */

  :is(.about) .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * ABOUT
   */

  .about-list { gap: 40px; }

}