:root {
    --navy: #0a1d37;
    --maroon: #800000;
    --gold: #ffcc00;
    --light-blue: #00a8e8;
}

html {
    overscroll-behavior: none;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a1d37 0%, #2d0d1e 50%, #800000 100%);
    background-attachment: fixed;
    color: #f8fafc;
    overscroll-behavior: none;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/Background_Event.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25; /* Increased opacity from 0.15 for better visibility */
    filter: brightness(0.6) contrast(1.15) saturate(0.9); /* Tuned colors to fit the dark aesthetic */
    z-index: -1;
    pointer-events: none;
}

h1,
h2,
h3,
.font-heading {
    font-family: 'Montserrat', sans-serif;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.timeline-track {
    background: linear-gradient(to bottom, var(--gold), var(--light-blue));
}

.logo-glow {
    filter: drop-shadow(0 0 20px rgba(0, 168, 232, 0.3));
}

.input-field {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
}

.file-upload-label:hover {
    border-color: var(--gold);
    background: rgba(255, 204, 0, 0.05);
}
