/* static/css/styles.css */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

body {
    background-color: #1a1a1a;
    color: #ffffff;
}

@keyframes border-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 156, 249, 0.7);
    }
    100% {
        box-shadow: 0 0 20px 10px rgba(79, 156, 249, 0);
    }
}

.hover-glow:hover {
    animation: border-glow 1.5s infinite;
}

.hover\:bg-gray-750:hover {
    background-color: #2d3748;
}

@keyframes fly-up {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

@keyframes burn {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

.scroll-progress {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: conic-gradient(
        #4f9cf9 var(--progress),
        transparent var(--progress)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.scroll-progress.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-progress i {
    color: white;
    font-size: 24px;
}

.clip-triangle {
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.hover-glow:hover {
    box-shadow: 0 0 25px -5px rgba(59, 130, 246, 0.3);
}

@keyframes slide-in {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-slide-in {
    animation: slide-in 0.6s ease-out forwards;
}

.hover\:scale-101:hover {
    transform: scale(1.01);
}

/* Cookie Banner Animation */
#cookie-banner {
    transition: opacity 0.3s ease;
}

/* Service content cards */
.service-section-card {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 20px 40px -30px rgba(0, 0, 0, 0.6);
}

.service-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.75rem;
}

.service-section-body {
    color: #e5e7eb;
}

.service-section-body p {
    margin-bottom: 0.75rem;
    line-height: 1.75;
}

.service-section-body ul,
.service-section-body ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-section-body li {
    margin-bottom: 0.75rem;
    line-height: 1.75;
}

.service-section-body strong {
    color: #f9fafb;
}

.service-section-body h3 {
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #93c5fd;
}

.service-section-body h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #bfdbfe;
}

.service-section-body blockquote {
    border-left: 3px solid #3b82f6;
    padding-left: 0.75rem;
    margin: 1rem 0;
    color: #cbd5f5;
}

.service-section-body hr {
    border: 0;
    border-top: 1px solid #334155;
    margin: 1.25rem 0;
}

.service-section-body a {
    color: #60a5fa;
    text-decoration: underline;
}

.service-section-body table {
    max-width: 68ch;
}

.faq-hidden {
    display: none;
}

/* Blog list summary */
.blog-summary,
.blog-summary p {
    color: #e5e7eb;
}

.blog-summary p {
    margin: 0;
}
