/* css/about.css */

.about-section {
   padding: 100px 0;
   background-color: var(--color-meteorite, #262626);
   color: var(--color-white, #ffffff);
   position: relative;
   overflow: hidden;
}

/* Container Kolase Gambar */
.about-image-wrapper {
   display: flex;
   gap: 20px;
   width: 100%;
   max-width: 580px;
   height: 480px;
   margin: 0 auto;
}

.about-img-box {
   flex: 1;
   height: 100%;
   border-radius: 12px;
   overflow: hidden;
   box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
   border: 1px solid rgba(255, 255, 255, 0.08);
   transition:
      transform 0.35s ease,
      box-shadow 0.35s ease;
}

.about-img-box:hover {
   transform: translateY(-6px);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

.about-img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   transition: transform 0.5s ease;
}

.about-img-box:hover .about-img {
   transform: scale(1.04);
}

/* Bagian Teks & Judul */
.about-text-container {
   padding-left: 15px;
}

.about-title {
   font-family: var(--font-heading, 'Montserrat', sans-serif);
   font-size: 3rem;
   font-weight: 900;
   color: #ffffff;
   letter-spacing: 1px;
   margin-bottom: 24px;
   line-height: 1.15;
}

.about-description {
   font-size: 1rem;
   line-height: 1.8;
   color: #d1d5db;
   text-align: justify;
   margin-bottom: 36px;
   font-weight: 400;
}

/* Penataan Tombol */
.about-buttons {
   display: flex;
   gap: 16px;
   align-items: center;
   flex-wrap: wrap;
}

.btn-pill-maroon {
   background-color: var(--color-maroon, #9c0004);
   color: #ffffff !important;
   border: 2px solid var(--color-maroon, #9c0004);
   padding: 11px 32px;
   border-radius: 50px;
   font-family: var(--font-heading, 'Montserrat', sans-serif);
   font-size: 0.95rem;
   font-weight: 700;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   transition: all 0.3s ease;
   box-shadow: 0 4px 14px rgba(156, 0, 4, 0.3);
}

.btn-pill-maroon:hover {
   background-color: #b80005;
   border-color: #b80005;
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(156, 0, 4, 0.45);
}

.btn-pill-outline {
   background-color: transparent;
   color: #ffffff !important;
   border: 2px solid rgba(255, 255, 255, 0.85);
   padding: 11px 32px;
   border-radius: 50px;
   font-family: var(--font-heading, 'Montserrat', sans-serif);
   font-size: 0.95rem;
   font-weight: 700;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   transition: all 0.3s ease;
}

.btn-pill-outline:hover {
   background-color: #ffffff;
   color: var(--color-meteorite, #262626) !important;
   border-color: #ffffff;
   transform: translateY(-2px);
   box-shadow: 0 6px 18px rgba(255, 255, 255, 0.2);
}

/* Responsiveness */
@media (max-width: 991px) {
   .about-section {
      padding: 70px 20px;
   }

   .about-image-wrapper {
      height: 360px;
      margin-bottom: 25px;
   }

   .about-text-container {
      padding-left: 0;
      text-align: center;
   }

   .about-title {
      font-size: 2.4rem;
   }

   .about-description {
      text-align: center;
      font-size: 0.95rem;
   }

   .about-buttons {
      justify-content: center;
   }
}

@media (max-width: 480px) {
   .about-image-wrapper {
      height: 290px;
      gap: 12px;
   }

   .btn-pill-maroon,
   .btn-pill-outline {
      width: 100%;
   }
}
