/* Legal Pages (Privacy & Terms) Styles */

/* Force light theme for legal pages */
body {
    background-color: #FFFFFF !important;
    color: #1A1A1A !important;
}

/* Header/Nav overrides for light background */


.nav-left li a,
.nav-right li a {
    color: #1A1A1A !important;
    font-weight: 500;
}

.nav-left li a:hover,
.nav-right li a:hover {
    color: #d4a017 !important;
    /* Keep gold/accent on hover */
}

/* Hero Section */
.legal-hero,
.privacy-hero,
.terms-hero {
    padding: 180px 20px 60px;
    background: #FFFFFF;
    color: #1A1A1A;
    text-align: center;
}

.legal-hero h1,
.privacy-hero h1,
.terms-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: #1A1A1A;
}

/* Content Section */
.legal-content,
.privacy-content,
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 80px;
    background: #FFFFFF;
    /* Ensure content area is white */
}

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

.legal-section h2,
.privacy-section h2,
.terms-section h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: #1A1A1A;
    margin-bottom: 20px;
}

.legal-section p,
.legal-section ul,
.privacy-section p,
.privacy-section ul,
.terms-section p,
.terms-section ul {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: #333333;
    /* Dark grey for readability */
    margin-bottom: 15px;
}

.legal-section ul,
.privacy-section ul,
.terms-section ul {
    padding-left: 20px;
    list-style-type: disc;
}

.contact-info strong {
    color: #000000;
}