/* ============================================
   EVENTS PAGE - CCTU APPLIED ARTS
   ============================================ */

/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9f9f9;
    color: #1a1c1c;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ---------- VARIABLES ---------- */
:root {
    --primary: #343578;
    --primary-light: #4A4DA3;
    --secondary: #F0E73F;
    --secondary-light: #FFD93D;
    --secondary-dark: #d4c934;
    --on-primary: #ffffff;
    --surface: #f9f9f9;
    --on-surface: #1a1c1c;
    --on-surface-variant: #43474f;
    --outline: #737780;
    --outline-variant: #c3c6d1;
    --surface-container-low: #f3f3f4;
    --surface-container-high: #e8e8e8;
    --surface-container-lowest: #ffffff;
}

/* ---------- SELECTION ---------- */
::selection {
    background-color: #F0E73F;
    color: #000000;
}

::-moz-selection {
    background-color: #F0E73F;
    color: #000000;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #343578;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4A4DA3;
}

/* ---------- MATERIAL ICONS ---------- */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

/* ---------- GLASS CARD ---------- */
.nav-glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.glass-effect {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.7);
}

/* ---------- NAVIGATION ---------- */
.nav-link {
    text-decoration: none;
    color: #1a1c1c;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 9999px;
    position: relative;
}

.nav-link:hover {
    color: #343578;
    background: rgba(52, 53, 120, 0.05);
}

.nav-link.active {
    background: #343578;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(52, 53, 120, 0.3);
}

.nav-link.active:hover {
    background: #343578;
    color: #ffffff;
}

.nav-link .nav-icon {
    font-size: 18px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #ffffff;
}

.nav-link.active .nav-icon {
    opacity: 1;
    transform: scale(1);
}

.nav-underline {
    display: none !important;
}

.logo-seal {
    transition: transform 0.3s ease;
}

.logo-seal:hover {
    transform: scale(1.05) rotate(-5deg);
}

/* ---------- FOOTER ---------- */
.footer-link {
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
    color: #F0E73F;
    transform: translateY(-2px);
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.5);
}

.footer-social-link:hover {
    background: #F0E73F;
    color: #343578;
    border-color: #F0E73F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 231, 63, 0.3);
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 16px;
}

/* ---------- EDITORIAL LINE ---------- */
.editorial-line {
    position: relative;
}

.editorial-line::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #343578;
}

/* ---------- GRADIENTS ---------- */
.bg-primary-gradient {
    background: linear-gradient(135deg, #343578 0%, #4A4DA3 100%);
}

.bg-secondary-gradient {
    background: linear-gradient(135deg, #F0E73F 0%, #FFD93D 100%);
}

/* ---------- HOVER LIFT ---------- */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* ---------- STAGGER LOAD ---------- */
.stagger-load {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger-load.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .nav-link {
        padding: 6px 12px;
        font-size: 13px;
    }
    .nav-link .nav-icon {
        font-size: 16px;
    }
}

/* ---------- TYPOGRAPHY ---------- */
.font-display-lg {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.font-headline-md {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.font-headline-sm {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.font-label-md {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.font-body-lg {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.font-body-md {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.font-caption {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}