/* ============================================================
   FOOTER.CSS — AlwinBet main footer styles
   ============================================================ */

/* ----------------------------------------------------------
   VARIABLES (colors consistent with the project palette)
   ---------------------------------------------------------- */
:root {
    --footer-bg:        #020e1f;
    --footer-border:    #f7be18;
    --footer-text:      rgba(255, 255, 255, 0.70);
    --footer-text-dim:  rgba(255, 255, 255, 0.40);
    --footer-link:      rgba(255, 255, 255, 0.75);
    --footer-link-hover:#f7be18;
    --footer-section-bg:#0b1e35;
    --footer-bottom-bg: #010b17;
    --gold:             #f7be18;
    --green:            #00ac69;
}

/* ----------------------------------------------------------
   MAIN FOOTER CONTAINER
   ---------------------------------------------------------- */
.main-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    font-size: 0.88rem;
    line-height: 1.6;
    padding: 0;
    margin-top: 0;
    border-top: 3px solid var(--footer-border);
}

/* ----------------------------------------------------------
   BODY SECTION
   ---------------------------------------------------------- */
.footer-body {
    padding: 3rem 0 2rem;
}

/* ----------------------------------------------------------
   BRAND / DESCRIPTION COLUMN
   ---------------------------------------------------------- */
.footer-brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.02em;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.footer-brand-name span {
    color: var(--gold);
}

.footer-tagline {
    color: var(--footer-text);
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    max-width: 280px;
}

/* Accent badge "AI-powered" */
.footer-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background-color: rgba(247, 190, 24, 0.12);
    border: 1px solid rgba(247, 190, 24, 0.35);
    border-radius: 20px;
    padding: 0.2rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

/* ----------------------------------------------------------
   SECTION HEADINGS
   ---------------------------------------------------------- */
.footer-section-title {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(247, 190, 24, 0.2);
}

/* ----------------------------------------------------------
   NAV LINKS
   ---------------------------------------------------------- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--footer-link);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a i {
    font-size: 0.65rem;
    color: var(--footer-text-dim);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--footer-link-hover);
    padding-left: 3px;
}

.footer-links a:hover i {
    color: var(--gold);
}

/* ----------------------------------------------------------
   SOCIAL ICONS
   ---------------------------------------------------------- */
.footer-social-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--footer-link);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.88rem;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social-link:hover .footer-social-icon {
    transform: scale(1.1);
}

.footer-social-link:hover {
    color: #ffffff;
}

.footer-social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.footer-social-icon.facebook {
    background-color: #1877f2;
    color: #fff;
}

.footer-social-icon.telegram {
    background-color: #26a5e4;
    color: #fff;
}

/* ----------------------------------------------------------
   RESPONSIBLE GAMING SECTION
   ---------------------------------------------------------- */
.footer-responsible-gaming {
    background-color: rgba(247, 190, 24, 0.06);
    border: 1px solid rgba(247, 190, 24, 0.15);
    border-radius: 8px;
    padding: 1rem 1.1rem;
}

.footer-responsible-gaming .logo-gioco-responsabile {
    width: 9rem;
    height: auto;
    padding: 0;
    margin-bottom: 0.65rem;
    display: block;
    filter: brightness(0.9);
}

.footer-disclaimer {
    font-size: 0.72rem;
    color: var(--footer-text-dim);
    line-height: 1.5;
    margin: 0;
}

/* ----------------------------------------------------------
   BOTTOM BAR
   ---------------------------------------------------------- */
.footer-bottom {
    background-color: var(--footer-bottom-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1rem 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-copyright {
    font-size: 0.78rem;
    color: var(--footer-text-dim);
    margin: 0;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal-links a {
    font-size: 0.78rem;
    color: var(--footer-text-dim);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: var(--gold);
}

.footer-legal-sep {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.75rem;
}

/* ----------------------------------------------------------
   DIVIDER
   ---------------------------------------------------------- */
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 0 1rem 1.5rem;
}

/* ----------------------------------------------------------
   RESPONSIVE ADJUSTMENTS
   ---------------------------------------------------------- */
@media (max-width: 767px) {
    .footer-body {
        padding: 2rem 0 1.5rem;
    }

    .footer-brand-name {
        font-size: 1.1rem;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .footer-legal-links {
        gap: 0.65rem;
    }
}
