/* Custom Styles */

.btn-brutal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: #000000;
    background-color: #FFFFFF;
    border: 2px solid #000000;
    box-shadow: 4px 4px 0px 0px #000000;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.btn-brutal:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px 0px #000000;
}

.btn-brutal:active {
    transform: translate(4px, 4px);
    box-shadow: none;
}

.btn-brutal-primary {
    background-color: #FAFF00;
}

.card-brutal {
    background-color: #FFFFFF;
    border: 2px solid #000000;
    box-shadow: 4px 4px 0px 0px #000000;
    padding: 1.5rem;
}

/* Animation Classes */
.animate-on-scroll {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #000000;
    color: #FFFFFF;
    border-top: 4px solid #FAFF00;
    box-shadow: 0 -8px 0px 0px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.4s ease-out;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .cookie-banner-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text a {
    color: #FAFF00;
    font-weight: 700;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner-buttons .btn-brutal {
    white-space: nowrap;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(100%);
    }
}

/* FAQ Accordion Styles */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: #f4f4f5;
}

.faq-question {
    cursor: pointer;
    transition: all 0.2s ease;
    background: none;
    border: none;
    padding: 0;
}

.faq-question:hover h3 {
    color: #000000;
}

.faq-question svg {
    transition: transform 0.3s ease;
}

.faq-answer {
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-answer.hidden {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}