/* ===== LEGAL PAGES STYLES ===== */

.legal-page {
    min-height: 100vh;
    background: url('../img/bg.jpg') center center / cover no-repeat fixed;
    position: relative;
}

.legal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.85) 0%, rgba(13, 13, 13, 0.95) 100%);
}

.legal-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header .logo {
    width: 150px;
    max-width: 60%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 20px rgba(201, 168, 108, 0.3));
}

h1 {
    font-family: var(--font-body);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.legal-header h1 {
    font-family: var(--font-body);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.legal-header .update-date {
    font-size: 0.9rem;
    color: var(--color-white-soft);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 244, 141, 0.2);
}

.legal-section h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--color-white);
    margin: 1.5rem 0 0.75rem;
}

.legal-section p {
    margin-bottom: 1rem;
    color: var(--color-white-soft);
    line-height: 1.8;
}

.legal-section ul {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--color-white-soft);
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-section a {
    color: var(--color-gold);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--color-gold);
    text-decoration: none;
    font-size: 0.9rem;
}

.back-link:hover {
    text-decoration: underline;
}

.legal-footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 244, 141, 0.1);
    margin-top: 3rem;
}

.legal-footer p {
    color: var(--color-white-soft);
    font-size: 0.85rem;
}

.legal-footer nav {
    margin-top: 1rem;
}

.legal-footer nav a {
    color: var(--color-gold);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.85rem;
}

.legal-footer nav a:hover {
    text-decoration: underline;
}

a.simple-link {
    color: white;
    text-decoration: none;
}

a.simple-link:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .legal-footer nav {
        display: flex;
        flex-direction: column;
        gap: 0rem;
    }

    .legal-footer nav a {
        margin: 0;
    }
}