/* about.css */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Page Header */
.about-header {
  background: #ffffff;
  padding: 60px 0 0;
}

.about-header h1 {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

/* Info Section (Profile, Visi, Misi) */
.about-info-section {
  padding: 40px 0;
  background: #ffffff;
}

.about-info-section .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-card {
  background: #FFF8F0;
  border-radius: 12px;
  padding: 32px;
  border-left: 4px solid #F79A19;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.about-card h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 0;
}

.about-card .text-orange {
  color: #F79A19;
}

.about-card .text-dark {
  color: #1a1a1a;
}

.about-card p, .about-card ul {
  margin: 0;
  color: #333;
  line-height: 1.6;
}

.misi-list {
  padding-left: 20px;
}

.misi-list li {
  margin-bottom: 8px;
}
.misi-list li:last-child {
  margin-bottom: 0;
}

/* Truck Section */
.about-truck-section {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/home/hero-bg.webp');
  background-size: cover;
  background-position: center;
  padding: 80px 40px;
  text-align: center;
  width: 100%;
}

.truck-heading {
  font-size: 28px;
  color: #F79A19;
  font-weight: 700;
  margin: 0 0 16px;
}

.truck-subtext {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin: 0 auto 32px;
  max-width: 800px;
  line-height: 1.6;
}

.truck-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.btn-primary {
  background: #8B1A1A;
  color: #ffffff;
  border: none;
}
.btn-primary:hover {
  background: #701515;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-header {
    padding: 36px 0 0;
  }

  .about-header h1 {
    font-size: 36px;
  }

  .about-info-section {
    padding: 24px 0;
  }

  .about-card {
    padding: 24px 20px;
    border-radius: 10px;
  }

  .about-card h2 {
    font-size: 18px;
  }

  .about-card p,
  .misi-list li {
    font-size: 14px;
  }

  .about-truck-section {
    padding: 50px 20px;
  }

  .truck-heading {
    font-size: 22px;
  }

  .truck-subtext {
    font-size: 14px;
  }

  .truck-actions .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about-header h1 {
    font-size: 28px;
  }

  .about-card {
    padding: 18px 16px;
  }

  .truck-heading {
    font-size: 20px;
  }
}
