:root {
	--primary-gold: #FFD700;
	--dark-blue: #0a1628;
	--light-blue: #1e3a5f;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, var(--dark-blue) 0%, var(--light-blue) 100%);
	min-height: 100vh;
}

.navbar {
	background: rgba(10, 22, 40, 0.95) !important;
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.navbar-brand {
	color: var(--primary-gold) !important;
	font-weight: bold;
	font-size: 1.5rem;
	text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-link {
	color: #fff !important;
	transition: all 0.3s;
	position: relative;
}

.nav-link:hover {
	color: var(--primary-gold) !important;
	transform: translateY(-2px);
}

.nav-link.active {
	color: var(--primary-gold) !important;
}

.hero-section {
	background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
				url('img/img-00.jpg') center/cover;
	min-height: 70vh;
	display: flex;
	align-items: center;
	color: white;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 50% 50%, rgba(255,215,0,0.1) 0%, transparent 70%);
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-section h1 {
	font-size: 3.5rem;
	font-weight: bold;
	text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
	margin-bottom: 1.5rem;
	animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
	from { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
	to { text-shadow: 0 0 30px rgba(255, 215, 0, 1), 0 0 40px rgba(255, 215, 0, 0.8); }
}

.content-section {
	background: rgba(255, 255, 255, 0.98);
	border-radius: 15px;
	padding: 3rem;
	margin: 3rem 0;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.card {
	border: none;
	border-radius: 15px;
	overflow: hidden;
	transition: all 0.4s;
	background: white;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.card-img-top {
	height: 250px;
	object-fit: cover;
}

.card-title {
	color: var(--light-blue);
	font-weight: bold;
}

.btn-primary {
	background: linear-gradient(45deg, var(--primary-gold), #FFA500);
	border: none;
	padding: 12px 30px;
	font-weight: bold;
	border-radius: 25px;
	transition: all 0.3s;
}

.btn-primary:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.footer {
	background: var(--dark-blue);
	color: white;
	padding: 2rem 0;
	margin-top: 4rem;
}

.page-transition {
	animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

.section-title {
	color: var(--light-blue);
	font-weight: bold;
	margin-bottom: 2rem;
	position: relative;
	padding-bottom: 15px;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.carousel-item {
	height: 500px;
}

.carousel-item img {
	height: 100%;
	object-fit: cover;
	filter: brightness(0.7);
}

.carousel-caption {
	background: rgba(0, 0, 0, 0.6);
	padding: 20px;
	border-radius: 10px;
}

@media (max-width: 768px) {
	.hero-section h1 {
		font-size: 2rem;
	}
	
	.content-section {
		padding: 1.5rem;
	}
	
	.carousel-item {
		height: 300px;
	}
}