:root {
	--primary-color: #0067a5;
	--primary-dark: #005a8f;
	--secondary-color: #d3ff3a;
	--light-color: #F5F9FA;
	--dark-color: #434750;
	--text-color: #455A64;
	--border-radius: 16px;
	--box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	--highlight-color: #d3ff3a;
	--blue-shadow: 0 0 10px rgba(0, 103, 165, 0.4);
	--blue-shadow-intense: 0 0 15px rgba(0, 103, 165, 0.7);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Montserrat', sans-serif;
	color: var(--text-color);
	background-color: #fff;
	line-height: 1.6;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: var(--primary-dark);
	transition: all 0.3s ease;
}

a:hover {
	color: var(--secondary-color);
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Header */
header {
	background-color: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	height: 40px;
	margin-right: 10px;
}

nav ul {
	display: flex;
	list-style: none;
}

nav ul li {
	margin-left: 25px;
}

nav ul li a {
	font-weight: 500;
	color: var(--dark-color);
	padding: 5px 10px;
	border-radius: 20px;
}

nav ul li a:hover, 
nav ul li a.active {
	color: white;
	background-color: var(--primary-color);
	box-shadow: 0 0 8px rgba(211, 255, 58, 0.4);
}

.mobile-menu-btn {
	display: none;
	font-size: 24px;
	background: none;
	border: none;
	color: var(--primary-dark);
	cursor: pointer;
	z-index: 1001;
}


@media (max-width: 992px) {
	.hero {
		height: 70vh;
	}
	
	.hero h1 {
		font-size: 2.2rem;
	}
	
	.hero p {
		font-size: 1.1rem;
	}
	
	nav ul {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: rgba(255, 255, 255, 0.98);
		flex-direction: column;
		padding: 80px 30px 30px;
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
		z-index: 999;
		overflow-y: auto;
	}
	
	nav ul.show {
		display: flex;
	}
	
	nav ul li {
		margin: 15px 0;
	}
	
	nav ul li a {
		font-size: 18px;
		padding: 12px 20px;
		display: block;
		text-align: center;
	}
	
	.mobile-menu-btn {
		display: block;
	}

	.book-now-fixed {
		bottom: 90px;
		right: 20px;
		padding: 12px 20px;
		font-size: 14px;
	}
	
	.friends-carousel {
		padding: 0 30px;
	}
	
	.footer-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
}

/* Фикс для кнопки меню на главной странице */
@media (max-width: 992px) {
  body.home-page .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  /* Сдвигаем кнопку меню вправо */
  body.home-page .mobile-menu-btn {
    order: 3; /* Перемещает кнопку в самый правый конец */
    margin-left: auto; /* Прижимает к правому краю */
    margin-right: 0;
    position: static !important; /* Убираем абсолютное позиционирование если есть */
    left: auto !important;
    right: auto !important;
  }
  
  /* Логотип остаётся слева */
  body.home-page .logo {
    order: 1;
  }
  
  /* Навигация (меню) - по центру или скрыта */
  body.home-page nav {
    order: 2;
  }
}

@media (max-width: 576px) {
  body.home-page .mobile-menu-btn {
    font-size: 24px; /* Размер иконки */
    padding: 8px; /* Увеличиваем область клика */
  }
}

/* Планшеты */
@media (max-width: 992px) {
  body.home-page nav ul {
    position: absolute !important;
    top: 60px !important;
    right: 20px !important;
    left: auto !important;
    bottom: auto !important;
    width: auto !important;
    background-color: rgba(255, 255, 255, 0.98) !important;
    border-radius: var(--border-radius) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
    padding: 15px !important;
    display: none !important;
    flex-direction: column !important;
    min-width: 180px;
    max-width: 250px;
    z-index: 1000 !important;
    overflow-y: auto;
    max-height: 80vh;
  }
  
  body.home-page nav ul.show {
    display: flex !important;
  }
  
  body.home-page nav ul li {
    margin: 8px 0 !important;
  }
  
  body.home-page nav ul li a {
    text-align: right !important;
    display: block !important;
    padding: 10px 15px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    width: 100%;
  }
}

/* Мобильные устройства */
@media (max-width: 576px) {
  body.home-page nav ul {
    top: 55px !important;
    right: 15px !important;
    padding: 12px !important;
    min-width: 160px;
    max-width: 220px;
  }
  
  body.home-page nav ul li a {
    padding: 8px 12px !important;
    font-size: 15px !important;
  }
}