:root {
    --brand-primary: #1f2a7d;
    --brand-accent: #522e91;
    --brand-font: 'Inter', system-ui, sans-serif;
    --heading-font: 'Outfit', system-ui, sans-serif;
}

body {
    font-family: var(--brand-font);
    letter-spacing: -0.01em;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .section-title {
    font-family: var(--heading-font);
    letter-spacing: -0.02em;
}

/* Gradients */
.bg-primary {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent)) !important;
}

/* Glassmorphic Hero Container */
.hero {
    background: linear-gradient(145deg, rgba(31, 42, 125, 0.04) 0%, rgba(82, 46, 145, 0.08) 100%);
    border: 1px solid rgba(82, 46, 145, 0.15);
    box-shadow: 0 12px 32px rgba(31, 42, 125, 0.08);
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

/* Buttons Micro-Animations */
.btn {
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(82, 46, 145, 0.25);
}

.btn-light.border:hover {
    border-color: var(--brand-accent) !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.section-title {
    color: var(--brand-primary);
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--brand-accent);
    border-radius: 2px;
}

#calendar {
    min-height: 500px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.card-kicker {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--brand-accent);
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* Content Tiles Glassmorphism */
.border.rounded-3 {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    border: 1px solid rgba(82, 46, 145, 0.1) !important;
}

.border.rounded-3:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(31, 42, 125, 0.1);
    background: rgba(255, 255, 255, 0.8);
}

/* Nav Links Micro-Animations */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    transition: width 0.3s ease;
    opacity: 0.8;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Modern Footer */
.site-footer {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(82, 46, 145, 0.1);
    color: rgba(31, 42, 125, 0.8);
    position: relative;
    overflow: hidden;
}

.site-footer h5 {
    color: var(--brand-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-link {
    color: rgba(31, 42, 125, 0.65);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.2rem 0;
}

.footer-link:hover {
    color: var(--brand-accent);
    transform: translateX(4px);
}

.footer-contact-item {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    background: rgba(82, 46, 145, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-accent);
    font-size: 0.9rem;
}

.footer-bottom {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(82, 46, 145, 0.05);
}

.theme-switcher-link {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.theme-switcher-link:hover, .theme-switcher-link.active {
    background: rgba(82, 46, 145, 0.1);
    border-color: rgba(82, 46, 145, 0.2);
    color: var(--brand-accent) !important;
}
