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

body, .inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
}

body {
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}
.content-width {
	max-width: 1200px;
	margin: 0 auto;
}
h1,h2,h3,h4 {
	margin: 0;
	padding: 0;
	font-weight: 700;
}
h1 {
	font-size: 2rem;
	line-height: 2.8rem;
	margin: 1rem 0;
}
h2 { }
h3 { }
h4 {
	font-size: 1.3rem;
	line-height: 1.6rem;
	margin: 1rem 0;
}

.white {
	color: #FFF;
}
.black {
	color: #000;
}
.blue {
	color: #033F76;	
}

.logo {
	padding: 5rem 0 3rem;
}
.logo img {
	max-width: 100%;
	height: auto;
}
.hero {
	/* background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%); */
	/* background: #FFF; */
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
	overflow: hidden;
}

/* .hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
	animation: float 20s infinite linear;
} */

/* @keyframes float {
	0% { transform: translateY(0px) rotate(0deg); }
	100% { transform: translateY(-100px) rotate(360deg); }
} */

.hero-content {
	/* background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%); */
	background-color: #033F76;
	color: #FFF;
	z-index: 2;
	/* max-width: 800px; */
	width: 100%;
	padding: 6rem 1rem;
}

.tournament-title {
	font-size: clamp(2.5rem, 8vw, 4rem);
	font-weight: bold;
	/* color: #2C1810; */
	color: #FFF;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
	animation: slideInDown 1s ease-out;
}

@keyframes slideInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.subtitle {
	font-size: clamp(1.2rem, 4vw, 1.8rem);
	/* color: #4A3728; */
	color: #FFF;
	margin-bottom: 2rem;
	animation: slideInUp 1s ease-out 0.3s both;
	font-weight: 700;
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.key-info {
	background: rgba(255,255,255,0.95);
	padding: 2.5rem 2.5rem 3.5rem;
	border-radius: 20px;
	margin: 2rem 0;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	animation: fadeInScale 1s ease-out 0.6s both;
	max-width: 1040px;
	margin: 0 auto;
}
.key-info h3, .key-info small {
	color: #000;
}

@keyframes fadeInScale {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.0rem;
	margin-bottom: 2rem;
}

.info-item {
	text-align: center;
}

.info-label {
	font-weight: 700;
	color: #001F46;
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	display: block;
	text-transform: uppercase;
}

.info-value {
	font-size: 1.3rem;
	color: #2C1810;
}

.cta-button {
	display: block;
	/* background: linear-gradient(45deg, #FF6B35, #FF8C42); */
	background: #F6C400;
	color: #001F46;
	padding: 18px 30px;
	text-decoration: none;
	border-radius: 50px;
	font-size: 1.2rem;
	font-weight: bold;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(255,107,53,0.3);
	animation: pulse 2s infinite;
	margin: 1rem auto;
	max-width: 380px;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(255,107,53,0.4);
	animation: none;
}

.section {
	padding: 6rem 0;
	width: 100%;
	margin: 0 auto;
}

.section-title {
	font-size: 2.5rem;
	color: #2C1810;
	margin-bottom: 3rem;
	text-align: center;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(45deg, #F5C400, #FF6B35);
	border-radius: 2px;
}

.about-section {
	/* background: linear-gradient(135deg, #FFF8DC 0%, #FFFACD 100%); */
	background: #000000;
	color: #000;
	width: 100%;
}
.about-section a {
	color: #ED1471;
}
.about-section .section-title {
	color: #FFF;
}

.bananaball-info {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	margin-bottom: 2rem;
}

.bananaball-info h3 {
	color: #ED1471;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.schedule-section {
	background: #375CC7;
	color: white;
}
.schedule-section .content-width {
	max-width: 800px;
}

.schedule-section .section-title {
	color: #FFF;
}

.schedule-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
	padding: 20px;
}

.schedule-item {
	background: rgba(255,215,0,0.1);
	padding: 1.5rem;
	border-radius: 15px;
	border: 2px solid #FC7E2F;
	text-align: center;
	transition: all 0.3s ease;
}

.schedule-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(255,215,0,0.2);
}

.schedule-time {
	font-size: 1.5rem;
	font-weight: bold;
	color: #FC7E2F;
	margin-bottom: 0.5rem;
}

.registration-section {
	background: linear-gradient(160deg, #EE2D24 0%, #FEF200 100%);
	color: #000;
	text-align: center;
}

.registration-section .section-title {
	color: white;
}

.registration-details {
	background: rgba(255,255,255,0.6);
	padding: 2rem;
	border-radius: 20px;
	margin: 2rem auto;
	max-width: 800px;
}

.age-groups {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin: 2rem 0;
	flex-wrap: wrap;
}

.age-group {
	background: rgba(237, 20, 113, .85);
	padding: 1rem 2rem;
	border-radius: 50px;
	font-size: 1.2rem;
	font-weight: bold;
	color: #FFF;
}

.contact-section {
	background: #033F76;
	color: white;
	text-align: center;
	padding: 3rem 2rem;
}

.contact-info {
	font-size: 1.2rem;
	margin: 1rem 0;
}

.contact-info a {
	color: #F5C400;
	text-decoration: none;
}

.contact-info a:hover {
	text-decoration: underline;
}

/* .floating-baseball {
	position: fixed;
	width: 30px;
	height: 30px;
	background: radial-gradient(circle, #fff 30%, #FF6B35 31%, #FF6B35 33%, #fff 34%);
	border-radius: 50%;
	animation: floatBall 15s infinite linear;
	z-index: 1;
} */

/* @keyframes floatBall {
	0% {
		transform: translateX(-50px) translateY(100vh) rotate(0deg);
	}
	100% {
		transform: translateX(calc(100vw + 50px)) translateY(-50px) rotate(720deg);
	}
} */

.warning-banner {
	background: #ED1471;
	color: white;
	text-align: center;
	padding: 1rem;
	font-weight: bold;
}

@media (max-width: 768px) {
	.hero-content {
		padding: 3rem 1rem;
	}
	.section {
		padding: 3rem 0;
}
	.logo img {
		max-width: 85%;
	}
	.info-grid {
		grid-template-columns: 1fr;
		gap: 4rem;
	}
	
	.age-groups {
		flex-direction: column;
		align-items: center;
	}
	
	.schedule-grid {
		grid-template-columns: 1fr;
	}
}

.formRegister, .formRegister label, .formWaitlist, .formWaitlist label {
	margin: 1rem 0 .5rem;
	font-weight: 600;
}
.formRegister label, .formWaitlist label {
	text-align: left;
}
.formRegister input[type=text], .formRegister input[type=email], .formRegister input[type=tel], .formRegister select, .formWaitlist input[type=text], .formWaitlist input[type=email], .formWaitlist input[type=tel], .formWaitlist select {
	border: none;
	border:1px solid #999;
	border-radius: 4px;
	background: #FFF;
	color: #333;
	padding: 4px 7px;
	width: 100%;
}
.formRegister input[type=submit], .formWaitlist input[type=submit] {
	margin: 2rem auto 1rem;
	text-align: center;
	background: none;
	border: none;
	display: inline-block;
	background-color: #033F76;
	color:white;
	text-align: center;
	font-weight: 700;
	padding: 12px 24px;
	max-width: 220px;
	border-radius: 50px;
}
.required {
	font-size: .8rem;
	color: red;
}
.finePrint {
	line-height: 1.1rem;
	display: block;
	font-size: .8rem;
	font-weight: 400;
}