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

html {
	scroll-behavior: smooth;
	scroll-snap-type: y proximity;
}


body {
	font-family: "IBM Plex Sans", sans-serif;
	color: #322759;
	background: #fff;
	line-height: 1.6;
	scroll-snap-type: y proximity;
}


nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 3rem;
	position: fixed; 
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	z-index: 1000;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


.logo {
	font-family: "Bricolage Grotesque", sans-serif;
	font-weight: 700;
	font-size: 1.8rem;
	color: #F26D6D;
}

.nav-links {
	display: flex;
	gap: 2rem;
}

.nav-links a {
	text-decoration: none;
	color: #322759;
	font-family: "Public Sans", sans-serif;
	font-weight: 600;
	letter-spacing: 1px;
	padding: 0.3rem 0.5rem;
	transition: all 0.3s;
	position: relative;
}

.nav-links a::after {
	content: "";
	display: block;
	height: 2px;
	width: 0%;
	background: #F26D6D;
	transition: width 0.3s;
	position: absolute;
	bottom: -4px;
	left: 0;
}

.nav-links a:hover::after {
	width: 100%;
}

.nav-links a:hover {
	color: #F26D6D;
}


.menu-toggle {
	display: none;
	font-size: 2rem;
	cursor: pointer;
}




#cover {
	min-height: 100vh;
	background: url('images/bg1.jpg') center/cover no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #F26D6D;
	padding: 0 2rem;
	scroll-snap-align: start;
}


#cover h1 {
	font-family: "Bricolage Grotesque", sans-serif;
	font-size: 4rem;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 1s forwards;
	animation-delay: 0.3s;
}


#cover p {
	font-family: "Public Sans", sans-serif;
	font-size: 1.5rem;
	color: #117CD9;
	margin-bottom: 2rem;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 1s forwards;
	animation-delay: 0.6s;
}

.cta-btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	text-transform: uppercase;
	background: #117CD9;
	color: #fff;
	border-radius: 8px;
	text-decoration: none;
	font-size: 1rem;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.cta-btn:hover {
	background: #A65369;
	transform: scale(1.1);
	font-size: 1.05rem;
	letter-spacing: 2px;
}


@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



section {
	min-height: 100vh;
	padding: 0 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	scroll-snap-align: start;
}


h2 {
	font-family: "Public Sans", sans-serif;
	font-size: 2.5rem;
	color: #322759;
	margin-bottom: 2rem;
}


section p {
	max-width: 700px;
	margin: 0 auto 2rem auto;
	font-size: 1.2rem;
}




.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	max-width: 900px;
	margin: 0 auto;
}

.gallery-grid img {
	width: 100%;
	height: 250px;
	object-fit: cover; 
	border-radius: 10px;
	transition: transform 0.3s, box-shadow 0.3s;
}


.gallery-grid img:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}



#schedule {
	background: url('images/bg2.jpg') center/cover no-repeat;
	background-size: cover;
	background-position: center;
	color: #fff;
	position: relative;
	padding: 6rem 2rem;
}


#schedule ul {
  max-width: 600px;
  margin: 2rem auto 0 auto;
  padding: 2rem;
  background: rgba(90, 0, 80, 0.6);
  border-radius: 10px;
  list-style: none;
}

#schedule li {
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	font-size: 1.2rem;
	color: #fff;
	transition: transform 0.3s, color 0.3s;
}

#schedule li:hover {
	transform: translateX(10px);
	color: #ffb6c1;
}

#schedule li:last-child {
	border-bottom: none;
}



#tickets .cta-btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	margin: 0 auto;
	text-align: center;
	font-size: 1.2rem;
	border-radius: 8px;
	background: #117CD9;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s;
}

#tickets .cta-btn:hover {
	background: #A65369;
	transform: scale(1.05);
}

footer {
	padding: 4rem 2rem;
	background: url('images/bg1.jpg') center/cover no-repeat;
	color: #fff;
	text-align: center;
	font-family: "Public Sans", sans-serif;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
	scroll-snap-align: start
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 60px;
		right: 2rem;
		background: rgba(255,255,255,0.95);
		padding: 1rem 2rem;
		border-radius: 8px;
	}
	
	.nav-links.active {
		display: flex;
	}

	.menu-toggle {
		display: block;
	}

	#cover h1 {
		font-size: 3rem;
	}
	
	#cover p {
		font-size: 1.2rem;
	}
	
	#gallery {
		scroll-snap-align: none;
		margin-bottom: 30px;
	}
	
	.gallery-grid {
		grid-template-columns: 1fr;
	}
	
	.gallery-grid img {
		height: auto;
		max-height: 200px;
	}
}