/* Socials Section */
.socials-section {
    background-color: var(--btn-bg);
    padding: 80px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.socials-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.socials-title {
    font-family: var(--font-main);
    font-size: 6rem;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 0px #000;
    -webkit-text-stroke: 2px black;
    margin: 0;
}

.socials-gif {
    max-width: 600px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.socials-gif img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 4px solid #000000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.socials-buttons {
    display: flex;
    gap: 30px;
    align-items: center;
}

.social-btn {
    background-color: #FFFFFF;
    border: 4px solid var(--border-color);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.social-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.social-btn svg {
    width: 50px;
    height: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .socials-section {
        padding: 60px 30px;
    }

    .socials-title {
        font-size: 4rem;
        text-shadow: 2px 2px 0px #000;
        -webkit-text-stroke: 1.5px black;
    }

    .socials-gif {
        max-width: 300px;
    }

    .socials-buttons {
        gap: 20px;
    }

    .social-btn {
        width: 80px;
        height: 80px;
    }

    .social-btn svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .socials-section {
        padding: 50px 20px;
    }

    .socials-title {
        font-size: 3rem;
        -webkit-text-stroke: 1px black;
    }

    .socials-gif {
        max-width: 250px;
    }

    .socials-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .social-btn {
        width: 70px;
        height: 70px;
    }

    .social-btn svg {
        width: 35px;
        height: 35px;
    }
}