body {
    background-color: #f6f5f1;
    font-family: 'Georgia', serif;
    color: #333;
}

.quote-box {
    background: #fffdf9;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.07);
    height: 100%;
}

@media (max-width: 767px) {
    .quote-text {
        font-size: 1.5rem;
    }
}

.quote-label {
    font-size: 1rem;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.quote-text {
    font-size: 1.75rem;
    font-style: italic;
    line-height: 1.6;
    color: #444;
}


.section-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #555;
}

.lead {
    color: #666;
}

.footer {
    font-size: 0.9rem;
    color: #999;
}

.btn-quote {
    background-color: #6c757d;
    border: none;
}

.btn-quote:hover {
    background-color: #5a6268;
}

header {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.nav-spirit {
    background: #fffdf9;
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-family: 'Georgia', serif;
    font-size: 1rem;
    border: 1px solid #eee;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;

    margin: 0 auto;
    max-width: 100%;
    box-sizing: border-box;
}

.nav-spirit-link {
    color: #5a5a5a;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;

    white-space: nowrap;
    font-size: 0.95rem;
    flex: 0 1 auto;
}

.nav-spirit-link:hover {
    background-color: #f0f4ee;
    color: #2c3e50;
    text-decoration: none;
}

.nav-spirit-link.active {
    background-color: #e8f0eb;
    color: #2f4f4f;
    font-weight: bold;
}


.btn-copy-quote {
    background-color: #fffdf9;
    color: #444;
    border: 1px solid #ddd;
    border-radius: 2rem;
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.btn-copy-quote:hover {
    background-color: #f0f5f2;
    color: #2c3e50;
    border-color: #ccc;
    text-decoration: none;
    cursor: pointer;
}


.btn-reflections {
    background-color: #e8f0eb;
    color: #2f4f4f;
    border: none;
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.btn-reflections:hover {
    background-color: #d0e4da;
    color: #1e3932;
    text-decoration: none;
}