/* ── Simplified Footer Design ─────────────────────────────────── */

.footer {
    position: relative;
    background: #040608;
    min-height: 80vh; /* Toned down from 100vh */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--spacing-3xl) 0 40px;
    margin-top: var(--spacing-3xl);
    overflow: hidden;
    border-top: 1px solid var(--toi-border);
}

/* Floating Elements (Static) */
.footer-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.3; /* More subtle */
}

.footer-ice-skate {
    position: absolute;
    width: 60px;
    height: 60px;
    color: var(--toi-accent);
    opacity: 0.05;
}

/* Content Layout */
.footer .container {
    position: relative;
    z-index: 5;
    flex-grow: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-3xl);
}

.footer-title {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--toi-text);
    margin-bottom: var(--spacing-xl);
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
}

.footer-nav a {
    color: var(--toi-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-nav a:hover {
    color: var(--toi-accent);
}

/* Giant Background Brand Text (Static) */
.footer-brand-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
}

.footer-brand-bg {
    font-size: 15vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.01);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.015);
    white-space: nowrap;
    user-select: none;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.footer-bottom {
    position: relative;
    z-index: 10;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: auto;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-legal p {
    font-size: 0.85rem;
    color: var(--toi-text-subtle);
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--toi-text-subtle);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .footer { min-height: auto; }
    .footer-brand-bg { font-size: 20vw; }
}
