@font-face {
	font-family: 'Quotus';
	src: url('../fonts/QuotusBold.woff2') format('woff2');
}
@font-face {
	font-family: 'QuotusThin';
	src: url('../fonts/QuotusThin.woff2') format('woff2');
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
	font-family: 'Roboto';
}

/* Общие стили */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Quotus', sans-serif;
	line-height: 1.6;
}

/* Контейнер */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.header {
	position: relative;
	z-index: 10;
	padding-block: 30px;
}

.header__top {
	padding: 20px 0;
	background-color: transparent;
	margin-bottom: 10px;
}

.header__top .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.header__logo {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.header__logo-img {
	width: 220px;
}

.header__actions {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-left: auto;
}

.header__search-btn {
	background: none;
	border: none;
	cursor: pointer;
}

.header__search-icon {
	width: 24px;
	height: 24px;
}

.header__search-form {
	display: none;
	position: absolute;
	right: 60px;
	top: 50%;
	transform: translateY(-50%);
}

.header__search-form.active {
	display: block;
}

.header__search-input {
	padding: 8px;
	width: 200px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 14px;
}

.header__cart-icon {
	width: 24px;
	height: 24px;
}

.header__bottom {
	padding: 15px 0;
	background-color: transparent;
}

.header__nav-list {
	display: flex;
	justify-content: center;
	list-style: none;
	gap: 130px;
}

.header__nav-link {
	color: #242424;
	text-decoration: none;
	font-size: 23px;
	text-transform: uppercase;
	font-weight: 700;
	font-family: 'Quotus';
}

.header__nav-link:hover {
	color: #fc6f56;
}

/* Конец стилей */

/* Основной контент */
.main {
	position: relative;
	padding: 100px 0;
}

.main__background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	background-color: #000000;
	clip-path: polygon(0% 0%, 100% 0%, 100% 74.25%, 0% 46.25%);
	z-index: 1;
}

.main__background-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.8; /* Для наложения фона */
}

.main__content {
	position: relative;
	z-index: 2;
	text-align: center;
}

.main__title {
	font-size: 48px;
	color: #fff;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.main__subtitle {
	font-size: 24px;
	color: #fff;
	margin-bottom: 40px;
}

.main__image {
	position: absolute;
	bottom: 0;
	right: 0;
	/* width: 788px; */
}

/* Конец основного контента */

/* Общие стили для секции */
.custom-section {
	top: -250px;
	position: relative;
	height: 1040px; /* Высота секции */
	overflow: hidden; /* Скрываем выходящие за пределы элементы */
	z-index: 5;
	max-width: 1570px;
	margin: 0 auto;
}

/* Фоновая картинка */
.background-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 85%;
	background-image: url('../images/header-bg.png');
	background-size: contain;

	background-position: center;
	z-index: 1; /* что фон находится позади других элементов */
	background-repeat: no-repeat;
}

/* Центральный контент */
.center-content {
	position: absolute;
	top: 38%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 2; /* Размещаем текст поверх фона */
}

.main__title {
	font-size: 35px;
	color: #000;
	margin: -50px;
	font-family: 'QuotusThin';
	font-weight: 100;
}

.main__subtitle {
	font-size: 150px;
	color: #fff;
	margin: 10px 0 0;
	white-space: nowrap;
	letter-spacing: 1px;
	line-height: 1.5;
	transform: scaleY(1.2);
}

/* Картинки слева и справа */
.side-images {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 2; /* Размещаем картинки поверх фона */
}

.left-image,
.right-image {
	width: 503px; /* Фиксированная ширина */
	height: auto; /* Сохраняем пропорции */
}

.left-image {
	position: relative;
	top: -150px;
	left: 347px;
}

.right-image {
	position: relative;
	right: 95px;
	top: -168px;
}

/* Картинка в нижнем правом углу */
.bottom-right-image {
	position: absolute;
	bottom: 0px;
	right: 0;
	z-index: 2; /* Размещаем картинку поверх фона */
}

.bottom-right-image img {
	width: 620px; /* Фиксированная ширина */
	height: auto; /* Сохраняем пропорции */
}

/* Best Travel*/
.layout {
	position: absolute;

	display: flex;
	max-width: 1200px;
	margin: -550px auto 0;
}

/* Левая сторона */
.layout__left {
	flex: 1;
	padding: 40px;
}

/* Правая сторона */
.layout__right {
	flex: 1;
	background-color: #fff;
}

.layout__title {
	font-size: 65px;
	font-weight: bold;

	color: #000;
	font-weight: 500;
}

.layout__subtitle {
	font-size: 75px;
	font-weight: normal;
	margin: 0 0 20px;
	color: #000;
	text-transform: uppercase;
	font-family: 'QuotusThin';
	padding-left: 25px;
	margin-top: -40px;
}

.layout__description {
	font-size: 21px;
	line-height: 1.5;
	margin: 0 0 30px;
	color: #777;
	font-weight: 400;
	font-family: 'QuotusThin';
}

.layout__button {
	padding: 12px 50px;
	background-color: #3acdd5;
	color: #fff;
	border: none;
	border-radius: 30px;
	font-size: 16px;
	cursor: pointer;
	box-shadow: 0 4px 6px rgb(0 0 0 / 47%);
	transition: all 0.3s ease;
}

.layout__button:hover {
	background-color: #2bb8c0;
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Best Travel*/

/* products*/

.products {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.products__title {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 20px;
	color: #333;
}

.products__description {
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 30px;
	color: #777;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.products__filters {
	margin-bottom: 40px;
}

.products__filter-button {
	padding: 10px 20px;
	margin: 0 10px;
	border: none;
	background-color: transparent;
	border-radius: 5px;
	font-size: 28px;
	color: #3acdd5;
	cursor: pointer;
	transition: all 0.3s ease;
}

.products__filter-button:hover {
	background-color: #3acdd5;
	color: #fff;
}

.products__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.products__item {
	background-color: #fff;
	padding: 20px;
	border-radius: 10px;
	/* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
}

.products__item-image {
	width: 100%;
	height: 200px;
	object-fit: contain;

	margin-bottom: 15px;
	font-family: 'Roboto';
}

.products__item-title {
	font-size: 14px;
	line-height: 1.4;
	color: #333;
	margin-bottom: 15px;
	font-family: 'Roboto';
	text-align: center;
}

.products__item-footer {
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
}

.products__item-price {
	font-size: 18px;
	font-weight: bold;
	color: #000;
	font-family: 'Roboto';
}

.products__item-cart {
	background-color: transparent;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 20px;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
}

.products__item-cart:hover {
	border-radius: 25px;
	border: 2px solid #3acdd5;
}

/* products*/

/* featured */
.featured {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 20px;
	text-align: center;
	font-family: 'Roboto';
}

.featured__title {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 20px;
	color: #333;
	text-transform: uppercase;
}

.featured__description {
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 30px;
	color: #777;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.featured__filters {
	margin-bottom: 40px;
}

.featured__filter-button {
	padding: 10px 20px;
	margin: 0 10px;
	background-color: transparent;
	border: none;
	border-radius: 5px;
	font-size: 28px;
	color: #3acdd5;
	cursor: pointer;
	transition: all 0.3s ease;
}

.featured__filter-button:hover {
	background-color: #3acdd5;
	color: #fff;
}

.featured__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.featured__item {
	background-color: #fff;
	padding: 20px;
	border-radius: 10px;
	text-align: left;
}

.featured__item-image {
	width: 100%;
	height: 200px;
	border-radius: 5px;
	margin-bottom: 15px;
}
.cover {
	width: 100%;
	height: 200px;
	object-fit: contain;
	border-radius: 5px;
	margin-bottom: 15px;
}

.featured__item-title {
	font-size: 14px;
	line-height: 1.4;
	color: #333;
	margin-bottom: 15px;
	text-align: center;
}

.featured__item-footer {
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
}

.featured__item-price {
	font-size: 18px;
	font-weight: bold;
	color: #000;
}

.featured__item-cart {
	background-color: transparent;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 20px;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
}

.featured__item-cart:hover {
	border-radius: 25px;
	border: 2px solid #3acdd5;
}

.featured__see-more {
	display: block;
	margin: 40px auto 0;
	padding: 12px 40px;
	background-color: #3acdd5;
	color: #fff;
	border: none;
	border-radius: 30px;
	font-size: 16px;
	cursor: pointer;
	box-shadow: 0 4px 6px rgb(0 0 0 / 47%);
	transition: all 0.3s ease;
}

.featured__see-more:hover {
	background-color: #2bb8c0;
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
/* featured*/

/* newsletter*/
.newsletter {
	width: 100%;
	height: 1200px;
	background-image: url(../images/fon_bg.png);
	background-repeat: no-repeat;
	/* background-size: cover; */
	background-position: center;
	margin: 0 auto;
	position: relative;
}
.newsletter_fon {
	position: relative;
	display: flex;
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 0;
	top: 50%;
	transform: translateY(-50%);
}

.newsletter__left {
	flex: 1;
	padding: 40px;
}

.newsletter__right {
	flex: 1;
}

.newsletter__title {
	font-size: 45px;
	font-weight: bold;
	margin: 0 0 10px;
	color: #fff;
	font-family: 'Quotus';
}

.newsletter__subtitle {
	font-size: 40px;
	font-weight: normal;
	margin: -30px 10px 20px;
	color: #fff;
	font-family: 'QuotusThin';
}

.newsletter__description {
	font-size: 16px;
	line-height: 1.5;
	margin: 0 0 30px;
	color: #fff;
	max-width: 500px;
	font-family: 'Roboto';
	font-weight: 300;
}

.newsletter__buttons {
	display: flex;
	align-items: center;
	gap: 40px;
	max-width: 480px;
	text-transform: uppercase;
}

.newsletter__input {
	padding: 12px 50px;
	background-color: #fff;
	color: #000;
	border: 1px solid #ccc;
	border-radius: 30px;
	font-size: 16px;
	flex: 1;
	outline: none;
}

.newsletter__input::placeholder {
	color: #999;
}

.newsletter__join {
	padding: 12px 24px;
	background-color: #3acdd5;
	color: #fff;
	border: none;
	border-radius: 30px;
	font-size: 16px;
	cursor: pointer;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.newsletter__join:hover {
	background-color: #2bb8c0;
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
/* newsletter*/

/* Стили для подвала */
.footer {
	background-color: #ffffff;
	color: #fff;
}

.footer__top {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	padding-bottom: 40px;
	padding-left: 150px;
}

.footer__section {
	flex: 1;
	margin: 0 20px;
}

.footer__section-title {
	font-size: 20px;
	font-weight: bold;
	color: #000;
}

.footer__list {
	list-style: none;
	padding: 0;
}

.footer__list-item {
	font-size: 14px;
	margin-bottom: 10px;
	color: #000;
	cursor: pointer;
	transition: color 0.3s ease;
}

.footer__list-item:hover {
	color: #3acdd5;
}

.footer__bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 0;
	text-align: center;
}

.footer__socials {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.footer__social-link img {
	width: 33px;
}

.footer__social-link:hover {
	color: #3acdd5;
}
