@import url('common.css');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #05040e;
	color: white;
	font-family: 'Roxbrough CF', serif;
}

/* --- 1. HERO SECTION (Aligned like Internship) --- */
.hero-back {
	position: relative;
	overflow: hidden;
	/*min-height: 60vh;*/

	/* MUST BE FLEX TO PUSH TEXT DOWN */
	display: flex;
	flex-direction: column;

	background: #05040e;
}

.hero-back::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	/* Put your image here */
	background: url('../images/sky.png');
	background-size: cover;
	background-position: center;

	/* The animation */
	animation: slowZoom 20s ease-in-out infinite;
	z-index: 1;
	/* Sits behind the content */
}

/* This creates the dark vignette over the moving image */
.hero-back::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom,
			rgba(5, 4, 14, 0.5) 0%,
			transparent 50%,
			rgba(5, 4, 14, 1) 100%);
	z-index: 2;
	/* Sits between the image and the text */
}

header,
.navigation-container {
	position: relative;
	z-index: 3;
}

header {
	/* This 'auto' margin only works if the parent is flex */
	margin-top: 11rem;

	margin-inline: 10%;
	padding-bottom: 60px;
	/* Space from the bottom edge */
	text-align: left;
	position: relative;
	z-index: 3;
}

header h1 {
	font-size: 5rem;
	font-weight: 800;
	text-transform: uppercase;
	background: linear-gradient(to right, #fff, #A9A3ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1;
	margin-bottom: 10px;
}

header p {
	font-family: 'Latin Modern', sans-serif;
	font-size: 1.1rem;
	color: #A9A3ff;
	max-width: 800px;
	margin-top: 1.5rem;
	/* Ensure no top margin is fighting the auto-push */
}

/* --- 2. BODDERY AREA (Solid Left-to-Right) --- */
.boddery {
	padding-inline: 10%;
	padding-top: 10px;
	padding-bottom: 100px;
	background: linear-gradient(to right, #05040e 0%, #1a1033 100%);
	border-top: 1px solid rgba(169, 163, 255, 0.1);
}


main > h2 {
	font-size: 2rem;
	letter-spacing: 3px;
	color: #A9A3ff;
	margin: 40px 0 30px;
	border-bottom: 1px solid rgba(169, 163, 255, 0.3);
	padding-bottom: 10px;
}
.event-details>p>strong,.event-details>h4>strong, .event-details>h3 {
	color: #A9A3ff;
	font-weight: bolder;
}

.schedule-table {
	width: 100%;
	border-collapse: collapse;
	background: transparent;
	color: white;
	border: 2px solid #E0E0E0;
	border-radius: 8px;
	overflow: hidden;
}

.schedule-table th,
.schedule-table td {
	padding: 14px 18px;
	text-align: center;
	border: 1px solid #A9A3FF;
}

.schedule-table th {
	background: linear-gradient(to right, #05040e 0%, #1a1033 100%);
	color: #A9A3ff;
	font-weight: bolder;
	text-transform: uppercase;
}

.schedule-table tr:nth-child(even) {
	background: rgb(135, 126, 255);
}

.schedule-table tr:hover {
	background: rgba(169, 163, 255);
}

.schedule-table td[colspan="2"] {
	background: linear-gradient(to right, #05040e 0%, #1a1033 100%);
	color: #A9A3ff;
	font-weight: bolder;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.reg-butn{
	width: 100%;
	display:flex;
	justify-content:space-between;
	margin-top: 50px;
	border-bottom: 1px solid rgba(169, 163, 255, 0.3);
	margin: 40px 0 30px;
	padding-bottom: 10px;
}
.reg-butn h2{
	font-size: 2rem;
	letter-spacing: 3px;
	color: #A9A3ff;
}
.registration-cta {
	width: 300px;
	height: 43px;
	display: inline-block;
	padding: 12px 24px;
	border: 1px solid white;
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: white;
	background: transparent;
	transition: all 0.3s ease;
	cursor: pointer;
	text-align: center;
}

.registration-cta:hover {
	background: white;
	color: black;
}

@media (max-width: 800px) {
	.registration-cta {
		width: 80%;
		margin-top: 10px;
	}
}