/* ============================================================
   LEGAL PAGES — Dark Luxury Theme: Forest Green & Gold
   ============================================================ */

/* Force body background to be Dark Forest Green on legal pages only */
body {
    background-color: #01291b !important;
    color: #ffffff !important;
}

/* ---------- Hero Banner ---------- */
.legal-hero {
    padding: 180px 5% 90px;
    background: #013220;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(246, 226, 179, 0.15);
    overflow: hidden;
}

/* Decorative gold wash behind hero text */
.legal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(246, 226, 179, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.legal-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 1;
}

.legal-hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0 auto;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.03em;
    position: relative;
    z-index: 1;
}

/* Thin gold rule below hero title */
.legal-hero h1::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: #c9a84c;
    margin: 16px auto 0;
    border-radius: 2px;
}

/* ---------- Content Wrapper ---------- */
.legal-content {
    padding: 90px 5% 100px;
    max-width: 900px;
    margin: 0 auto;
    background: transparent;
}

/* ---------- Intro Block ---------- */
.legal-intro {
    margin-bottom: 60px;
    padding: 36px 40px;
    border-radius: 12px;
    background: rgba(246, 226, 179, 0.05);
    border: 1px solid rgba(246, 226, 179, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.legal-intro:hover {
    transform: translateY(-2px);
    border-color: rgba(246, 226, 179, 0.35);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.legal-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 18px;
    color: #f6e2b3;
    position: relative;
    padding-bottom: 14px;
}

.legal-intro h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #c9a84c;
    border-radius: 2px;
}

.legal-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Outfit', sans-serif;
    margin: 0;
}

/* ---------- Section Blocks ---------- */
.legal-block {
    margin-bottom: 64px;
    padding: 32px 36px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(246, 226, 179, 0.12);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.legal-block:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(246, 226, 179, 0.25);
    box-shadow: 0 12px 32px rgba(246, 226, 179, 0.08);
}

/* Headings */
.legal-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    margin-bottom: 22px;
    color: #f6e2b3;
    position: relative;
    padding-bottom: 14px;
}

.legal-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #c9a84c, #f6e2b3);
    border-radius: 2px;
}

.legal-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-top: 32px;
    margin-bottom: 14px;
    color: #ffffff;
    opacity: 0.9;
}

/* Body text */
.legal-block p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

/* Lists */
.legal-block ul {
    list-style: none;
    margin-bottom: 22px;
    padding: 0;
}

.legal-block ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 13px;
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Outfit', sans-serif;
    line-height: 1.7;
}

.legal-block ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #c9a84c;
    font-size: 0.85rem;
    top: 3px;
}

/* Strong labels inside lists */
.legal-block ul li strong {
    color: #f6e2b3;
    font-weight: 600;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .legal-hero {
        padding: 140px 5% 60px;
    }

    .legal-content {
        padding: 50px 5% 70px;
    }

    .legal-intro,
    .legal-block {
        padding: 24px 20px;
    }

    .legal-block h2 {
        font-size: 1.5rem;
    }

    .legal-intro h2 {
        font-size: 1.6rem;
    }
}
