body {
    background: linear-gradient(to bottom, #ffffff, #66ccff, #3399ff, #0056ff, #002b80);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

.detail-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.85); /* transparan putih */
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.detail-icon {
    text-align: center;
    font-size: 48px;
    color: #0047ab;
}

.detail-title {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #0047ab;
    margin: 10px 0 4px 0; /* kurangi margin atas-bawah */
}

.detail-subtitle {
    text-align: center;
    font-size: 16px;
    margin: 0 0 20px 0; /* lebih rapat ke atas */
    color: #000000;
}

.detail-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    align-items: flex-start;
}

.detail-content img {
    max-width: 400px;
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.detail-profil {
    flex: 1;
    font-size: 17px;
    line-height: 1.6;
}

.detail-profil h3 {
    color: #0047ab;
    margin-bottom: 12px;
}

.detail-tugas {
    margin-top: 30px;
}

.detail-tugas h4 {
    color: #0047ab;
    margin-bottom: 10px;
    font-size: 20px;
}

.detail-tugas ul {
    padding-left: 20px;
    font-size: 17px;
}

.btn-kembali {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin: 50px auto 0;
    background-color: #0047ab;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.btn-kembali i {
    font-size: 18px;
}

.btn-kembali:hover {
    background-color: #003388;
    transform: scale(1.03);
}

.btn-wrapper {
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .detail-content {
        flex-direction: column;
        align-items: center;
    }

    .detail-content img {
        max-width: 100%;
    }
}


/* === Jika butuh gradasi background untuk detail.php === */
.bg-gradient-1 {
  background: linear-gradient(135deg, #072cff, #2e8bff);
}
.bg-gradient-2 {
  background: linear-gradient(135deg, #7c0e0e, #b32222);
}
.bg-gradient-3 {
  background: linear-gradient(135deg, #045315, #0a7c2c);
}
.bg-gradient-4 {
  background: linear-gradient(135deg, #d97706, #fbbf24);
}
.bg-gradient-5 {
  background: linear-gradient(135deg, #6b21a8, #a855f7);
}
