/* Legal Pages - Terms, Privacy, etc. */

/* Smooth scroll with offset for fixed header */
html {
    scroll-padding-top: 120px;
}

/* Hero Section */
.legal-hero {
    height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    margin-top: 100px;
}

.legal-hero h1 {
    position: relative;
    color: #c4a962;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
}

/* Content Section */
.legal-content {
    background: #fafafa;
    padding: 60px 20px 80px;
    min-height: 60vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
    font-weight: 300;
}

.legal-toc {
    margin-bottom: 50px;
    padding: 30px;
    background: #f8f8f8;
    border-left: 3px solid #c4a962;
}

.legal-toc h2 {
    font-size: 1.3rem;
    color: #c4a962;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.legal-toc ol {
    padding-left: 25px;
    margin: 0;
}

.legal-toc li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
    margin-bottom: 8px;
}

.legal-toc a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-toc a:hover {
    color: #c4a962;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8e3dd;
}

.legal-section h3 {
    font-size: 1.2rem;
    color: #333;
    font-weight: 400;
    margin: 25px 0 15px 0;
}

.legal-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
    font-weight: 300;
}

.legal-section ul,
.legal-section ol {
    padding-left: 30px;
    margin-bottom: 20px;
}

.legal-section li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
    font-weight: 300;
}

.legal-section a {
    color: #c4a962;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.legal-updated {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid #e8e3dd;
    text-align: center;
}

.legal-updated p {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 960px) {
    .legal-hero {
        height: 20vh;
    }

    .legal-hero h1 {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .legal-container {
        padding: 30px 25px;
    }

    .legal-toc {
        padding: 20px;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }

    .legal-section p,
    .legal-section li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .legal-container {
        padding: 25px 20px;
    }

    .legal-hero h1 {
        font-size: 1.5rem;
    }
}
