html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    background-color: #0e0e0e;
    color: #f0f0f0;
}
header {
    background: #1f1f1f;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header img {
    height: 60px;
}
nav a {
    color: #ffcc00;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: bold;
}
.hero {
    position: relative;
    height: calc(100vh - 80px); /* fills remaining screen below header */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 2rem;
}

.background-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* dark overlay */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    color: #ccc;
}

section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: auto;
}
section h2 {
    color: #ffcc00;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 0.5rem;
}
.about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
}

.about-text {
    flex: 1 1 60%;
}

.about-image {
    flex: 1 1 35%;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Sponsors Section Styling */
.sponsors-section {
    background-color: #0e0e0e; /* Your dark background */
    padding: 3rem 1rem;
    font-family: 'Orbitron', sans-serif;
    color: #ffcc00; /* Yellow text */
    text-align: center;
}

.sponsors-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffcc00;
}

/* Slider container */
.slider {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    /* border: 1px solid rgba(255, 204, 0, 0.2); */
    /* background: rgba(255, 204, 0, 0.05); subtle yellow tint */
    /* box-shadow: 0 0 15px rgba(255, 204, 0, 0.2); */
}

/* Slider items container with flex */
.slider-items {
    display: flex;
    gap: 2rem;
    animation: scrollSponsors 20s linear infinite;
    align-items: center;
    padding: 1rem 0;
}

/* Scroll animation */
@keyframes scrollSponsors {
    0% {
    transform: translateX(0%);
    }
    100% {
    transform: translateX(-50%);
    }
}

/* Sponsor logos */
.slider-items img {
    height: 80px;
    filter: brightness(1);
    transition: filter 0.3s ease;
    user-select: none;
    pointer-events: none;
}

/* On hover, slightly brighten */
.slider-items img:hover {
    filter: brightness(1.3);
}

/* Sponsor paragraph styling */
.sponsors-section p {
    margin-top: 1rem;
    font-size: 1rem;
    color: #ffcc00;
}

.sponsors-section a {
    color: #ffcc00;
    text-decoration: underline;
}


.footer {
    background: #1f1f1f;
    color: #aaa;
    text-align: center;
    padding: 2rem;
}
a.button {
    display: inline-block;
    background: #ffcc00;
    color: #000;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}