/* css/experience.css */

/* =========================================
   EXPERIENCE SECTION (MINIMALIST UI)
   ========================================= */
.experience-section {
   position: relative;
   width: 100%;
   padding: 120px 5%;
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
}

/* Background Image - IKUT SCROLL NORMAL */
.exp-bg {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-size: 100% 100%;
   background-size: cover;
   background-position: center center;
   background-repeat: no-repeat;
   /* Fitur fixed dihilangkan agar gambar ikut bergerak naik-turun bersama halaman */
   z-index: 1;
}

/* Overlay Hitam Transparan untuk mengangkat kontras kartu */
.exp-overlay {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-color: rgba(15, 15, 15, 0.6); /* Sedikit gelap elegan */
   z-index: 2;
}

/* Container Kartu */
.exp-container {
   position: relative;
   z-index: 3;
}

/* Kartu Minimalis */
.exp-card {
   background-color: var(--color-white);
   padding: 80px 60px;
   max-width: 750px;
   margin: 0 auto;
   text-align: center;
   border-radius: 16px;
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Teks kecil di atas judul */
.exp-subtitle {
   display: block;
   color: var(--color-lightgrey);
   font-size: 14px;
   font-weight: 700;
   letter-spacing: 3px;
   text-transform: uppercase;
   margin-bottom: 15px;
}

.exp-title {
   color: var(--color-maroon);
   font-size: 3rem;
   font-weight: 900;
   margin-bottom: 25px;
   letter-spacing: 0.5px;
}

.exp-text {
   color: #555555;
   font-size: 16px;
   line-height: 1.8;
   margin-bottom: 40px;
}

/* Tombol */
.exp-btn {
   display: inline-block;
   background-color: var(--color-maroon);
   color: var(--color-white);
   padding: 12px 40px;
   border-radius: 50px;
   font-family: var(--font-heading);
   font-size: 16px;
   font-weight: 700;
   text-decoration: none;
   border: 2px solid var(--color-maroon);
   transition: all 0.3s ease;
}

.exp-btn:hover {
   background-color: transparent;
   color: var(--color-maroon);
}

/* =========================================
   RESPONSIVE (MOBILE & TABLET)
   ========================================= */
@media (max-width: 992px) {
   .experience-section {
      padding: 80px 20px;
   }

   .exp-card {
      padding: 50px 30px;
      border-radius: 12px;
   }

   .exp-subtitle {
      font-size: 12px;
   }

   .exp-title {
      font-size: 2.2rem;
   }

   .exp-text {
      font-size: 14.5px;
      margin-bottom: 30px;
      text-align: justify;
   }
}
