:root {
    --primary-background: #36a50b;        
    --secondary-background: #edfb2d;      
    --accent-green: #388e3c;             
    --accent-yellow: #7be007;             
    --light-green: #c8e6c9;              
    --dark-green: #027015;                
    --orange-gold: #fbff00;
    --soft-gold: #ffecb3;                 
}


* {
    margin: 0;
    padding: 0;
}

h2 {
    font-size: 16px;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: url('https://w7.pngwing.com/pngs/746/609/png-transparent-blue-wave-particles-blue-wave-light-particle-effects.png') repeat;
    opacity: 0.05;
    animation: moveParticles 60s linear infinite;
    z-index: -1;
}

@keyframes moveParticles {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 1000px 1000px;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg,
            var(--secondary-background),
            var(--accent-yellow),
            var(--accent-green),
            var(--primary-background),
            var(--dark-green));

    color: #fff;
}

body {
    background: linear-gradient(135deg, #7dff03, #c5fb00, #219ebc, #023047, #8ecae6);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    background-attachment: fixed;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease-in-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

a {
    color: #fff;
    text-decoration: none;
}

.card {
    padding: 20px;
    border-radius: 50px;
    background: linear-gradient(160deg, var(--primary-background), var(--accent-green));
    min-width: 95%;
    margin: 0 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

.card:hover {
    transform: scale(1.03) rotateX(2deg) rotateY(2deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card a {
    display: flex;
    align-items: center;
    gap: 20px;
}

.card p {
    font-size: 12px;
}

@keyframes spinY {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

.card i {
    font-size: 40px;
    animation: spinY 7s linear infinite;
}

.head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 15px 30px 3rem;
}

.head img {
    width: 50%;
}

.head .text {
    text-align: center;
}

.information,
.contact,
.location,
.medsos {
    margin: 30px 30px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 0 5px var(--orange-gold),
        0 0 10px var(--soft-gold),
        0 0 20px var(--accent-yellow),
        0 0 30px var(--accent-green);
    padding: 20px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.youtube {
    display: flex;
    justify-content: center;
margin: 30px;
}

.youtube iframe {
    width: 100%;
    height: 200px;
    border-radius: 20px;
}

.contact .card a {
    display: block;
    text-align: center;
}

.medsos .container {
    display: flex;
    justify-content: space-between;
    max-width: 98%;
    gap: 10px;
}

.medsos .container i {
    font-size: 27px;

}


.medsos a {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.medsos a:nth-child(1) {
    background-color: #131111;
}

.medsos a:nth-child(2) {
    background-color: #f02121;
}

.medsos a:nth-child(3) {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.medsos a:nth-child(4) {
    background-color: #1877f2;
}

.location iframe {
    width: 100%;
    height: 200px;
    border-radius: 15px;
}

footer {
    background: linear-gradient(to right, var(--dark-green), var(--primary-background));
    text-align: center;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    font-size: 12px;
}