:root {
    --bd-primary: #1a1a2e;
    --bd-accent: #f0a500;
    --bd-light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #333;
}

.hero-section {
    min-height: 70vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-section .container {
    z-index: 1;
}

.design-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.design-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
}

.design-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.design-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.design-card:hover .design-card-image img {
    transform: scale(1.06);
}

.design-card-link {
    text-decoration: none;
    color: inherit;
}

.media-badge,
.featured-badge {
    position: absolute;
    z-index: 2;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

.media-badge {
    bottom: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
}

.featured-badge {
    top: 0.5rem;
    left: 0.5rem;
    background: var(--bd-accent);
    color: #000;
    font-weight: 600;
}

.category-card img {
    aspect-ratio: 16/10;
    object-fit: cover;
}

.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.page-content h2 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.filter-panel .card-body {
    padding: 1.25rem;
}

.site-footer a:hover {
    color: var(--bd-accent) !important;
}
