/* Basic Reset */
*,
*::after,
*::before {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	color: #34495e;
	background-color: #ecf0f1;
}

.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
.site-header {
	background-color: #fff;
	padding: 5px 0;
	box-shadow: 0 2px 5px rgba(44, 62, 80, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.site-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-header .container .header-logo {
	display: flex;
	height: 40px;
}

.site-header .container .header-logo img {
	width: 100%;
	height: auto;
}

.logo {
	font-size: 1.5em;
	font-weight: bold;
	color: #2c3e50;
}

nav ul {
	list-style: none;
	display: flex;
}

nav ul li {
	margin-left: 20px;
	/* padding: 5px; */
}

nav ul li a {
	text-decoration: none;
	color: #34495e;
	font-weight: bold;
	transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
	color: #1abc9c;
}

/* Hero Section */
.hero-section {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	background: linear-gradient(135deg, #16a085 0%, #2980b9 100%);
	position: relative;
}

.full-screen {
	min-height: 100vh;
}

.hero-section h1 {
	font-size: 3.5em;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
	font-size: 1.4em;
	margin-bottom: 30px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
	display: inline-block;
	background-color: #1abc9c;
	color: #fff;
	padding: 12px 25px;
	border: none;
	border-radius: 5px;
	text-decoration: none;
	font-size: 1.1em;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
	background-color: #16a085;
	transform: translateY(-2px);
}

/* Content Sections */
.content-section {
	padding: 80px 0;
	background-color: #fff;
	margin-bottom: 10px;
	opacity: 0;
	transform: scale(0.95);
	transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.content-section.is-visible {
	opacity: 1;
	transform: scale(1);
}

.content-section:nth-child(odd) {
	background-color: #f8f9f9;
}

.content-section .container {
	display: flex;
	align-items: center;
	gap: 40px;
}

/* .content-section:nth-child(even) .container {
	flex-direction: row-reverse;
} */

.content-section.text-only-section .container {
	flex-direction: column !important;
	align-items: flex-start;
	gap: 15px;
}

.content-section.text-only-section.animated-section .container {
	align-items: center;
	text-align: center;
}

.content-block {
	flex: 1;
}

.content-block .section-cta,
.text-only-section .section-cta,
.cards-section .section-cta {
	margin-top: 25px;
	display: inline-block;
}

.image-placeholder,
.emoji-placeholder {
	flex: 1;
	max-width: 450px;
	text-align: center;
}

/* .image-placeholder svg rect,
.card-image-placeholder svg rect {
	fill: #bdc3c7;
} */

.image-placeholder svg text,
.card-image-placeholder svg text {
	fill: #7f8c8d;
	font-family: sans-serif;
}

.image-placeholder svg {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(44, 62, 80, 0.1);
}

.emoji-placeholder {
	font-size: 5em;
	line-height: 1;
}

.content-section h2 {
	font-size: 2.5em;
	margin-bottom: 20px;
	color: #2980b9;
}

.content-section p {
	font-size: 1.1em;
	margin-bottom: 15px;
	color: #34495e;
}

.content-section.text-only-section p {
	text-align: left;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
}

.content-section.text-only-section h2 {
	align-self: center;
	text-align: center;
}

/* Cards Section */
.cards-section .container {
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.cards-container {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 20px;
	width: 100%;
	margin-top: 30px;
	margin-bottom: 20px;
}

.card {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(44, 62, 80, 0.1);
	padding: 20px;
	text-align: center;
	width: calc(33% - 20px);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(44, 62, 80, 0.15);
}

.card-image-placeholder svg {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
	margin-bottom: 15px;
}

.card h3 {
	font-size: 1.5em;
	margin-bottom: 10px;
	color: #1abc9c;
}

/* Contact Section */
.contact-section {
	background-color: #bdc3c7;
	padding: 80px 0;
	opacity: 0;
	transform: scale(0.95);
	transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.contact-section.is-visible {
	opacity: 1;
	transform: scale(1);
}

.contact-section .container {
	max-width: 700px;
	text-align: center;
}

.contact-section h2 {
	margin-bottom: 20px;
	color: #2c3e50;
}

.contact-info {
	margin-bottom: 30px;
	font-size: 1.1em;
	line-height: 1.8;
	color: #34495e;
}

.contact-info p {
	margin-bottom: 10px;
}

.contact-info a {
	color: #2980b9;
	text-decoration: none;
}

.contact-info a:hover {
	text-decoration: underline;
}

#contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	text-align: left;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	margin-bottom: 5px;
	font-weight: bold;
	color: #2c3e50;
}

.form-group input,
.form-group textarea {
	padding: 10px 15px;
	border: 1px solid #95a5a6;
	border-radius: 4px;
	font-size: 1em;
	background-color: #fff;
	color: #34495e;
}

.form-group textarea {
	resize: vertical;
}

#contact-form button {
	align-self: center;
	margin-top: 10px;
	display: inline-block;
	background-color: #1abc9c;
	color: #fff;
	padding: 12px 25px;
	border: none;
	border-radius: 5px;
	text-decoration: none;
	font-size: 1.1em;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

#contact-form button:hover {
	background-color: #16a085;
	transform: translateY(-2px);
}

/* Footer */
.site-footer {
	background-color: #34495e;
	color: #ecf0f1;
	text-align: center;
	padding: 20px 0;
	margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.site-footer nav ul {
		flex-direction: column;
	}

	.hero-section h1 {
		font-size: 2.5em;
	}
	.hero-section p {
		font-size: 1.2em;
	}

	.site-header .container {
		flex-direction: row;
		gap: 10px;
	}

	nav ul {
		justify-content: center;
	}

	.content-section .container {
		flex-direction: column !important;
		text-align: center;
	}

	.content-block,
	.image-placeholder,
	.emoji-placeholder {
		max-width: 100%;
		text-align: center;
	}

	.content-block .section-cta,
	.text-only-section .section-cta,
	.cards-section .section-cta {
		margin-top: 30px;
	}

	.content-section h2 {
		font-size: 2em;
	}

	.cards-container {
		flex-direction: column;
		align-items: center;
	}

	.card {
		width: 80%;
		max-width: 350px;
	}
}

@media (max-width: 480px) {
	.hero-section h1 {
		font-size: 2em;
	}
	.hero-section p {
		font-size: 1em;
	}
	nav ul li {
		margin-left: 15px;
	}
	nav ul li a {
		font-size: 0.9em;
	}
	.logo {
		font-size: 1.3em;
	}
	.card {
		width: 95%;
	}
}
