:root {
    --main-color-bg: #F7F5F2;
    --main-color-lt: #303030;

    --lemon-color: #C6F106;
    --gray-color: #ECE9E4;
    --color-loader: #f3f3f3;
    --blue-gray: #e2e8f0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--main-color-bg);
    color: var(--main-color-lt);
}

h1,
h2,
h3, 
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.accent-bg {
    background-color: var(--lemon-color);
}

.accent-text {
    color: var(--lemon-color);
}

.section.active {
    display: block !important;
}

.nav-link.active {
    color: var(--lemon-color); 
    font-weight: 600;
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.25rem;
}

.transition-all {
    transition: all 0.3s ease-in-out;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.faq-item[open] summary~* {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loader {
    border: 4px solid var(--color-loader);
    border-top: 4px solid var(--lemon-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.gemini-content {
    white-space: pre-wrap;
    background: var(--gray-color);
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    border-left: 4px solid var(--lemon-color);
    line-height: 1.6;
}

.community-subsection {
    border-top: 1px solid var(--blue-gray);
    padding-top: 4rem;
    margin-top: 4rem;
}

.sponsor-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-color);
    display: flex;
    flex-direction: column;
}

.sponsor-card ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.sponsor-card ul li svg {
    flex-shrink: 0;
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.75rem;
    color: var(--lemon-color);
    margin-top: 4px;
}

.blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.store-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.store-section:not(:first-child) {
    border-top: 1px solid var(--blue-gray);
}