html {
	font-size: 14px;
}

@media (min-width: 768px) {
	html {
		font-size: 16px;
	}
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
	box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
	position: relative;
	min-height: 100%;
}

body {
	margin-bottom: 60px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #fdf8f4; /* Light sand tone */
	color: #333; /* Neutral text color */
}

h1, h2, h3 {
	font-family: 'Playfair Display', serif; /* Elegant serif font */
	color: #d35400; /* Terracotta for headings */
}

a {
	color: #2980b9; /* Water-inspired blue for links */
	text-decoration: none;
}

	a:hover {
		color: #e67e22; /* Fiery orange for hover effect */
	}

/* Navigation Bar */
nav {
	background-color: #2c3e50; /* Dark blue-gray for contrast */
	color: #fff;
	padding: 1rem;
}

	nav ul {
		list-style: none;
		margin: 0;
		padding: 0;
		display: flex;
		justify-content: center;
		gap: 1.5rem;
	}

		nav ul li {
			display: inline;
		}

			nav ul li a {
				color: #fff;
				font-weight: bold;
				text-transform: uppercase;
			}

				nav ul li a:hover {
					color: #f39c12; /* Highlight color */
				}

/* Hero Section */
.hero {
	background-color: #f5f5f5;
	background: url('/images/hero-bg.jpg') no-repeat center center;
	background-size: cover;
	color: #fff;
	padding: 1rem 1rem;
	text-align: center;
}

.hero-title {
	color: #d35400;
}

.hero-subtitle {
	color: #2980b9;
}

.hero h1 {
	font-size: 3rem;
	color: #f1c40f; /* Golden phoenix tone */
}

.hero p {
	font-size: 1.5rem;
	margin-top: 1rem;
}

/* Section Styles */
section {
	padding: 2rem 1rem;
}

	section:nth-child(even) {
		background-color: #ecf0f1; /* Light gray for alternating sections */
	}

	section h2 {
		text-align: center;
		margin-bottom: 1rem;
	}

	section ul {
		list-style: none;
		padding: 0;
		display: flex;
		flex-wrap: wrap;
		gap: 1rem;
		justify-content: center;
	}

		section ul li {
			background-color: #fff;
			border: 1px solid #ddd;
			border-radius: 8px;
			padding: 1rem;
			width: 300px;
			box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
			transition: transform 0.2s;
		}

			section ul li:hover {
				transform: scale(1.05);
			}

/* Footer */
footer {
	background-color: #2c3e50;
	color: #fff;
	text-align: center;
	padding: 1rem;
}

	footer a {
		color: #f39c12;
		text-decoration: none;
	}

		footer a:hover {
			color: #e74c3c; /* Fiery red for hover effect */
		}

	footer p {
		margin-bottom: 0.2rem;
		margin-top: 0.2rem;
	}

/* Cards */
.card {
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	border: 1px solid #ddd;
	border-radius: 8px;
	transition: transform 0.2s ease-in-out;
}

.card:hover {
	transform: scale(1.05);
}

.card-title {
	font-size: 1.25rem;
	font-weight: bold;
	color: #333;
}

.btn-primary {
	background-color: #007bff;
	border-color: #007bff;
}
