/*Youtube channel*/
.youtube-channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff0000, #ff4d4d);
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.18);
}

.youtube-channel-btn:hover {
    transform: translateY(-3px);
    color: #fff !important;
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.28);
}

.youtube-channel-btn i {
    font-size: 20px;
}

@media (max-width: 576px) {
    .youtube-channel-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
}
/*Instagram*/
.social-media-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

/* YouTube Button */

.youtube-channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff0000, #ff4d4d);
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 10px 25px rgba(255,0,0,.18);
}

.youtube-channel-btn:hover {
    transform: translateY(-3px);
    color: #fff !important;
    box-shadow: 0 15px 35px rgba(255,0,0,.28);
}


/* Instagram Button */

.instagram-channel-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:14px 28px;
    border-radius:50px;
    background:linear-gradient(
        135deg,
        #833AB4,
        #FD1D1D,
        #FCAF45
    );
    color:#fff !important;
    font-weight:600;
    text-decoration:none;
    transition:all .3s ease;
    box-shadow:0 10px 25px rgba(253,29,29,.18);
}

.instagram-channel-btn:hover{
    transform:translateY(-3px);
    color:#fff !important;
    box-shadow:0 15px 35px rgba(253,29,29,.28);
}


/* Icons */

.youtube-channel-btn i,
.instagram-channel-btn i{
    font-size:20px;
}


/* Mobile */

@media(max-width:576px){

    .youtube-channel-btn,
    .instagram-channel-btn{
        width:100%;
        justify-content:center;
        padding:12px 20px;
    }

}