/* Footer Component Styles */

.footer {
    background-color: #292929;
}

/* Newsletter Section */
.footer__newsletter {
    padding: 80px;
    max-width: 1440px;
    margin: 0 auto;
}

.footer__newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}

.footer__newsletter-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 506px;
}

.footer__newsletter-badge {
    width: 177px;
    height: 30px;
    border-radius: 9999px;
    border: 1px solid #4B5563;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #414141;
}

.footer__newsletter-badge-text {
    font-size: 16px;
    font-weight: 500;
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
}

.footer__newsletter-heading {
    width: 506px;
    text-transform: uppercase;
    font-size: 28px;
    line-height: 34px;
    color: white;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
}

.footer__newsletter-description {
    width: 506px;
    font-size: 20px;
    line-height: 1.625;
    color: rgba(209, 213, 220, 0.5);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
}

.footer__newsletter-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 509px;
}

.footer__input-wrapper {
    width: 509px;
    height: 48px;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid #4B5563;
    background-color: transparent;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__input {
    flex: 1;
    background-color: transparent;
    color: white;
    outline: none;
    font-size: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: none;
}

.footer__input::placeholder {
    color: #9CA3AF;
}

.footer__subscribe-button {
    width: 509px;
    height: 48px;
    border-radius: 16px;
    padding: 16px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FD025F 0%, #B2004B 100%);
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.footer__subscribe-button:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Footer Links Section */
.footer__links-section {
    border-top: 1px solid #4B5563;
    padding: 32px 0;
}

.footer__links-container {
    max-width: 1440px;
    padding: 0 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__logo {
    height: 32px;
    object-fit: contain;
}

.footer__links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__link {
    font-size: 16px;
    color: white;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: white;
}

.footer__separator {
    color: white;
    margin: 0;
}

/* Copyright Section */
.footer__copyright {
    border-top: 1px solid #4B5563;
    padding: 24px 80px;
}

.footer__copyright-container {
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

.footer__copyright-text {
    font-size: 12px;
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
}

/* Responsive Design */

/* Large (lg) - max-width: 1350px */
@media (max-width: 1350px) {
    .footer__newsletter {
        padding: 70px 32px;
    }

    .footer__newsletter-wrapper {
        gap: 56px;
    }

    .footer__newsletter-left,
    .footer__newsletter-right {
        width: auto;
        max-width: 520px;
    }

    .footer__newsletter-heading,
    .footer__newsletter-description {
        width: auto;
        max-width: 520px;
    }

    .footer__input-wrapper,
    .footer__subscribe-button {
        width: 100%;
        max-width: 520px;
    }

    .footer__links-container {
        padding: 0 32px;
    }

    .footer__copyright {
        padding: 24px 32px;
    }
}

/* Tablet (md) - max-width: 1024px */
@media (max-width: 1024px) {
    .footer__newsletter {
        padding: 60px 24px;
    }

    .footer__newsletter-wrapper {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }

    .footer__newsletter-left,
    .footer__newsletter-right {
        width: 100%;
    }

    .footer__newsletter-heading,
    .footer__newsletter-description {
        width: 100%;
    }

    .footer__input-wrapper,
    .footer__subscribe-button {
        width: 100%;
    }

    .footer__links-container {
        padding: 0 24px;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .footer__links {
        flex-wrap: wrap;
        gap: 8px;
    }

    .footer__copyright {
        padding: 24px 24px;
    }
}

/* Small Tablet (sm) - max-width: 768px */
@media (max-width: 768px) {
    .footer__newsletter {
        padding: 48px 20px;
    }

    .footer__newsletter-wrapper {
        gap: 32px;
    }

    .footer__newsletter-badge {
        width: 160px;
        height: 28px;
    }

    .footer__newsletter-badge-text {
        font-size: 14px;
    }

    .footer__newsletter-heading {
        font-size: 24px;
        line-height: 30px;
    }

    .footer__newsletter-description {
        font-size: 18px;
    }

    .footer__input-wrapper,
    .footer__subscribe-button {
        height: 44px;
        font-size: 15px;
    }

    .footer__links-container {
        padding: 0 20px;
        gap: 16px;
    }

    .footer__logo {
        height: 28px;
    }

    .footer__link {
        font-size: 14px;
    }

    .footer__copyright {
        padding: 20px 20px;
    }
}

/* Mobile (xs) - max-width: 400px */
@media (max-width: 400px) {
    .footer__newsletter {
        padding: 28px 12px;
    }

    .footer__newsletter-wrapper {
        gap: 20px;
    }

    .footer__newsletter-left {
        gap: 10px;
    }

    .footer__newsletter-badge {
        width: 130px;
        height: 24px;
    }

    .footer__newsletter-badge-text {
        font-size: 12px;
    }

    .footer__newsletter-heading {
        font-size: 18px;
        line-height: 24px;
    }

    .footer__newsletter-description {
        font-size: 14px;
    }

    .footer__newsletter-right {
        gap: 10px;
    }

    .footer__input-wrapper,
    .footer__subscribe-button {
        height: 36px;
        font-size: 13px;
        padding: 10px;
    }

    .footer__links-container {
        padding: 0 12px;
        gap: 10px;
    }

    .footer__logo {
        height: 22px;
    }

    .footer__links {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .footer__separator {
        display: none;
    }

    .footer__link {
        font-size: 12px;
    }

    .footer__copyright {
        padding: 14px 12px;
    }

    .footer__copyright-text {
        font-size: 10px;
    }
}