html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
  font-family: 'Courier New', monospace;
  background-color: #000;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

button {
  background-color: #222;
  color: magenta;
  border: 1px solid magenta;
  padding: 8px 16px;
  margin-right: 10px;
  cursor: pointer;
  font-family: "Pixelify Sans", sans-serif;
}
button:hover {
  background-color: magenta;
  color: white;
}

.floor-button {
  background-color: #222;
  color: magenta;
  border: 1px solid magenta;
  cursor: pointer;
}

.floor-button.active {
  background-color: magenta;
  color: white;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, transparent, rgba(0, 0, 0, 0.5));
  z-index: 10;
  transition:background-color 250ms ease;
}


header{
  display:flex;
  justify-content:space-between;
  padding:0 10px;
} 



header img{
  max-height:120px;
  animation: fadeIn 3s ease-in-out;
}

nav {
  display: flex;
  justify-content: flex-end; /* Keeps menu on right */
  align-items: center; /* Vertically center items */
  height: 70px; /* Set a height for the header */
}

nav a {
  font-size:18px;
  font-weight:500;
  font-family: "Pixelify Sans", sans-serif;
  color: magenta;
  text-decoration: none;
  font-weight: bold;
  margin-right: 1rem; /* Add spacing between items */
}

nav a:hover {
  color: #fdf200;
}

.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero h1 {
  color: white;
  font-size: 4rem;
  text-align: center;
  z-index: 2;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  /* Apply filters for glitchy effect */
  filter: url(noise.svg) brightness(0.8) contrast(1.1);
}

p {
    text-align: justify;
    max-width: 700px;
}

section {
  height: 100%;
  padding: 2rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

section h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

h2{
	font-family: "Pixelify Sans", sans-serif;
	color:fuchsia;
}

h3{
	color:#00d9ff;
}

.noise-section{
	background: rgb(7 0 33 / 87%) url(dzzC1.gif) center / 120px auto repeat;
    background-blend-mode: soft-light;
}


@counter-style custom-ordered {
  system: fixed;
  symbols: 'Α' 'Β' 'Γ' 'Δ' 'Ε' 'Ζ' 'Η' 'Θ' 'Ι' 'Κ' 'Λ' 'Μ' 'Ν' 'Ξ' 'Ο' 'Π' 'Ρ' 'Σ' 'Τ' 'Υ' 'Φ' 'Χ' 'Ψ' 'Ω';
  suffix: '. ';
}



#f-list{list-style-type:  custom-ordered;}


:root {
  --color: hsl(0,100%,50%);
  --color2: hsl(180,100%,50%);
}

#chromatic{
	mix-blend-mode: screen;
	filter: blur(0.5px);
}
#chromatic:after{
		content: attr(textcontent);
		position: absolute;
		left:3px;
		top:0;
		color: var(--color2);
		mix-blend-mode: screen;
		width:fit-content;
}
	
#chromatic:before{
		content: attr(textcontent);
		position: absolute;
		left:-3px;
		top:0;
		color: var(--color);
		mix-blend-mode: screen;
		width:fit-content;
}

.facilities img {
  width: fit-content;
  height: fit-content;
  max-height: 100%;
  max-width:100%;
}



#sponsors {
    background-color: none;
    padding: 50px 0;
    text-align: center;
	
}

#sponsors h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.sponsor-slider {
    position: relative;
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
    height:200px
}

.sponsor-slide {
    display: none;
    position: absolute;
    width: 100%;
    height: auto;
    transition: opacity 1s ease-in-out;
}

.sponsor-slide img {	 
    width: fit-content;
    height: fit-content;
    max-height: 100%;
    max-width:100%;
}

.sponsor-slide.active {
    display: block;
    opacity: 1;

}

#organizedby{
display:flex; justify-content:center; gap:40px; padding:20px;}
/* #organizedby a:last-child{padding-right:60px; padding-left:16px;} */

.dark-footer{
  width:100%;
  background:linear-gradient(to top, rgba(0,0,0,0.3),transparent);
}

#info-footer{
  color:white;
  padding:20px;
}

#info-footer p{
  margin:5px 0 0 10px;
  font-size:12px;
  opacity:0.7;
}


@media(max-width:1200px){
  .sticky{
    background:black;	
  }	
}



@media(max-width:700px){
header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}
nav{
	height: inherit;
 }
 
 .hero h1 {
  font-size: 3rem;
}
 
 #organizedby{display:block; justify-content:center; gap:40px; padding:20px;}
 #organizedby a{display: block; text-align: center; padding:10px;}
}