/* FOOTER STYLES */
.footer {
    background: #0a0a28;
    padding: 40px 20px;
    border-top: 1px solid #2a2a4a;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 40px;
}

.footer-section-title {
    color: #fff;
    font-family: 'Rock Salt', cursive;
    margin-bottom: 20px;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Social Section */
.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-social-link {
    transition: transform 0.3s;
    display: block;
}

.footer-social-link:hover {
    transform: translateY(-3px);
}

.footer-social-icon {
    height: 35px;
    width: 40px;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.2));
}

/* Rating Section */
.footer-rating-box {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #3a3a5a;
    margin: 0 15px;
}

.rating-text {
    color: #fff;
    margin: 0 0 15px 0;
    line-height: 1.4;
    font-size: 0.9em;
}

.gradient-text {
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: bold;
    display: block;
    margin-top: 8px;
}

/* Contacts Section */
.footer-contacts {
    text-align: center;
}

.contact-link {
    color: #8ab4f8;
    text-decoration: none;
    font-size: 0.9em;
    display: inline-block;
    margin: 8px 0;
    transition: opacity 0.3s;
}

.contact-link:hover {
    opacity: 0.8;
}

/* Copyright Section */
.footer-copyright {
    border-top: 1px solid #3a3a5a;
    padding-top: 25px;
    text-align: center;
}

.copyright-text {
    color: #888;
    margin: 0;
    font-size: 0.8em;
    letter-spacing: 1px;
    line-height: 1.5;
}

/* Media Queries */
@media (max-width: 768px) {
    .footer {
        padding: 30px 15px;
        margin-top: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 30px;
    }

    .footer-section-title {
        font-size: 1.1em;
        margin-bottom: 15px;
    }

    .footer-rating-box {
        margin: 0;
        padding: 15px;
    }

    .rating-text {
        font-size: 0.85em;
    }

    #star-rating {
        transform: scale(0.9);
        margin: 10px 0;
    }

    .footer-social-icon {
        width: 35px;
    }

    .contact-link {
        font-size: 0.85em;
    }

    .copyright-text {
        font-size: 0.75em;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 10px;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-social-icons {
        gap: 15px;
    }

    #star-rating {
        transform: scale(0.8);
    }
}