@import url('https://fonts.googleapis.com/css2?family=Forum&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	--white-color: #fefefe;
	--company-color: #692906;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Montserrat', sans-serif;
	color: var(--white-color);
	background-image: url('BANER_1.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
}

.container {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 40px 20px;
}

.content {
	max-width: 1200px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 40px;
}

.logo {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.logo img {
	height: 80px;
	width: auto;
}

.main-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	max-width: 500px;
}

.main-title {
	font-family: 'Forum', serif;
	font-size: 64px;
	font-weight: 500;
	line-height: 1.1;
	margin: 0;
	letter-spacing: 0.5px;
}

.subtitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 500;
	margin: 10px 0 0 0;
	opacity: 0.9;
}

.description {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	opacity: 0.8;
	line-height: 1.4;
}

.cta-button {
	display: inline-block;
	background-color: var(--white-color);
	color: var(--company-color);
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 600;
	padding: 14px 32px;
	text-decoration: none;
	border-radius: 10px;
	transition: all 0.6s ease;
	margin-top: 10px;
	border: 2px solid var(--white-color);
}

.cta-button:hover {
	background-color: transparent;
	color: var(--white-color);
	box-shadow: 0 4px 12px rgba(254, 254, 254, 0.2);
}

.social-media {
	display: flex;
	gap: 20px;
	margin-top: 10px;
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	transition:
		transform 0.3s ease,
		opacity 0.3s ease;
	opacity: 0.9;
}

.social-icon:hover {
	opacity: 1;
}

.social-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.footer {
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 60px;
}

.address {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: var(--white-color);
	letter-spacing: 0.5px;
}

@media (max-width: 768px) {
	.main-title {
		font-size: 42px;
	}

	.logo img {
		height: 60px;
	}

	.content {
		height: 70vh;
        display: flex;
        flex-direction: column;
        
	}

	.main-content {
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.main-title {
		font-size: 36px;
	}

	.logo img {
		height: 50px;
	}

	.cta-button {
		padding: 12px 24px;
		font-size: 13px;
	}
}
