/* Reset and base styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* CSS Custom Properties for dynamic color schemes */
:root {
	--primary-color: #ed1c24;
	--secondary-color: #c41820;
	--background-color: #000;
	--accent-color: #ff6b6b;
	--text-color: #fff;
}

body {
	font-family: 'Arial', sans-serif;
	background-color: var(--background-color);
	color: var(--text-color);
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	height: 100vh;
	display: flex;
	flex-direction: column;
	font-size: 16px;
	line-height: 1.6;
	transition: background-color 0.5s ease;
}

/* Animation Container */
#animation-container {
	display: flex;
	flex-direction: column;
	width: 100vw;
	height: 100vh;
	position: relative;
	flex: 1;
}

#top-half {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#slogan-container {
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
	opacity: 1; /* Make visible */
}

#contact-button-container {
	position: absolute;
	top: 70%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
	opacity: 1; /* Make visible */
}

#bottom-half {
	display: none; /* Hide the bottom-half container since we're positioning elements individually */
}

/* SVG Container */
#svg-container {
	width: 80%;
	max-width: 900px;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0; /* Start invisible for fade-in */
	margin: 0 auto;
}

/* Content Container for elements below logo */
#content-container { display: none; }

/* SVG Logo */
#Layer_1 {
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	filter: drop-shadow(0 0 20px var(--primary-color));
}

/* Make all SVG paths use primary color */
#Layer_1 path {
	fill: var(--primary-color) !important;
}

/* Slogan Styling */
.slogan {
	font-family: 'Nunito', 'Poppins', 'Montserrat', 'Circular', 'Avenir', 'Helvetica Neue', 'Arial', sans-serif;
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--primary-color);
	margin: 0;
	letter-spacing: 0.5px;
	text-shadow: 0 0 10px rgba(237, 28, 36, 0.3);
	background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: all 0.3s ease;
}

/* Contact Button */
.contact-btn {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: white;
	border: none;
	padding: 1rem 2rem;
	font-size: 1.1rem;
	font-weight: bold;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(237, 28, 36, 0.3);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: 'Arial', sans-serif;
}

.contact-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(237, 28, 36, 0.4);
	background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.contact-btn:active {
	transform: translateY(0);
}

.contact-btn i {
	font-size: 1.2rem;
}

/* Link Container */
#link-container {
	text-align: center;
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.modal.show {
	opacity: 1;
}

.modal-content {
	background-color: #111;
	margin: 5% auto;
	padding: 0;
	border: 2px solid var(--primary-color);
	border-radius: 15px;
	width: 90%;
	max-width: 500px;
	position: relative;
	transform: scale(0.7) translateY(-50px);
	transition: transform 0.3s ease;
	box-shadow: 0 20px 40px rgba(237, 28, 36, 0.2);
}

.modal.show .modal-content {
	transform: scale(1) translateY(0);
}

.modal-header {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: white;
	padding: 1.5rem;
	border-radius: 13px 13px 0 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal-header h2 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: bold;
	font-family: 'Arial', sans-serif;
}

.close {
	color: white;
	font-size: 2rem;
	font-weight: bold;
	cursor: pointer;
	transition: color 0.3s ease;
	line-height: 1;
}

.close:hover {
	color: var(--accent-color);
}

.modal-body {
	padding: 2rem;
}

/* Form Styles */
.form-group {
	margin-bottom: 1rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--text-color);
	font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 0.75rem;
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.05);
	color: var(--text-color);
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.submit-btn {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: white;
	border: none;
	padding: 1rem 2rem;
	font-size: 1.1rem;
	font-weight: bold;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(237, 28, 36, 0.3);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: 'Arial', sans-serif;
	width: 100%;
	justify-content: center;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(237, 28, 36, 0.4);
	background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.submit-btn:active {
	transform: translateY(0);
}

.hidden {
	display: none;
}

/* Footer */
footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	color: var(--text-color);
	text-align: center;
	padding: 1rem;
	font-size: 0.9rem;
	z-index: 1000;
}

footer p {
	margin: 0.5rem 0;
	color: var(--text-color);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-links a {
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.3s ease;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-links a:hover {
	color: var(--accent-color);
}

/* Policy Pages Styles */
.policy-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem;
	min-height: 100vh;
	overflow-y: auto;
}

.policy-container h1 {
	color: var(--primary-color);
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 1rem;
	font-family: 'Arial', sans-serif;
}

.policy-container h2 {
	color: var(--primary-color);
	font-size: 1.8rem;
	font-weight: bold;
	margin: 2rem 0 1rem 0;
	font-family: 'Arial', sans-serif;
}

.policy-container h3 {
	color: var(--primary-color);
	font-size: 1.4rem;
	font-weight: bold;
	margin: 1.5rem 0 0.8rem 0;
	font-family: 'Arial', sans-serif;
}

.policy-container p {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 1rem;
	font-family: 'Arial', sans-serif;
	color: var(--text-color);
}

.policy-container ul {
	margin: 1rem 0;
	padding-left: 2rem;
}

.policy-container li {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 0.5rem;
	font-family: 'Arial', sans-serif;
	color: var(--text-color);
}

.policy-container strong {
	font-weight: bold;
	font-family: 'Arial', sans-serif;
	color: var(--text-color);
}

.back-link {
	color: var(--primary-color);
	text-decoration: none;
	margin-bottom: 2rem;
	display: inline-block;
	font-size: 1rem;
	font-family: 'Arial', sans-serif;
	transition: color 0.3s ease;
}

.back-link:hover {
	color: var(--accent-color);
}

.section {
	margin-bottom: 2rem;
}

.logo {
	text-align: center;
	margin-bottom: 2rem;
}

.logo svg {
	width: 200px;
	height: auto;
}

.logo svg path {
	fill: var(--primary-color);
}

/* Responsive design */
@media (max-width: 768px) {
	#svg-container {
		width: 90%;
		height: 50vh;
	}
	
	#content-container {
		padding-top: 1rem;
	}
	
	.slogan {
		font-size: 1.4rem;
		letter-spacing: 0.3px;
	}
	
	.contact-btn {
		padding: 0.8rem 1.5rem;
		font-size: 1rem;
	}
	
	.modal-content {
		width: 95%;
		margin: 10% auto;
	}
	
	.modal-header {
		padding: 1rem;
	}
	
	.modal-header h2 {
		font-size: 1.3rem;
	}
	
	.modal-body {
		padding: 1.5rem;
	}
	
	footer {
		padding: 0.5rem;
	}
	
	footer p {
		font-size: 0.8rem;
	}
	
	.policy-container {
		padding: 1rem;
	}
	
	.policy-container h1 {
		font-size: 2rem;
	}
	
	.policy-container h2 {
		font-size: 1.5rem;
	}
	
	.policy-container h3 {
		font-size: 1.2rem;
	}
	
	.policy-container p,
	.policy-container li {
		font-size: 0.9rem;
	}
}

/* reCAPTCHA Styling */
.g-recaptcha {
	display: flex !important;
	justify-content: center !important;
	margin: 20px 0 !important;
}

/* Center Netlify reCAPTCHA */
div[data-netlify-recaptcha="true"] {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	margin: 20px 0 !important;
	text-align: center !important;
}

/* Style the reCAPTCHA iframe when it appears */
div[data-netlify-recaptcha="true"] iframe {
	margin: 0 auto !important;
}

/* Hide the reCAPTCHA badge */
.grecaptcha-badge {
	display: none !important;
}

/* Form error styling */
.form-error {
	color: #ff4757 !important;
	background: rgba(255, 71, 87, 0.1) !important;
	border: 1px solid #ff4757 !important;
	padding: 10px !important;
	border-radius: 5px !important;
	margin: 10px 0 !important;
	text-align: center !important;
	font-size: 14px !important;
	animation: slideIn 0.3s ease-out !important;
}

/* Form success styling */
.form-success {
	color: #2ed573 !important;
	background: rgba(46, 213, 115, 0.1) !important;
	border: 1px solid #2ed573 !important;
	padding: 10px !important;
	border-radius: 5px !important;
	margin: 10px 0 !important;
	text-align: center !important;
	font-size: 14px !important;
	animation: slideIn 0.3s ease-out !important;
}

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