/*
 *  TERMS-OF-SERVICE.CSS
 *  Styles for the Terms of Service page
*/

/* 1. HERO SECTION */
.hero-section {
    min-height: 50vh;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(180deg, rgba(37, 62, 28, .75), rgba(37, 62, 28, .35) 40%, rgba(37, 62, 28, .75));*/
}

/* 2. POLICY NAVIGATION & CONTENT */
#policy-nav.sticky-top {
    top: 100px;
}

#policy-nav .nav-link {
    padding: 0.5rem 1rem;
    border-left: 3px solid transparent;
    color: var(--color-charcoal-75);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

#policy-nav .nav-link:hover {
    color: var(--color-forest);
    background-color: var(--color-cream);
}

#policy-nav .nav-link.active {
    color: var(--color-forest);
    font-weight: 500;
    border-left-color: var(--color-garden);
    background-color: var(--color-cream);
}

.policy-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.policy-section {
    padding-top: 2rem;
    margin-top: -2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h3 {
    margin-bottom: 1rem;
    color: var(--color-dark-green);
}

.policy-content p {
    line-height: 1.8;
}