/* Nadační fond INTEWAY — shared styles */

.glass-nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.gradient-text {
    background: linear-gradient(135deg, #a82682 0%, #d733a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-pattern {
    background-color: #fdf2f9;
    background-image: radial-gradient(#f6c7e6 1px, transparent 1px);
    background-size: 24px 24px;
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(168, 38, 130, 0.15);
}

/* Active navigation state */
.nav-link.is-active {
    color: #a82682;
    font-weight: 600;
}
.nav-link.is-active::after {
    content: "";
    display: block;
    height: 2px;
    background: #a82682;
    border-radius: 2px;
    margin-top: 2px;
}

/* Definition lists used for legal / registry data */
.data-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}
@media (min-width: 640px) {
    .data-row {
        grid-template-columns: 15rem 1fr;
        gap: 1.5rem;
        align-items: baseline;
    }
}
.data-row:last-child { border-bottom: 0; }
.data-row dt {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
}
.data-row dd { color: #111827; }

.prose-body p { margin-bottom: 1.125rem; line-height: 1.75; }
.prose-body p:last-child { margin-bottom: 0; }
