@import url('https://fonts.googleapis.com/css2?family=Arvo:wght@700&family=Lexend:wght@100..900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	/* background-image: url("https://i.pinimg.com/originals/f6/15/74/f615740d8ec75ad36e322ecd9da8b129.gif"); */
	background: radial-gradient(circle, #0a0a0a 0%, #000000 72%);
	background-attachment:fixed;
    background-repeat: no-repeat;
    background-size: cover;
	overflow-x: hidden;
	height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
	min-height: 100%;
	margin: 0;
	line-height: 1.6;
	padding-top: 0;
	/* padding-bottom: 120px; */
	font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
	justify-content: center;
    align-items: center;
    width: 100%;
}

body a:link, a:active, a:hover, a:visited {
	text-decoration: none;
}

.page-banner {
	padding: 2em 0;
	width: calc(100% - 200px);
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

.page-banner img {
	width: 100%;
	height: auto;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
}

.page-subtitle-divider {
	color: #fff;
	font-size: 42px;
	padding-bottom: 1%;
	text-align: center;
	text-transform: uppercase;
	font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.hr-divider {
	color: #fff;
}

#events-grid {
	padding-bottom: 225px;
}

#scroll-down a {
	color: #fff;
	text-decoration: none;
}

#scroll-down {
	color: #fff;
	text-align: center;
	margin: 35px;
	line-height: 1;
	text-decoration: none;
  	text-transform: uppercase;
	animation: bounce 1s infinite;
	-webkit-animation: bounce 1s infinite;
}

@keyframes bounce {
	0% {
	  transform: translateY(0);
	}
	50% {
	  transform: translateY(-10px);
	}
	100% {
	  transform: translateY(0);
	}
}

#scroll-down h4 {
	margin-top: 40px;
	font-size: 22px;
}

#scroll-down i {
	font-size: 40px;
}

@media screen and (max-width: 900px){ 
	#bottom-image {
		display: none;
	  }

	.event-title-divider{
		font-size: 14px;
		margin: 35px;
	}
}

.error-box {
	width: 80%;
	position: absolute;
	font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
	text-align: center;
	top: 50em;
	margin: 0 auto;
	left: 0;
	right: 0;
	line-height: 1;
}

.error-box h2 {
	font-size: 7em;
	color: #ffffff;
	letter-spacing: 0.4em;
	margin-top: 2em;
	margin-bottom: 0;
}

.error-box h3 {
	font-size: 4em;
	font-weight: 500;
	color: #ffffff;
	margin-bottom: 20px;
	letter-spacing: 0.2em;
}

.error-box h4 {
	font-size: 2em;
	font-weight: 500;
	color: #ffffff;
	letter-spacing: 0.2em;
}

/* Responsive code start */
@media screen and (max-width: 900px) {
	.page-banner {
		width: 100%;
		padding: 1em;
	}

	.page-subtitle-divider {
		font-size: 26px;
	}

	.error-box {
		font-size: 12px;
		top: 3em;
	}
}

/* Responsive Typography */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 2rem); }
p { font-size: clamp(1rem, 2vw, 1.2rem); }

/* Container Styles */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive Grid System */
.grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 1rem;
    }
}

@media screen and (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .container {
        padding: 0 0.5rem;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    body {
        padding-top: 60px;
    }

    .container {
        padding: 0 0.25rem;
    }
}