/*reset*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Arial', sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	background: linear-gradient(to bottom, #111111, #1a1a1a);
	color: #eee;
}

a {
	text-decoration: none;
	color: inherit;
}

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

h1,
h2,
h3 {
	margin-bottom: 1rem;
}

p {
	margin-bottom: 1rem;
	line-height: 1.6;
}

header {
	min-height: 95vh;
	position: relative;
	overflow: hidden;
	text-align: center;
	align-items: center;
	justify-content: center;
	padding: 4rem 2rem;
}

header svg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	opacity: 0.5;
	z-index: 0;
}

header h1 {
	
	margin-top: 5rem;
	font-size: 3rem;
	background: linear-gradient(to right, #f97316, #facc15);
	-webkit-background-clip: text;
	color: transparent;
}

header p {
	font-size: 1.2rem;
	color: #ccc;
	margin-bottom: 2rem;
}

.btn {
	display: inline-block;
	padding: 1rem 2rem;
	margin: 0.5rem;
	border-radius: 0.75rem;
	font-weight: bold;
	transition: transform 0.2s, box-shadow 0.2s;
	cursor: pointer;
}

.btn-primary {
	background: linear-gradient(to right, #f97316, #facc15);
	color: white;
	border: none;
	box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

.btn-primary:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 20px rgba(255, 165, 0, 0.5);
}

.btn-secondary {
	background: #222;
	border: 1px solid #facc15;
	color: #facc15;
}

.btn-secondary:hover {
	background: #333;
}

section {
	padding: 4rem 2rem;
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title h2 {
	font-size: 2.5rem;
}

.section-title p {
	font-size: 1.1rem;
	color: #aaa;
}

.cards {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
}

.card {
	background: rgba(40, 40, 40, 0.8);
	border-radius: 1rem;
	padding: 2rem;
	width: 300px;
	transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
}

.card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #facc15;
}

.card p {
	color: #ccc;
}

.contact-form {
	max-width: 500px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
textarea.cinput {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	min-height: 150px;
	padding: 1rem;
	border-radius: 0.75rem;
	border: 1px solid #444;
	background: #222;
	color: #eee;
	font-size: 1rem;
	resize: vertical;
}

textarea:focus {
	outline: none;
	border-color: #facc15;
	box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.2);
}
footer {
	text-align: center;
	padding: 3rem 2rem;
	border-top: 1px solid #444;
	color: #aaa;
}

footer p:first-child {
	font-weight: bold;
	background: linear-gradient(to right, #f97316, #facc15);
	-webkit-background-clip: text;
	color: transparent;
	margin-bottom: 0.5rem;
}
