header {
    border-bottom: 1px solid #ddd;
}

body {
    font-family: Arial, sans-serif;
    background-color: rgb(141, 148, 155);
}


/* Card Styling */
.card {
    border: none;
    /* Menghilangkan border default */
    border-radius: 10px;
    /* Membuat sudut card melengkung */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    /* Menambahkan bayangan */
    transition: transform 0.3s;
    /* Animasi saat hover */
}

.card:hover {
    transform: translateY(-5px);
    /* Efek hover */
}

.card-img-top {
    border-top-left-radius: 10px;
    /* Melengkungkan sudut atas */
    border-top-right-radius: 10px;
    /* Melengkungkan sudut atas */
    height: 200px;
    /* Mengatur tinggi gambar */
    object-fit: cover;
    /* Memastikan gambar tidak terdistorsi */
    cursor: pointer;
}

.card-body {
    background-color: #f8f9fa;
    /* Warna latar belakang card */
    padding: 20px;
    /* Padding di dalam card */
}

.card-title {
    font-size: 1.25rem;
    /* Ukuran font judul */
    font-weight: bold;
    /* Menebalkan font judul */
    color: #333;
    /* Warna teks judul */
}

.card-text {
    font-size: 0.9rem;
    /* Ukuran font deskripsi */
    color: #555;
    /* Warna teks deskripsi */
    margin-top: 10px;
    /* Jarak atas deskripsi */
}

.btn-info {
    background-color: #ff0000;
    /* Warna tombol */
    border: none;
    /* Menghilangkan border tombol */
    transition: background-color 0.3s;
    /* Animasi saat hover */
}

.btn-info:hover {
    background-color: #a00000;
    /* Warna tombol saat hover */
}

.about-section {
    padding: 60px 20px;
}

.about-img {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-maroon {
    background-color: maroon;
    color: white;
}

.btn-maroon:hover {
    background-color: #a00000;
}

.footer {
    background-color: maroon;
    color: white;
    padding: 40px 0 20px 0;
}

.footer a {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.footer a:hover {
    color: #e0f7f6;
}

.footer-heading {
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-brand {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.footer-description {
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
}

.social-icons a {
    margin-left: 15px;
    font-size: 18px;
}

.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border: none;
    padding: 8px 0;
}

.dropdown-item {
    padding: 8px 20px;
    color: #333;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #800000;
}

/* Animasi untuk dropdown */
.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

img.img-fluid {
    max-width: 60%;
    /* Gambar tidak lebih besar dari 60% dari kontainer */
    height: auto;
    /* Menjaga rasio aspek */
    display: block;
    margin: 0 auto;
    /* Pusatkan gambar */
}

img.mb-4 {
    max-width: 40%;
    /* Ukuran thumbnail lebih kecil */
    height: auto;
}

img.mt-3 {
    max-width: 50%;
    /* Ukuran gambar dalam blog */
    height: auto;
}