/* Footer Styles */
footer {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0D0D12;
    color: white;
    padding: 4rem 6rem;
    box-sizing: border-box;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(119, 118, 118, 0.51);
    font-weight: 700;
}

/* Footer Left Container */
.footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Průmka Tournaments Logo */
.footer-logo {
    height: 150px;
    width: auto;
    transition: transform 0.3s ease;
}
.footer-logo:hover {
    transform: rotate(360deg);
    cursor: pointer;
}

/* Container for PRŮMKA TOURNAMENTS and Hosted section */
.footer-text-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Hosted by section */
.footer-sub {
    display: flex;
    align-items: center;
    gap: 5px;
}


.footer-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-link:hover {
    opacity: 0.8;
}


.footer-logo {
    height: 50px;
    width: auto;
}
.footer-text {
    font-size: 20px;
    font-weight: bold;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.footer-icons {
    display: flex;
    gap: 20px;
}

.footer-icons a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: color 0.3s ease;
}

.footer-icons a:hover {
    opacity: 0.8;
}

/* Icon Colors */
.footer-icons .instagram { color: #E1306C; }
.footer-icons .discord { color: #5865F2; }
.footer-icons .twitch { color: #9146FF; }

.footer-icons .instagram:hover {
    color: #e1306c;
    transform: scale(1.1);
    transition: transform 0.3s ease 0s, color 0.3s ease 0s;
}
.footer-icons .discord:hover {
    color: #6470f3;
    transform: scale(1.1);
    transition: transform 0.3s ease 0s, color 0.3s ease 0s;
}
.footer-icons .twitch:hover {
    color: #9146ff;
    transform: scale(1.1);
    transition: transform 0.3s ease 0s, color 0.3s ease 0s;
}

/* Responsive Footer Styles */
@media (max-width: 768px) {
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1rem;
    }

    .footer-left {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-logo {
        height: 100px;
    }

    .footer-text-container {
        align-items: center;
    }

    .footer-sub {
        justify-content: center;
    }

    .footer-right {
        align-items: center;
        margin-top: 1.5rem;
    }

    .footer-icons {
        justify-content: center;
    }

    .footer-icons a {
        font-size: 20px;
    }

    .footer-text {
        font-size: 18px;
    }
}
