/**
 * FOOTER COMPONENT STYLES
 */

.site-footer {
    background: var(--ui-dark);
    color: var(--ui-light-grey);
    padding: 60px 0 30px;
    margin-top: 60px;
    font-family: var(--font-main);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Footer Widgets / Columns */
.footer-column h4 {
    color: var(--ui-white);
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--brand-pink);
}

/* About Column */
.footer-about .footer-logo {
    margin-bottom: 25px;
    display: block;
}

.footer-logo-variant .logo-mondo {
    color: var(--ui-white) !important;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.6;
    color: #AAA;
    margin-bottom: 20px;
}

.mini-disclaimer {
    font-size: 13px !important;
    line-height: 1.6 !important;
    color: #AAA !important;
    margin-bottom: 25px !important;
}

.mini-disclaimer a {
    color: var(--brand-pink);
    text-decoration: none;
}

.adult-content-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 77, 109, 0.1);
    border: 1px solid rgba(255, 77, 109, 0.2);
    padding: 10px 15px;
    border-radius: 10px;
    width: fit-content;
}

.age-badge {
    background: var(--brand-pink);
    color: var(--ui-white);
    font-size: 14px;
    font-weight: 900;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    color: var(--brand-pink);
    letter-spacing: 1px;
}

/* Links List */
.footer-links ul {
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #AAA;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--brand-pink);
    padding-left: 5px;
}

/* Newsletter Section */
.footer-newsletter p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #AAA;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 10px 15px;
    color: var(--ui-white);
    font-size: 14px;
    flex-grow: 1;
    outline: none;
    transition: border-color var(--transition-fast);
}

.newsletter-form input:focus {
    border-color: var(--brand-pink);
}

.newsletter-form button {
    background: var(--brand-pink);
    color: var(--ui-white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--transition-fast), background var(--transition-fast);
}

.newsletter-form button:hover {
    background: #FF2D55;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 13px;
    color: #777;
}

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

.footer-secondary-links a {
    font-size: 13px;
    color: #777;
}

.footer-secondary-links a:hover {
    color: var(--ui-white);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 25px; }
}

@media (max-width: 600px) {
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }

    /* Newsletter: impila verticalmente */
    .newsletter-form { flex-direction: column; }
    .newsletter-form input  { border-radius: 10px; }
    .newsletter-form button { border-radius: 10px; padding: 12px; }

    /* Logo footer più piccolo */
    .footer-logo-variant .logo-main { font-size: 28px; }
    .footer-logo-variant .logo-icon { height: 38px; width: 38px; }

    /* Bottom links centrati */
    .footer-secondary-links { justify-content: center; }
}
