/* styles.css */
body {
    background: linear-gradient(180deg, #f0fff4, #c8e6c9);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: linear-gradient(135deg, #ffffff, #e8f5e9); /* Latar putih lembut */
    border-radius: 15px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 400px;
    padding: 30px;
    text-align: center;
}


.header .logo {
    width: 80px;
    margin-bottom: 15px;
}

.header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800; /* Ketebalan lebih kuat */
    margin: 15px 0;
    color: #004E00; /* Hijau gelap */
    text-transform: uppercase;
}

.sub-heading {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #353434;
}

.header p {
    font-size: 14px;
    color: #666666;
}

.links {
    margin-top: 20px;
}

.link-item {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #c8e6c9;
    border-radius: 5px;
    text-decoration: none;
    color: #333333;
    padding: 10px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.link-item:hover {
    background-color: #a5d6a7; /* Hijau lebih terang */
    transform: scale(1.03); /* Sedikit membesar */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow pada hover */
    transition: all 0.3s ease; /* Animasi halus */
}

.link-item img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.link-item img:hover {
    transform: scale(1.1); /* Ikon sedikit membesar saat hover */
}

.link-item span {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    animation: fadeIn 1s ease-in-out;
}


.extra-section {
    margin-top: 20px;
    text-align: center;
}

.video-container {
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* Aspect ratio 16:9 */
}

.youtube-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px; /* Opsional, untuk membuat sudut membulat */
    border: 1px solid #c8e6c9; /* Tambahkan border untuk konsistensi */
}

.whatsapp-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #25d366; /* Hijau WhatsApp */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #1ebe57; /* Warna lebih gelap saat hover */
}




@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 15px;
    }

    .link-item {
        text-align: left;
        padding: 15px;
    }

    .link-item span {
        font-size: 14px;
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
    }

    .link-item img {
        width: 30px;
        height: 30px;
        margin-right: 10px;
        transition: transform 0.3s ease;
    }

    .link-item img:hover {
        transform: scale(1.1); /* Ikon sedikit membesar saat hover */
    }

    .link-item:hover {
        background-color: #a5d6a7; /* Hijau lebih terang */
        transform: scale(1.03); /* Sedikit membesar */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow pada hover */
        transition: all 0.3s ease; /* Animasi halus */
    }
    
}

