html, body {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9fafb;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

#home {
    background: linear-gradient(135deg, #e0f7fa, #fce4e4);
}

#home h1 {
    color: #2c3e50;
}

#home p {
    color: #555;
}

.btn-custom {
    background-color: #6c5ce7;
    border-color: #6c5ce7;
    color: white;
}

.btn-custom:hover {
    background-color: #5a4bcf;
    border-color: #5a4bcf;
    color: whitesmoke;
}

.btn-primary {
    background-color: #6c5ce7;
    border-color: #6c5ce7;
}

.btn-primary:hover {
    background-color: #5a4bcf;
    border-color: #5a4bcf;
}

.navbar-custom {
    background: linear-gradient(to right, #e0f7fa, #fce4ec);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: #34495e;
    font-weight: 500;
}

.navbar-custom .nav-link:hover {
    color: #6c5ce7;
    text-decoration: underline;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(52, 73, 94, 0.8)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.section-pastel {
    background: linear-gradient(135deg, #e0f7fa, #fce4ec);
}

.card-zoom {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
.card-zoom:hover {
    transform: scale(1.05); /* Zoom in */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Memberikan efek bayangan lebih tajam saat hover */
}

#informasi input:focus, 
#informasi button:focus {
  box-shadow: 0 0 0 0.2rem rgba(128, 203, 196, 0.4);
}

#informasi button:hover {
  background-color: #4db6ac;
  transition: all 0.2s ease;
}

.bounce-in-alert {
    animation: bounceIn 0.8s ease both;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.98);
    }

    100% {
        transform: scale(1);
    }
}

  

