/**
 * Footer Styles
 * Адаптивный footer для темы pro100makeup
 */

/* CSS переменные для цветов */
:root {
	--footer-bg: #FFF0F5;
	--footer-text: #2c3e50;
	--footer-link: #FF69B4;
	--footer-link-hover: #FF1493;
	--footer-title-color: #2c3e50;
	--footer-border: rgba(255, 105, 180, 0.2);
	--footer-shadow: 0 -4px 20px rgba(255, 105, 180, 0.1);
	--footer-icon-bg: #FFB6C1;
	--footer-icon-hover: #FF69B4;
}

/* Основной контейнер футера */
.site-footer {
	background-color: var(--footer-bg);
	padding: 0;
	margin-top: 4rem;
	box-shadow: var(--footer-shadow);
}

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

/* Контент футера - сетка из 4 колонок */
.footer-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	margin-bottom: 2.5rem;
}

/* Колонки футера */
.footer-column {
	display: flex;
	flex-direction: column;
}

/* Бренд колонка */
.footer-brand {
	align-items: flex-start;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.footer-logo svg {
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.footer-logo:hover svg {
	transform: scale(1.1);
}

.footer-brand-name {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--footer-link);
	text-decoration: none;
}

.footer-description {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--footer-text);
	margin: 0;
	max-width: 100%;
}

/* Заголовки колонок */
.footer-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--footer-title-color);
	margin: 0 0 1rem 0;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--footer-border);
}

/* Списки ссылок */
.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-links li {
	margin: 0;
}

.footer-links a {
	color: var(--footer-text);
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
	padding-left: 0;
}

.footer-links a::before {
	content: '→';
	color: var(--footer-link);
	margin-right: 0.5rem;
	opacity: 0;
	transform: translateX(-10px);
	transition: all 0.3s ease;
	display: inline-block;
}

.footer-links a:hover {
	color: var(--footer-link-hover);
	padding-left: 0.5rem;
}

.footer-links a:hover::before {
	opacity: 1;
	transform: translateX(0);
}

/* Колонка подписки */
.footer-subscribe-text {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--footer-text);
	margin: 0 0 1.25rem 0;
}

/* Иконки соцсетей */
.footer-social-icons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.footer-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: var(--footer-icon-bg);
	transition: all 0.3s ease;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(255, 105, 180, 0.2);
}

.footer-social-icon svg {
	width: 24px;
	height: 24px;
	transition: transform 0.3s ease;
}

.footer-social-icon:hover {
	background-color: var(--footer-icon-hover);
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(255, 105, 180, 0.4);
}

.footer-social-icon:hover svg {
	transform: scale(1.1);
}

/* Нижняя часть футера */
.footer-bottom {
	border-top: 1px solid var(--footer-border);
	padding-top: 1.5rem;
	margin-top: 2rem;
}

.footer-copyright {
	text-align: center;
}

.footer-copyright p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--footer-text);
	opacity: 0.8;
}

/* Планшеты и выше (768px+) */
@media (min-width: 768px) {
	.footer-container {
		padding: 4rem 2rem 2rem;
	}

	.footer-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}

	.footer-description {
		max-width: 600px;
	}
}

/* Десктопы (1024px+) */
@media (min-width: 1024px) {
	.footer-container {
		padding: 5rem 2rem 2rem;
	}

	.footer-content {
		grid-template-columns: repeat(4, 1fr);
		gap: 3rem;
	}

	.footer-brand {
		grid-column: 1;
	}

	.footer-description {
		max-width: 100%;
	}
}

/* Большие экраны (1200px+) */
@media (min-width: 1200px) {
	.footer-container {
		padding: 5rem 0 2rem;
	}
}

