﻿header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: white;
    color: black;
}

nav-items a {
    color: black;
}

.hamburger span {
    background: black;
}

.nav-links a {
    color: black;
}

.course-complete-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-block: 48px;
    max-width: 580px;
    margin: 0 auto;
}

.course-complete-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
    align-items: center;
    padding-block: 10px;
}

.congrats {
    color: var(--primary-dark);
    font-family: "Geist Mono", monospace;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.message {
    font-size: clamp(14px, 4vw, 18px);
    font-family: "Newsreader", serif;
    color: #676F7E;
    line-height: 28px;
    text-wrap: balance;
}

.bible-quote p {
    margin-bottom: 4px;
    font-size: clamp(14px, 4vw, 18px);
    font-family: "Newsreader", serif;
    color: #676F7E;
    line-height: 28px;
    font-style: italic;
}

.bible-reference {
    display: block;
    font-size: clamp(14px, 4vw, 18px);
    font-family: "Newsreader", serif;
    color: #676F7E;
    line-height: 28px;
    font-style: normal;
}

.course-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    padding: 24px 48px;
    background: #f4f7fa;
    border-radius: 24px;
    border: 1px solid #e3e5e8;
}

    .course-stat .stat {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

.stat .value {
    font-family: "Newsreader", serif;
    color: var(--primary-dark);
    font-size: clamp(32px, 4vw, 48px);
}

.stat .title {
    font-family: "Newsreader", serif;
    color: #676F7E;
    font-size: 14px;
}

/* Bottom Navigation */
.lesson-footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.btn {
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #676F7E;
    text-transform: capitalize;
    border: 1px solid #676F7E;
}

.btn-home {
    color: black;
    border: none;
}

.btn-review {
    color: black;
}

.btn-dashboard {
    color: white;
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn:hover {
    background: black;
    color: white;
    transform: translateY(-2px);
    border-color: black;
}

    .btn:hover svg {
        color: white;
    }















/* Tablet Styles */
@media (min-width: 640px) {
    .course-complete-wrapper {
        gap: 56px;
        padding-block: 72px;
    }
}
