:root {
    --color-primary: #1e3a8a;
}

body {
    font-family: 'Prompt', sans-serif;
    scroll-behavior: smooth;
}

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

.hero-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, rgba(255, 255, 255, 0.1) 100%), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

.card-hover {
    transition: all 0.3s ease;
}

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

.admin-sidebar-link.active {
    background-color: rgba(0, 0, 0, 0.05);
    border-right: 3px solid var(--color-primary);
    font-weight: bold;
}

/* Slider Config */
.slider-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    background-color: #eee;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.slide.active {
    opacity: 1;
}

.slide-caption-bar {
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    color: white;
    backdrop-filter: blur(2px);
    cursor: default;
}

.zoom-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.slide:hover .zoom-icon {
    opacity: 1;
}