body {
    font-family: 'Inter', sans-serif;
}

.hero {
    background: linear-gradient(135deg, #42d1f5, #ad42f5);
    position: relative;
    height: 600px; /* Sesuaikan dengan kebutuhan */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.3), transparent 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    text-align: center;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    animation: fadeIn 1s ease-in-out forwards;
}

.hero p {
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 0.5s;
}

.hero a {
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 1s;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

