/* --------------------------------------------------
   GLOBAL RESET & BASE STYLES
-------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
    background-color: #000;
    color: #ffffff;
    line-height: 1.5;
}

/* --------------------------------------------------
   MAIN WRAPPER
-------------------------------------------------- */
.tfk-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
}

/* --------------------------------------------------
   IMDb STYLE FOOTER
-------------------------------------------------- */
/* Base Styles */
.site-footer {
    background-color: #000; 
    color: #fff; 
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

/* Logo Styling */
.footer-logo img {
    max-width: 150px; 
    height: auto;
    display: block;
    margin-top: 10px;
}

/* Navigation Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    flex-grow: 1;
    margin-left: 50px;
}

.footer-nav-list {
    list-style: none;
}

.footer-nav-list li {
    margin-bottom: 10px;
}

.footer-nav-list a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.2s, transform 0.2s;
}

/* Hover Animation */
.footer-nav-list a:hover {
    opacity: 1;
    transform: translateX(4px);
}

/* Newsletter */
.footer-newsletter {
    max-width: 300px;
}

.newsletter-heading {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.newsletter-text {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 5px;
}

.newsletter-form input[type="email"] {
    padding: 10px;
    border: none;
    flex-grow: 1;
    background-color: #333; 
    color: #fff;
}

.subscribe-btn {
    background-color: #ffcc00; 
    color: #000;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s;
}

.subscribe-btn:hover {
    background-color: #e6b800;
}

/* Separator + Social Icons */
.footer-separator {
    height: 1px;
    background-color: #333; 
    margin: 20px 0;
}

.footer-bottom-social {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 20px;
    margin: 0 15px;
    opacity: 0.8;
    transition: opacity 0.2s, transform 0.25s;
}

.social-icons a:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* Copyright */
.footer-copyright {
    text-align: center;
    font-size: 12px;
    opacity: 0.6;
}

/* Mobile Footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 30px 15px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 30px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
        max-width: 400px;
    }

    .footer-col {
        text-align: left;
    }

    .footer-newsletter {
        max-width: 100%;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: row;
        max-width: 350px;
        margin: 0 auto;
    }
}
