/* content-page.css — Styling for legal/informational pages */

.content-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #fff;
    padding: 100px 0 60px;
    text-align: center;
}

.content-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 12px;
}

.content-hero .subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #B8860B;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

.content-body {
    max-width: 820px;
    margin: 0 auto;
    padding: 80px 24px 100px;
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.75;
}

.content-body p {
    margin-bottom: 20px;
    font-size: 16px;
}

.content-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 56px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #B8860B;
}

.content-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 32px 0 12px;
}

.content-body ul,
.content-body ol {
    margin: 0 0 20px 24px;
}

.content-body li {
    margin-bottom: 8px;
    font-size: 16px;
}

.content-body a {
    color: #B8860B;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.content-body a:hover {
    border-bottom-color: #B8860B;
}

.content-body .last-updated {
    color: #888;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 40px;
}

.content-body .info-card {
    background: #f8f8f8;
    border-left: 3px solid #B8860B;
    padding: 20px 28px;
    margin: 28px 0;
    border-radius: 0 6px 6px 0;
}

.content-body .info-card p:last-child {
    margin-bottom: 0;
}

/* Contact page specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 40px;
}

.contact-method {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
}

.contact-method:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.contact-method .icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: #B8860B;
}

.contact-method h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    margin: 0 0 8px;
    padding: 0;
    border: 0;
}

.contact-method p {
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
}

.contact-method .contact-action {
    display: inline-block;
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 24px;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    transition: all 0.2s;
}

.contact-method .contact-action:hover {
    background: #1a1a1a;
    color: #fff;
}

/* About page specific */
.about-section {
    margin: 80px 0;
}

.about-section .lead {
    font-size: 20px;
    color: #555;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 24px;
}

.value-card .value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    color: #B8860B;
}

.value-card h3 {
    margin: 0 0 12px;
    padding: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
}

.value-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .content-hero {
        padding: 60px 0 40px;
    }
    .content-hero h1 {
        font-size: 32px;
    }
    .content-body {
        padding: 48px 20px 60px;
    }
    .content-body h2 {
        font-size: 24px;
        margin: 40px 0 16px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
