.container {
    margin-top: 30px;
}

.card {
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.header-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.card:hover {
    transform: translateY(-5px);
}

.card-body {
    text-align: center;
}

.btn-primary {
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
}

#Renungan-harian{
    display: inline-block;   
    text-align: center;
    color:rgb(1, 91, 91);
    font-weight: bold;
    border-bottom: 4px solid #333; 
    padding-bottom: 10px;     
    margin-bottom: 20px;
}

#detailTitle{
text-align: center; 
font-size: 30px; 
font-weight: bold;
background-color:rgb(166, 227, 231); 
padding: 15px; 
border-radius: 8px;
}

#detailSection {
    display: none;
    margin-top: 30px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

#detailVideo {
    aspect-ratio: 16 / 9;
    width: 100%;
    display: block;
}
#detailSection p,
#detailSection span {
  text-align: justify;
}

#detailSection p {
  margin: 10px 0;
  padding: 5px;
  line-height: 1.6;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #dc3545;     /* Merah */
    color: white;
    justify-content: center;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background-color: #c82333;    
    transform: translateX(-2px);
}

.pagination {
    display: flex;
    justify-content: center;
    padding-left: 0;
    list-style: none;
}

.page-item {
    margin: 0 3px;
}

.page-link {
    color: #007bff;
    border: 1px solid #007bff; 
    padding: 8px 12px;
    border-radius: 6px;
    background-color: white;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

.page-item.active .page-link {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
}

@media (max-width: 768px) {
    #Renungan-harian {
        font-size: 20px;
        padding-bottom: 6px;
        margin-bottom: 16px;
    }

    #detailTitle {
        font-size: 14px;
        padding: 10px;
    }
    
    .card-body {
        padding: 10px;
    }

    .btn-secondary, .btn-primary {
        padding: 8px 14px;
        font-size: 14px;
    }

    #detailSection p {
        font-size: 14px;
        line-height: 1.5;
    }

    .page-link {
        padding: 6px 10px;
        font-size: 14px;
    }

    #detailSection {
        padding: 15px;
    }
}
@media(max-width: 480px) {
    .header-image img {
            height: 160px;
    }
}