* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Lexend';
	font-style: normal;
	text-decoration: none;
}

/*-------------------------------------------------------*/
/* DESKTOP VIEW */

@media screen and (min-width: 915px) {


/*------------------------------------------------------*/

/* Transitions */

@keyframes fadeInUp {
	0% {
	  transform: translateY(100%);
	  opacity: 0;
	}
	100% {
	  transform: translateY(0%);
	  opacity: 1;
	}
}

@keyframes fadeInDown {
	0% {
		transform: translateY(-100%);
		opacity: 0;
	  }
	  100% {
		transform: translateY(0%);
		opacity: 1;
	  }
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/* Logo */

.top-logo {
	width: 100%;
	height: 70vw;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 3.5vw;
}
.top-gradient {
	width: 100%;
	height: auto;
	position: absolute;
	animation: 3s fadeIn;
}
.logo-background {
	width: 100%;
	height: max-content;
	position: absolute;
	top: 10.7vw;
	animation: 3s fadeIn;
}
.logo-icon {
	width: 33vw;
	height: 30vw;
	position: absolute;
	animation: 1.5s fadeInUp;
}

/*------------------------*/
/* Headliner Info */

.container-headline {
	position: relative;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	height: auto;
	display: flex;
	overflow: hidden;
}
.background-img {
	width: auto;
	height: auto;
}
.headline-info {
	display: flex;
	position: absolute;
	top: 6.5vh;
	right: 11vw;
	flex-direction: column;
	text-align: center;
	width: 38vw;
	min-width: fit-content;
	gap: 30px;
}
.head-main-info {
	padding: 0vw 5vw;
}
.headline-event {
	width: fit-content;
	font-weight: 700;
	font-size: 63px;
	line-height: 80px;
}
.event-sponsors {
	font-weight: 700;
	font-size: 40px;
	line-height: 50px;
}
.head-sub-info {
	font-weight: 700;
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 20px;
	padding: 0vw 6vw;
}
.location-container {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	top: 30px;
	
	font-weight: 400;
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 2vh;
	gap: 1.5vw;
}
.tickets-button {
	width: 455px;
	max-width: 30vw;
	height: 7vh;
	max-height: 70px;
	min-height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	background-color: #5D5D5D;
	color: white;

	font-size: 2vw;
	font-weight: 600;
	line-height: 30px;
}
.tickets-button:hover {
	background-color: #878787;
	cursor: pointer;
}

/*-------------------------------------------------------*/
/* Artists */

.container-artists {
	position: relative;
	background-color: #B2B3B3;
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	color: white;
	justify-content: center;
	
}

.artists-title {
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
	padding-top: 5vw;
	padding-bottom: 5vw;
	font-size: 4vw;
	font-weight: 700;
	text-align: center;
}

.artists-icons {
    display: flex; /* Enables Flexbox */
    flex-wrap: wrap; /* Ensures wrapping if screen is too small */
    justify-content: center; /* Centers items evenly */
    gap: 20px; /* Adds spacing between items */
    width: 80%;
    max-width: 1200px; /* Adjust width based on layout */
    margin: auto; /* Centers the container */
}

.artists-post {
	flex:1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
	width: 100%;
	padding-bottom: 10vw;

}


.black-outline {
    position: absolute;
    width: 90%;
    z-index: 1;
}

.artist-post-img {
    position: relative;
    width: 73%; /* Adjust this percentage to fit inside the outline */
    aspect-ratio: 1 / 1;
    z-index: 2; /* Ensure it sits below the outline */
    display: block; /* Ensure it is treated as a block element */
    margin: 8.5% auto 0px auto; /* Center it horizontally */
	overflow: hidden;
	border-radius: 5px; /* Rounds the corners */
	object-fit: cover;
}

.artist-label {
	position: relative;
	width: 70%; /* Adjust width as needed */
	max-width: 550px; /* Prevents it from being too wide */
	background: black; /* Gradient from left to right */
	color: white; /* White text */
	text-align: center; /* Centers the text */
	font-size: clamp(18px,2vw,24px); /* Adjust text size */
	font-weight: 700; /* Makes the text stand out */
	margin: -40px auto 0 auto; /* Centers the box horizontally */
	z-index: 3;
}

.artist-social-icons {
	position: relative;
	display: flex;
	justify-content: center;
	z-index: 2;
	width: auto;
	height: auto;
	margin: 7% auto;
	gap: 3px;
}

/*------------------------*/
/* Kapture Experience */
.container-kap-exp {
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
	height: 272px;
	font-size: 4vw;
	font-weight: 700;
	line-height: 75px;
	text-align: center;
}
.exp-main-content {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 4.5vw;
}
.exp-main-content img {
	min-width: 11.1vw;
}

}

/*-------------------------------------------------------*/
/* MOBILE VIEW */

@media screen and (max-width: 914px) {

/*------------------------------------------------------*/

/* Transitions */

@keyframes fadeInUp {
	0% {
	  transform: translateY(100%);
	  opacity: 0;
	}
	100% {
	  transform: translateY(0%);
	  opacity: 1;
	}
}

@keyframes fadeInDown {
	0% {
		transform: translateY(-100%);
		opacity: 0;
	  }
	  100% {
		transform: translateY(0%);
		opacity: 1;
	  }
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/* Logo */

.top-logo {
	width: 100%;
	height: 70vw;
	position: relative;
	align-items: center;
	justify-content: center;
	display: flex;
	padding-top: 4vw;
}
.top-gradient {
	width: 100%;
	height: auto;
	position: absolute;
	animation: 3s fadeIn;
}
.logo-background {
	width: 100%;
	height: auto;
	position: absolute;
	animation: 3s fadeIn;
}
.logo-icon {
	width: 33vw;
	height: 30vw;
	position: absolute;
	animation: 1.5s fadeInUp;
}	
	
/*------------------------*/
/* Headliner Info */

.container-headline {
	position: relative;
        width: 100%;
        height: 100%;
        max-height: fit-content;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
}
.container-headline > .background-img {
	
}
.background-img {
	width: auto;
	height: 100vw;
	position: relative;
	left: 0px;
}
.headline-info {
	display: flex;
	flex-direction: column;
	text-align: center;
	position: absolute;
	gap: 1vh;
}
.headline-event {
	font-weight: 700;
	font-size: 9vw;
	line-height: 100%;
}
.event-sponsors {
	font-weight: 700;
	font-size: 6.2vw;
	line-height: 65px;
}
.head-sub-info {
	font-weight: 700;
	font-size: 5vw;
	line-height: 6vw;
	margin-bottom: 20px;
}
.location-container {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	top: 15px;
	
	font-weight: 400;
	font-size: 4vw;
	line-height: 5vw;
	margin-bottom: 30px;
}
.concert-location {
	position: relative;
	top: 10px;
}
.tickets-button {
	width: 73vw;
	height: 72px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	background-color: #5D5D5D;
	color: white;

	font-size: 135%;
	font-weight: 600;
	line-height: 45px;
}
.tickets-button:hover {
	background-color: #878787;
	cursor: pointer;
}

/*-------------------------------------------------------*/
/* Artists */

.container-artists {
	position: relative;
	background-color: #B2B3B3;
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	color: white;
	justify-content: center;
	
}

.artists-title {
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
	padding-top: 5vw;
	padding-bottom: 5vw;
	font-size: 11vw;
	font-weight: 700;
	text-align: center;
}

.artists-icons {
    display: flex; /* Enables Flexbox */
	flex-direction: column;
    justify-content: center; /* Centers items evenly */
    gap: 20px; /* Adds spacing between items */
    width: 42%;
    max-width: 1200px; /* Adjust width based on layout */
    margin: auto; /* Centers the container */
}

.artists-post {
	flex:1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
	width: 100%;
	padding-bottom: 10vw;

}


.black-outline {
    position: absolute;
    width: 90%;
    z-index: 1;
}

.artist-post-img {
    position: relative;
    width: 73%; /* Adjust this percentage to fit inside the outline */
    aspect-ratio: 1 / 1;
    z-index: 2; /* Ensure it sits below the outline */
    display: block; /* Ensure it is treated as a block element */
    margin: 8.5% auto 0px auto; /* Center it horizontally */
	overflow: hidden;
	border-radius: 5px; /* Rounds the corners */
	object-fit: cover;
}


.artist-label {
	position: relative;
	width: 70%; /* Adjust width as needed */
	max-width: 550px; /* Prevents it from being too wide */
	background: black; /* Gradient from left to right */
	color: white; /* White text */
	text-align: center; /* Centers the text */
	font-size: clamp(14px, 2vw, 18px); /* Adjust text size */
	font-weight: 700; /* Makes the text stand out */
	margin: -40px auto 0 auto; /* Centers the box horizontally */
	z-index: 3;
}

.artist-social-icons {
	position: relative;
	display: flex;
	justify-content: center;
	z-index: 2;
	width: 50%;
	height: auto;
	margin: 30px;
	gap: 3px;
}

.artist-social-icons img {
	width: 6vw; /* Shrinks between 20px and 40px */
	height: auto;
}

/*------------------------*/
/* Kapture Experience */
.container-kap-exp {
        position: relative;
        width: 100%;
        height: auto;
        font-size: 5vw;
        font-weight: 700;
        line-height: 75px;
        text-align: center;
	padding: 8%;
}
.exp-main-content {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 4.5vw;
}
.exp-main-content img {
        width: 11.1vw;
}


}
