/* Body font - Lora */
body {
    font-family: 'Lora', Georgia, serif;
}

/* Custom scrollbar for webkit */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #fafaf9;
}
::-webkit-scrollbar-thumb {
    background: #e7e5e4;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #d6d3d1;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.transparent-nav {
    background: transparent;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.accordion-content {
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out, margin-top 0.3s ease;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

.accordion-content.active {
    max-height: 200px;
    opacity: 1;
    margin-top: 0.5rem;
}

.chevron {
    transition: transform 0.3s ease;
}

.chevron.active {
    transform: rotate(180deg);
}