:root {
	--primary-color: #2c3e50;
	--secondary-color: #e74c3c;
	--accent-color: #f1c40f;
	--text-color: #333;
	--light-bg: #f8f9fa;
}

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

body {
	font-family: "Poppins", sans-serif;
	line-height: 1.6;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	color: var(--text-color);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
}

/* Logo Styles */
header {
	text-align: center;
	margin-bottom: 0.5rem;
}

.logo {
	width: 250px;
	height: auto;
	border-radius: 80%;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
	text-align: center;
	margin-bottom: 4rem;
}

h1 {
	font-family: "Anton",;
	/* font-family: "Playfair Display", serif; */
	font-size: 3.5rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.subtitle {
	font-size: 1.5rem;
	/* margin-bottom: 2rem; */
	color: #666;
}

/* Special Offer */
.special-offer {
	/* background: var(--accent-color); */
	padding: 1rem;
	border-radius: 10px;
	margin: 0.5rem 0;
	display: inline-block;
}

/* CTA Button */
.cta-button {
	display: inline-block;
	padding: 1rem 2rem;
	background: #333;
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Location Section */
.location {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	margin-bottom: 4rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container {
	margin-top: 1rem;
	border-radius: 10px;
	overflow: hidden;
}

/* Contact Form */
.contact {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	margin-bottom: 2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 1.5rem;
}

input,
textarea {
	width: 100%;
	padding: 0.8rem;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-family: inherit;
}

textarea {
	height: 150px;
	resize: vertical;
}

.submit-btn {
	background: var(--primary-color);
	color: white;
	border: none;
	padding: 1rem 2rem;
	border-radius: 5px;
	cursor: pointer;
	transition: background 0.3s;
}

.submit-btn:hover {
	background: #34495e;
}

/* Social Links */
.social-links {
	text-align: center;
}

.social-icon {
	font-size: 1.5rem;
	color: var(--primary-color);
	margin: 0 1rem;
	transition: color 0.3s;
}

.social-icon:hover {
	color: var(--secondary-color);
}

/* Animations */
.animate-fade-in {
	animation: fadeIn 1s ease-out;
}

.animate-slide-up {
	animation: slideUp 0.8s ease-out;
}

.animate-slide-up-delay {
	animation: slideUp 0.8s ease-out 0.3s backwards;
}

.animate-pulse {
	animation: pulse 2s infinite;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
	.container {
		padding: 1rem;
	}

	h1 {
		font-size: 2.5rem;
	}

	.subtitle {
		font-size: 1.2rem;
	}
}

.anton-regular {
	font-family: "Anton", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.error {
	border-color: #ff4444 !important;
}

.error-message {
	color: #ff4444;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	margin-bottom: 0.5rem;
}

.form-group {
	position: relative;
}
