/* Terms of Service Page - Sin City Seats
   Bebas Neue / Montserrat / Rajdhani
   Background #000, card #1a1a1a, accent #00E5FF
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;600;700&family=Rajdhani:wght@400;500;600;700&display=swap');

.tos-page {
    background: #000000;
    min-height: 100vh;
    color: #fff;
}

/* Page header */
.tos-header {
    background: #1a1a1a;
    border-bottom: 2px solid #00E5FF;
    padding: 3rem 2rem;
    text-align: center;
}

.tos-header__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.tos-header__subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: #888;
    margin: 0;
}

/* Layout: content + optional sidebar */
.tos-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

/* Main content card */
.tos-content {
    flex: 1;
    min-width: 0;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 3rem;
    line-height: 1.8;
}

.tos-content p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: #888;
    margin: 0 0 1rem 0;
}

.tos-content p:last-child {
    margin-bottom: 0;
}

.tos-content strong {
    color: #fff;
    font-weight: 600;
}

.tos-content a {
    color: #00E5FF;
    text-decoration: none;
}

.tos-content a:hover {
    text-decoration: underline;
}

/* Section number (e.g. "1. SERVICE OVERVIEW") */
.tos-section-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #00E5FF;
    margin: 2rem 0 0.75rem 0;
}

.tos-section-num:first-child {
    margin-top: 0;
}

/* Subsection number (e.g. "2.1 Order Confirmation") */
.tos-subsection-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 1.25rem 0 0.5rem 0;
}

/* Intro paragraph after main title */
.tos-intro {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: #888;
    margin-bottom: 1.5rem;
}

/* Lists */
.tos-content ul {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: #888;
    margin: 0 0 1rem 0;
    padding-left: 1.5rem;
}

.tos-content ul li {
    margin-bottom: 0.5rem;
}

/* Closing line */
.tos-signoff {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: #888;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
}

/* Sidebar TOC */
.tos-sidebar {
    width: 220px;
    flex-shrink: 0;
}

.tos-toc {
    position: sticky;
    top: 2rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.25rem;
}

.tos-toc__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #00E5FF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.75rem 0;
}

.tos-toc__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tos-toc__list li {
    margin-bottom: 0.35rem;
}

.tos-toc__list a {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9375rem;
    color: #888;
    text-decoration: none;
}

.tos-toc__list a:hover {
    color: #00E5FF;
    text-decoration: underline;
}

.tos-toc__updated {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8125rem;
    color: #666;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #333;
}

/* Mobile: stack content, hide or simplify TOC */
@media (max-width: 900px) {
    .tos-wrap {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .tos-sidebar {
        width: 100%;
        order: -1;
    }

    .tos-toc {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem 1rem;
    }

    .tos-toc__list {
        display: flex;
        flex-wrap: wrap;
        gap: 0 1rem;
    }

    .tos-toc__list li {
        margin-bottom: 0;
    }

    .tos-content {
        padding: 2rem 1.5rem;
    }

    .tos-header__title {
        font-size: 2.5rem;
    }

    .tos-header {
        padding: 2rem 1.5rem;
    }
}
