@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

:root {
    --bg-main: #000000;
    --text-main: #ffffff;
    --accent-1: #ccff00;
    /* Neon Lime */
    --accent-2: #ff3333;
    /* Bright Red */
    --accent-3: #ffffff;
    /* White */
    --border-color: rgba(255, 255, 255, 0.2);
    --font-heading: 'Unbounded', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Global Dark Mode Text Overrides */
.text-muted {
    color: #a0a0a0 !important;
    /* Lighter gray for readability on black */
}

p {
    color: #e0e0e0;
}

.lead {
    color: #cccccc !important;
}

/* Ensure form labels aren't too dark */
.form-label {
    color: #dddddd !important;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: -1px;
}

h1 {
    font-size: 4rem;
    text-transform: uppercase;
    line-height: 0.9;
}

h2 {
    font-size: 2.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

/* Layout Elements */
.container {
    max-width: 1400px;
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    color: var(--accent-3) !important;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-left: 2rem;
    position: relative;
    padding: 0 !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-1) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-1);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    padding-top: 5rem;
}

.hero-title {
    font-size: 8vw;
    line-height: 0.85;
    margin-bottom: 2rem;
    color: var(--accent-3);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.hero-title span {
    color: transparent;
    -webkit-text-stroke: 2px var(--accent-1);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.5;
    mask-image: linear-gradient(to right, transparent, black);
    -webkit-mask-image: linear-gradient(to right, transparent, black);
}

/* Marquee */
.marquee-container {
    background: var(--accent-1);
    color: black;
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
    transform: rotate(-2deg) scale(1.05);
    margin: 3rem 0;
    border: 2px solid black;
}

.marquee-content {
    display: flex;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2rem;
    margin-right: 4rem;
    text-transform: uppercase;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Cards & Grid */
.event-card {
    border: 1px solid var(--border-color);
    background: rgba(25, 25, 25, 0.5);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.event-card:hover {
    border-color: var(--accent-1);
    transform: translateY(-10px);
}

.event-date-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-1);
    color: black;
    font-family: var(--font-heading);
    padding: 0.5rem 1rem;
    font-weight: 800;
    border-radius: 4px;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-1);
    color: black;
    border: none;
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 1rem 3rem;
    text-transform: uppercase;
    font-size: 1rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: white;
    color: black;
    transform: scale(1.05);
}

.btn-outline-light {
    border: 1px solid var(--border-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    padding: 0.8rem 2rem;
    border-radius: 0;
}

.btn-outline-light:hover {
    background: var(--accent-1);
    color: black;
    border-color: var(--accent-1);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 5rem 0;
    margin-top: 5rem;
    background: #050505;
}

.footer-link {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.footer-link:hover {
    opacity: 1;
    color: var(--accent-1);
    padding-left: 10px;
}

/* Custom Utilities */
.text-accent-1 {
    color: var(--accent-1);
}

@media (min-width: 992px) {
    .ratio-lg-21x9 {
        --bs-aspect-ratio: 42.8571428571%;
        /* 9/21 * 100% */
    }
}

.text-accent-2 {
    color: var(--accent-2);
}

.border-box {
    border: 1px solid var(--border-color);
    padding: 2rem;
}

/* Form Container Fix & Styling */
main {
    padding-top: 120px;
    /* Accounts for fixed navbar */
}

.brutalist-form-container {
    background: #0a0a0a;
    border: 2px solid var(--border-color);
    padding: 3rem;
    position: relative;
    margin-bottom: 3rem;
    box-shadow: 10px 10px 0px var(--accent-1);
    /* Hard shadow */
}

.brutalist-form-container h2 {
    color: var(--accent-1);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-transform: uppercase;
}

.form-label {
    font-family: var(--font-heading);
    color: var(--text-main);
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.form-control,
.form-select {
    background-color: transparent;
    border: 2px solid var(--border-color);
    color: white;
    border-radius: 0;
    /* Brutalist - no rounded corners */
    padding: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-1);
    box-shadow: none;
    color: white;
}

.form-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Custom File Upload */
input[type="file"] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed var(--border-color);
    padding: 1rem;
    color: var(--text-main);
}