/* LondonVeelvetHall.com - Legal Pages Styles */

/* Legal Header */
.lvhLegalHeader {
    background: linear-gradient(135deg, var(--lvhVeelvetNavy) 0%, var(--lvhVeelvetWine) 100%);
    padding: 7rem 0 4rem;
    margin-top: 80px;
}

.lvhLegalHeaderContainer {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.lvhLegalHeaderTitle {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--lvhGalleryStone);
    margin-bottom: 0.5rem;
}

.lvhLegalHeaderDate {
    color: var(--lvhGoldLine);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.9rem;
}

/* Legal Content */
.lvhLegalContent {
    padding: 4rem 0;
    background: var(--lvhGalleryStone);
}

.lvhLegalContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
}

.lvhLegalText {
    color: var(--lvhInk);
}

.lvhLegalText h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.75rem;
    color: var(--lvhVeelvetNavy);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.lvhLegalText h2:first-child {
    margin-top: 0;
}

.lvhLegalText h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    color: var(--lvhVeelvetTeal);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.lvhLegalText p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--lvhMuted);
}

.lvhLegalText ul {
    list-style: none;
    margin: 1rem 0 1rem 1.5rem;
}

.lvhLegalText ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--lvhMuted);
}

.lvhLegalText ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--lvhGoldLine);
    font-size: 1.2rem;
    line-height: 1.7;
}

.lvhLegalText a {
    color: var(--lvhVeelvetNavy);
    text-decoration: none;
    transition: color var(--lvhTransitionFast);
}

.lvhLegalText a:hover {
    color: var(--lvhNeonCoral);
    text-decoration: underline;
}

.lvhLegalText strong {
    color: var(--lvhVeelvetNavy);
    font-weight: 600;
}

/* Legal Sidebar */
.lvhLegalSidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.lvhLegalNav,
.lvhLegalLinks {
    background: var(--lvhPlaster);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--lvhBorder);
    margin-bottom: 1.5rem;
}

.lvhLegalNav h3,
.lvhLegalLinks h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    color: var(--lvhVeelvetNavy);
    margin-bottom: 1rem;
}

.lvhLegalNav ul,
.lvhLegalLinks ul {
    list-style: none;
    margin: 0;
}

.lvhLegalNav ul li,
.lvhLegalLinks ul li {
    padding: 0;
    margin-bottom: 0.5rem;
}

.lvhLegalNav ul li::before {
    display: none;
}

.lvhLegalNav a,
.lvhLegalLinks a {
    color: var(--lvhMuted);
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--lvhBorder);
    transition: all var(--lvhTransitionFast);
}

.lvhLegalNav a:hover,
.lvhLegalLinks a:hover {
    color: var(--lvhVeelvetNavy);
    padding-left: 0.5rem;
    border-bottom-color: var(--lvhGoldLine);
}

.lvhLegalNav a:last-child,
.lvhLegalLinks a:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 968px) {
    .lvhLegalContainer {
        grid-template-columns: 1fr;
    }

    .lvhLegalSidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .lvhLegalHeader {
        padding: 5rem 0 3rem;
    }

    .lvhLegalContent {
        padding: 3rem 0;
    }

    .lvhLegalText h2 {
        font-size: 1.5rem;
    }

    .lvhLegalText h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .lvhLegalText h2 {
        font-size: 1.25rem;
    }

    .lvhLegalText ul {
        margin-left: 0.5rem;
    }
}

/* Print Styles */
@media print {
    .lvhNav,
    .lvhFooter,
    .lvhLegalSidebar {
        display: none;
    }

    .lvhLegalContainer {
        grid-template-columns: 1fr;
    }

    .lvhLegalContent {
        padding: 0;
    }

    .lvhLegalHeader {
        background: none;
        color: var(--lvhInk);
        padding: 2rem 0;
    }

    .lvhLegalHeaderTitle {
        color: var(--lvhInk);
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Anchor link offset */
.lvhLegalText h2[id],
.lvhLegalText h3[id] {
    scroll-margin-top: 120px;
}

/* Back to top button (optional) */
.lvhBackToTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--lvhVeelvetNavy);
    color: var(--lvhGalleryStone);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--lvhTransitionFast);
    z-index: 100;
}

.lvhBackToTop.lvhVisible {
    opacity: 1;
    visibility: visible;
}

.lvhBackToTop:hover {
    background: var(--lvhNeonCoral);
    transform: translateY(-3px);
}

.lvhBackToTop svg {
    width: 20px;
    height: 20px;
}
