/* General body styling */
body {
    font-family: 'Arial', sans-serif;
    background: #f5f6fa;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Header gradient styling */
/* Logo Styling */
.logo {
    width: 60px; /* Adjust size for smaller screens */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    background-color: white;
    padding: 5px;
}

/* Responsive adjustments for header text */
header h1 {
    font-size: 1.8rem; /* Smaller font for mobile */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

header h1.display-md-4 {
    font-size: 2.5rem; /* Larger font for desktop */
}

header p.lead {
    font-size: 1rem; /* Slightly smaller font for mobile */
}

/* Header Overlay */
.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

/* Adjust padding for responsiveness */
.bg-gradient {
    padding: 3rem 1rem; /* Smaller padding for mobile */
}

@media (min-width: 768px) {
    .bg-gradient {
        padding: 5rem 2rem; /* Larger padding for tablets and desktops */
    }

    header h1 {
        font-size: 2.2rem;
    }

    header p.lead {
        font-size: 1.2rem;
    }
}


/* Footer styling */
footer {
    background: #0781e3; /* Ubah warna latar belakang footer menjadi #0781e3 */
    color: white; /* Menjaga teks tetap putih agar kontras dengan latar belakang biru */
    font-size: 0.9rem;
}



footer i {
    margin-right: 5px;
}


.divider {
    height: 2px;
    width: 50%; /* Atur sesuai kebutuhan */
    margin: 0 auto; /* Posisikan di tengah */
    background: linear-gradient(to right, #4db8ff, #72c4f1); /* Gradasi biru cerah */
    border-radius: 10px;
}



