/* === БАЗОВЫЙ ФОН === */
html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', Arial, sans-serif;
	background: linear-gradient(135deg, #fde09a 0%, #c3d2ff 100%);
	color: #1c1c1c;
	text-align: center;
}

/* Контейнер, чтобы футер всегда был внизу */
#main {
	min-height: calc(100vh - 160px); /* высота окна минус футер */
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding-bottom: 40px;
}

/* === ЛОГОТИП === */
.logo_top {
	margin-top: 50px;
	width: 140px;
}

/* === ЗАГОЛОВОК === */
.hero_title {
	font-size: 26px;
	font-weight: 600;
	margin-top: 40px;
	line-height: 1.4;
	color: #1c1c1c;
}

/* === КНОПКИ === */
.buttons {
	margin: 50px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.buttons a {
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	padding: 12px 28px;
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.3s ease;
	min-width: 230px;
	box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* Кнопка 1 */
.button_offer_text1 {
	background: linear-gradient(135deg, #ffb347 0%, #ffd773 100%);
	color: #000;
}
.button_offer_text1:hover {
	background: linear-gradient(135deg, #ffc65c 0%, #ffe694 100%);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(255,179,71,0.3);
}

/* Кнопка 2 */
.button_offer_text2 {
	background: #ffb347;
	color: #000;
}
.button_offer_text2:hover {
	background: #ffc65c;
	transform: translateY(-3px);
	box-shadow: 0 6px 18px rgba(255,179,71,0.3);
}

/* Кнопка 3 */
.button_offer_text3 {
	border: 1px solid #000;
	color: #000;
	background: transparent;
}
.button_offer_text3:hover {
	background: #000;
	color: #fff;
	transform: translateY(-3px);
}

/* === ПОДВАЛ === */
#footer {
	width: 100%;
	background: #f0f0f0;
	padding: 20px 0 15px;
	box-sizing: border-box;
	margin-top: auto; /* чтобы прижимался к низу */
}

.footer_info {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.logo_footer {
	flex: 0 0 auto;
	margin-top: 10px;
}
.logo_footer img {
	width: 120px;
}

.footer_text {
	flex: 1;
	text-align: center;
}

.footer_text p {
	color: #000;
	font-size: 12px;
	margin: 4px 0;
	line-height: 1.5;
}

.footer_text a {
	color: #000;
	text-decoration: underline;
}
.footer_text a:hover {
	color: #ff9e00;
}

/* === АДАПТИВ === */
@media screen and (max-width: 640px) {
	.hero_title { font-size: 20px; }
	.buttons a {
		font-size: 14px;
		padding: 10px 20px;
		min-width: 200px;
	}
	.logo_footer img { width: 100px; }
}