/* Acumen Patrimoine - Legal Pages Specific Styles */

/* Page Hero */
.page-hero {
    background: linear-gradient(rgba(48, 48, 49, 0.82), rgba(48, 48, 49, 0.82)), url('../img/Acumen-patrimoine-hero1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 20px 80px;
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-hero p {
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8fafc;
    padding: 14px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #64748b;
}

.breadcrumb-inner a {
    color: #a0824d;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-inner a:hover {
    text-decoration: underline;
}

.breadcrumb-inner span {
    margin: 0 8px;
}

/* Main Content */
.legal-wrapper {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px 80px;
}

/* Section blocks */
.legal-section {
    background: white;
    border-radius: 16px;
    padding: 40px 45px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    border-left: 4px solid #d4af37;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-section h2 .section-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #a0824d, #d4af37);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.legal-section h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #374151;
    margin: 20px 0 8px;
}

.legal-section p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 12px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section a {
    color: #a0824d;
    text-decoration: none;
    font-weight: 500;
}

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

.legal-section ul {
    list-style: none;
    margin: 10px 0 14px 0;
    padding: 0;
}

.legal-section ul li {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.75;
    padding-left: 22px;
    position: relative;
    margin-bottom: 6px;
}

.legal-section ul li::before {
    content: "→";
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.legal-section ul li strong {
    color: #1f2937;
}

/* Info box */
.info-box {
    background: linear-gradient(135deg, #fbf8f1, #f5ecd8);
    border: 1px solid #e8d5a3;
    border-radius: 12px;
    padding: 20px 25px;
    margin-top: 16px;
}

.info-box p {
    margin: 0;
    color: #7c5a1e;
    font-size: 0.95rem;
}

/* Warning box */
.warning-box {
    background: #fef9ec;
    border: 1px solid #f0c040;
    border-radius: 12px;
    padding: 18px 22px;
    margin: 16px 0;
}

.warning-box p {
    margin: 0;
    color: #92400e;
    font-size: 0.95rem;
}

/* Date badge */
.update-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #a0824d, #d4af37);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 40px;
}

/* Footer */
footer {
    background: #303031;
    color: white;
    padding: 60px 20px 0;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

footer h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

footer ul li a:hover {
    color: #d4af37;
}

.footer-contact p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin: 0;
}

.footer-contact h4 {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.footer-copyright {
    background: #000000;
    padding: 20px;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }

    .legal-section {
        padding: 28px 24px;
    }

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