/* ==========================================
   LEGAL PAGES - DJ DOUBLEOHTEVIN
   ========================================== */

/* Hero */
.legal-hero {
    height: 30vh;
    background-color: #000000;
    background-image: linear-gradient(
        135deg,
        #000000 0%,
        #1A1A1A 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
    border-bottom: 2px solid #C0C0C0;
}

.legal-hero-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: #ffffff;
    letter-spacing: 5px;
    margin-bottom: 0.5rem;
}

.legal-hero-content p {
    color: #C0C0C0;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Content section */
.legal-section {
    background-color: #0A0A0A;
    padding: 5rem 0;
}

/* Content wrapper */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Intro */
.legal-intro {
    background-color: #111111;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(192,192,192,0.2);
}

.legal-intro p {
    color: #C0C0C0;
    line-height: 1.9;
    font-size: 1rem;
    margin: 0;
    font-family: 'Raleway', sans-serif;
}

/* Legal blocks */
.legal-block {
    background-color: #111111;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #C0C0C0;
    border: 1px solid rgba(192,192,192,0.1);
    border-left: 4px solid #C0C0C0;
}

.legal-block h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.legal-block h2 i {
    color: #C0C0C0;
    font-size: 1.1rem;
}

.legal-block p {
    color: #888888;
    line-height: 1.9;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-family: 'Raleway', sans-serif;
}

.legal-block p:last-child {
    margin-bottom: 0;
}

.legal-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.legal-block ul li {
    color: #888888;
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
    font-family: 'Raleway', sans-serif;
}

.legal-block ul li::before {
    content: '•';
    color: #C0C0C0;
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* Contact info */
.legal-contact {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #C0C0C0;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 0.5rem;
    font-family: 'Raleway', sans-serif;
}

.legal-contact i {
    color: #C0C0C0;
}

/* Footer legal links */
.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
}

.footer-legal-links a {
    color: #888888;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal-links a:hover {
    color: #C0C0C0;
}

.footer-legal-links span {
    color: #555555;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-hero-content h1 {
        font-size: 2.5rem;
    }

    .legal-block {
        padding: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
