/* === Базовая сброска стилей === */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* === Базовые стили страницы === */
html,
body {
	height: 100%;
	font-family: 'Helvetica Neue', sans-serif;
	background: black;
	color: white;
}

/* === Секция hero (главный экран) === */
.hero {
	height: 100vh;
	position: relative;
	overflow: hidden;
	margin-bottom: clamp(12px, 2.5vw, 20px);
}

/* === Контент внутри hero-блока === */
.hero-content {
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	/* padding: 0 clamp(12px, 5vw, 64px); */
}

.hero-content h1 {
	font-size: clamp(1.5rem, 5vw, 3rem);
	margin-bottom: 40px;
}

/* === Логотип в навигации === */
.logo {
	font-size: clamp(1rem, 2vw, 1.8rem);
	font-weight: bold;
}

/* === Ссылки в навигации === */
.nav-links {
	display: flex;
	gap: clamp(12px, 4vw, 36px);
	/* адаптивный промежуток между ссылками */
	list-style: none;
	flex-wrap: wrap;
	max-width: 100%;
	overflow: hidden;
}

.nav-links li a {
	color: white;
	font-size: clamp(0.85rem, 2.5vw, 1.1rem);
	/* адаптивный размер текста */
	text-decoration: none;
	transition: color 0.3s;
}

.nav-links li a:hover {
	color: #aaa;
}

/* === Навигационная панель === */
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: clamp(12px, 2vw, 24px) clamp(16px, 5vw, 64px);
	/* адаптивные отступы */
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 100;
	background: transparent;
}

/* === Контактный блок внутри hero === */
.contact-inside-hero {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}

.contact-inside-hero p {
	margin: 6px 0;
	font-size: clamp(1rem, 2vw, 1.2rem);
	/* адаптивный текст */
}

.contact-inside-hero a {
	color: white;
	text-decoration: none;
}

/* === Соцсети в hero и footer === */
.social-icons {
	margin-top: 20px;
	filter: invert(1);
	/* инвертирует цвет полностью */
}

.social-icons a {
	margin: 0 10px;
}

.social-icons img {
	width: 28px;
	height: 28px;
	transition: transform 0.3s;
	filter: invert(1);
}

.social-icons a:hover img {
	transform: scale(1.1);
}

/* === Секция "Обо мне" === */
.about {
	background-color: #000;
	padding: clamp(40px, 8vw, 100px) 20px;
	/* адаптивный верхний/нижний отступ */
}

.about-container.wide {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 60px;
	margin: 0 auto;
	max-width: 100%;
	overflow-x: hidden;
}

.about-photo-rect {
	width: clamp(280px, 40vw, 480px);
	max-height: 600px;
	object-fit: cover;
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.about-text {
	max-width: 600px;
}

.about-text h2 {
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	margin-bottom: 20px;
}

.about-text p {
	font-size: clamp(1rem, 2vw, 1.2rem);
	line-height: 1.6;
}

/* === Секция "Портфолио" === */
.portfolio {
	width: 100%;
	margin: 0;
	padding: 0;
}

.shoot-type {
	height: 100vh;
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	transition: background-image 1s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: clamp(12px, 2.5vw, 20px);
}

.shoot-type h2 {
	font-size: clamp(2rem, 5vw, 3rem);
	color: #fff;
	/*text-shadow: 0 2px 10px rgba(0,0,0,0.7);*/
	margin: 0;
}

.shoot-type button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: clamp(0.9rem, 2.5vw, 1.6rem);
	color: #fff;
	background: rgba(0, 0, 0, 0.3);
	border: none;
	cursor: pointer;
	z-index: 3;
	padding: clamp(6px, 1.5vw, 10px) clamp(10px, 3vw, 15px);
	/* адаптивные отступы */
	transition: background 0.3s ease;
}

.shoot-type button:hover {
	background: rgba(0, 0, 0, 0.6);
}

.shoot-type .prev {
	left: 20px;
}

.shoot-type .next {
	right: 20px;
}

.shoot-overlay {
	padding: clamp(16px, 4vw, 30px) clamp(24px, 6vw, 60px);
	border-radius: 12px;
	text-align: center;
	z-index: 2;
	font-size: clamp(1rem, 2.5vw, 2rem);
}

/* === Секция FAQ — минималистичный стиль === */
.faq {
	background-color: #fff;
	color: #000;
	padding: clamp(40px, 6vw, 80px) 20px;
	font-family: "Helvetica Neue", Arial, sans-serif;
}

.faq-container {
	max-width: 1150px;
	margin: 0 auto;
}

.faq h2 {
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 600;
	margin-bottom: 40px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-bottom: 10px;
}

/* блок вопроса */
.faq-item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding: 16px 0;
	margin-bottom: 5px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.faq-item:hover {
	background-color: rgba(0, 0, 0, 0.03);
}

/* заголовки вопросов */
.faq-item h3 {
	font-size: clamp(1rem, 2vw, 1.15rem);
	font-weight: 500;
	color: #111;
	line-height: 1.4;
	margin: 0;
	position: relative;
	padding-right: 25px;
}

/* плюс/минус */
.faq-item h3::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 0;
	font-size: 1.2rem;
	color: #555;
	transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active h3::after {
	content: '–';
	color: #000;
}

/* текст ответа */
.faq-item p {
	margin-top: 10px;
	font-size: 0.95rem;
	line-height: 1.6;
	color: #444;
	display: none;
}

.faq-item.active p {
	display: block;
	animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-2px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* адаптив */
@media (max-width: 768px) {
	.faq {
		padding: 40px 15px;
	}

	.faq-item {
		padding: 14px 0;
	}

	.faq h2 {
		margin-bottom: 30px;
	}
}

/* === Секция "Контакты" === */
.contact-section {
	text-align: center;
	padding: 
		clamp(18.75px, 3vw, 37.5px)   /* верх */
		20px                         /* лево/право */
		clamp(14px, 2.25vw, 28px);   /* низ (ещё −25%) */
	background-color: #000;
	color: #fff;
}

.contact-section h2 {
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 600;
	margin-bottom: 15px;
	letter-spacing: 0.5px;
}

.contact-section p {
	font-size: clamp(1rem, 2.2vw, 1.25rem);
	color: #ccc;
	margin-bottom: 40px;
}

.contact-icons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 35px;
}

.contact-icons a img {
	width: 35px;
	height: 35px;
	filter: brightness(0) invert(1);
	/* белые иконки на чёрном фоне */
	transition: transform 0.3s ease, filter 0.3s ease;
}

.contact-icons a:hover img {
	transform: scale(1.2);
	filter: brightness(0) invert(0.7);
	/* лёгкий затемнённый эффект при наведении */
}

/* Адаптив */
@media (max-width: 768px) {
	.contact-section {
		padding: 40px 15px;
	}

	.contact-icons {
		gap: 25px;
	}

	.contact-icons a img {
		width: 30px;
		height: 30px;
	}
}

/* === Подвал сайта === */
.site-footer {
	background-color: #000;
	color: #666;
	text-align: center;
	padding: clamp(10px, 2vw, 20px) clamp(8px, 2vw, 10px);
	font-size: clamp(0.75rem, 1.5vw, 0.85rem);
	letter-spacing: 0.5px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer span {
	color: #999;
	font-weight: 500;
}

/* === Медиа-запросы для адаптивности === */
@media (max-width: 600px) {
	.nav-links {
		gap: clamp(8px, 4vw, 16px);
		/* адаптивный gap */
	}

	.nav-links li a {
		font-size: clamp(0.75rem, 2vw, 0.85rem);
	}

	.logo {
		font-size: clamp(0.85rem, 2vw, 1rem);
	}
}

@media (max-width: 480px) {
	.nav-links {
		gap: clamp(4px, 3vw, 8px);
		flex-wrap: wrap;
	}

	.nav-links li a {
		font-size: clamp(0.7rem, 2vw, 0.75rem);
	}

	.logo {
		font-size: clamp(0.75rem, 2vw, 0.85rem);
	}
}

@media (max-width: 768px) {
	.about-container.wide {
		flex-direction: column;
		text-align: center;
	}

	.about-text {
		max-width: 100%;
		text-align: start;
	}
}

@media (max-width: 600px) {
	.contact-inside-hero p {
		font-size: clamp(0.5rem, 1vw, 0.6rem);
	}
}

.shoot-type {
	position: relative;
	overflow: hidden;
}

.shoot-type.switching {
	animation: ultraSoft 0.35s ease;
}

@keyframes ultraSoft {
	0% {
		filter: blur(1px) brightness(0.97);
	}

	100% {
		filter: blur(0px) brightness(1);
	}
}

.seo-hidden {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}