/* --- Base Styles --- */
body {
    font-family: 'Zalando Sans', sans-serif;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Forum', serif;
}

/* --- Hero Pattern Background --- */
.hero-pattern {
    background-color: #0B192C;
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
}

/* --- Card Hover Effect --- */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
                0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
