/* Floating social links */
.social-float {
	position: fixed;
	top: 50%;
	right: 24px;
	transform: translateY(-50%);
	z-index: 100;
	display: flex;
	flex-direction: column;
	gap: 1.2em;
}
.social-icon {
	display: block;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.18);
	border: 2px solid #ffd700;
	background-size: 60% 60%;
	background-repeat: no-repeat;
	background-position: center;
	transition: background 0.2s, border 0.2s, transform 0.15s;
}
.social-icon.facebook {
	background-image: url('https://upload.wikimedia.org/wikipedia/commons/5/51/Facebook_f_logo_%282019%29.svg');
}
.social-icon.tiktok {
	background-image: url('https://upload.wikimedia.org/wikipedia/commons/a/a9/TikTok_logo.svg');
}
.social-icon:hover {
	background-color: #ffd700;
	border-color: #b30000;
	transform: scale(1.08);
}
html, body {
	height: 100%;
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Segoe UI', Arial, sans-serif;
	margin: 0;
	padding: 0;
	background: linear-gradient(135deg, #1a1a1a 60%, #b30000 100%);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
header {
	background: #1a1a1a;
	color: #ffd700;
	padding: 1.5em 0 0.5em 0;
	text-align: center;
	position: relative;
}
.site-logo {
	display: block;
	margin: 1.5em auto 1em auto;
	max-width: 140px;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.18);
	border: 4px solid #ffd700;
	background: #fff;
	object-fit: contain;
	padding: 0;
}
}
.slogan {
	font-size: 1.5em;
	font-style: italic;
	color: #ffd700;
	background: rgba(179,0,0,0.12);
	border-left: 6px solid #ffd700;
	border-radius: 0 12px 12px 0;
	margin: 1em auto 1.5em auto;
	padding: 0.5em 2em 0.5em 1.5em;
	max-width: 420px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.18);
	letter-spacing: 1px;
	animation: fadeInSlogan 1.2s ease;
	z-index: 2;
}
@keyframes fadeInSlogan {
	from { opacity: 0; transform: translateY(-20px); }
	to { opacity: 1; transform: translateY(0); }
}
nav {
	margin: 0 auto 1.5em auto;
	background: #000;
	border: 2px solid #ffd700;
	border-radius: 16px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
	display: inline-block;
	padding: 0.5em 2em;
	position: relative;
	z-index: 3;
}
nav a {
	color: #ffd700;
	margin: 0 1.2em;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s, background 0.2s, border-radius 0.2s;
	padding: 0.4em 1em;
	border-radius: 8px;
}
nav a:hover {
	color: #000;
	background: #ffd700;
	text-decoration: none;
	border-radius: 8px;
}
main {
	max-width: 700px;
	margin: 2em auto 0 auto;
	background: #fff;
	padding: 2.5em 2em 2em 2em;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.18);
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2em;
}
.hero {
	text-align: center;
	padding-bottom: 1em;
}
.hero h2 {
	font-size: 2em;
	margin-bottom: 0.5em;
	color: #b30000;
}
.hero p {
	font-size: 1.15em;
	margin-bottom: 1.5em;
	color: #222;
}
.cta {
	background: linear-gradient(90deg, #ffd700 60%, #b30000 100%);
	color: #1a1a1a;
	border: none;
	padding: 0.9em 2.5em;
	border-radius: 30px;
	font-size: 1.1em;
	font-weight: bold;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
	transition: background 0.2s, color 0.2s, transform 0.15s;
}
.cta:hover {
	background: linear-gradient(90deg, #b30000 60%, #ffd700 100%);
	color: #ffd700;
	transform: scale(1.05);
}
.features {
	background: #fff8e1;
	border-radius: 8px;
	padding: 1.5em 1em 1em 1em;
	box-shadow: 0 1px 4px rgba(179,0,0,0.08);
}
.features h3 {
	margin-top: 0;
	color: #b30000;
	font-size: 1.2em;
}
.features ul {
	list-style: none;
	padding: 0;
	margin: 1em 0 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1.2em;
	justify-content: center;
}
.features li {
	font-size: 1.08em;
	background: #fff;
	border-radius: 6px;
	padding: 0.7em 1.2em;
	box-shadow: 0 1px 4px rgba(179,0,0,0.06);
	display: flex;
	align-items: center;
	gap: 0.7em;
}
.icon {
	font-size: 1.3em;
}
.gallery {
	text-align: center;
}
.gallery h2 {
	color: #b30000;
	margin-bottom: 0.5em;
}
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5em;
	margin: 2em 0;
}
.gallery-grid img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(179,0,0,0.10);
	border: 3px solid #ffd700;
	background: #000;
	transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-grid img:hover {
	transform: scale(1.04);
	box-shadow: 0 4px 16px rgba(179,0,0,0.18);
	border-color: #b30000;
}
.gallery-note {
	color: #b30000;
	font-style: italic;
	margin-top: 1em;
}
form label { display: block; margin-top: 1em; }
form input, form select { width: 100%; padding: 0.5em; margin-top: 0.5em; }
button { background: #b30000; color: #ffd700; border: none; padding: 0.75em 2em; border-radius: 4px; margin-top: 1.5em; cursor: pointer; transition: background 0.2s, color 0.2s; }
button:hover { background: #ffd700; color: #b30000; }
footer {
	text-align: center;
	padding: 1em 0;
	background: #1a1a1a;
	color: #ffd700;
	margin-top: auto;
	border-top: 4px solid #b30000;
}
/* Removed duplicate and blue button/footer styles */