* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Segoe UI", Arial, sans-serif;
	/* background: radial-gradient(circle at top, #121b3a, #050814); */
	background-color: #5a2c82;
	color: #ffffff;
	padding: 0;
}

.logo_nav {
	background-color: #3f1f66;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 5px 5px 5px 5px;
	left: 35px;
}

.logo1 {
	height: 70px;
}

.nav_list {
	display: flex;
	list-style: none;
	gap: 30px;
	padding-left: 60px;
}

.nav_list li a {
	text-decoration: none;
	font-size: 20px;
	color: #ffffff;
	font-weight: bold;
	transition: color 0.3s;
}

.nav_list li a:hover {
	color: #fff100;
}

.page-header {
	text-align: center;
	margin-bottom: 40px;
}

.page-header h1 {
	font-size: 36px;
	letter-spacing: 1px;
}

.page-header p {
	margin-top: 10px;
	color: #c9c9c9;
}

.price-section {
	max-width: 900px;
	margin: 0 auto 50px;
	background: #0b1230;
	border-radius: 16px;
	padding: 30px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

.price-table {
	width: 100%;
	border-collapse: collapse;
}

.price-table thead {
	background: #f5a623;
	color: #000;
}

.price-table th,
.price-table td {
	padding: 16px;
	text-align: center;
}

.price-table tbody tr {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-table tbody tr:hover {
	background: rgba(255, 255, 255, 0.05);
}

.weekend {
	background: rgba(245, 166, 35, 0.1);
	font-weight: 600;
}

.rules {
	max-width: 900px;
	margin: 0 auto;
	background: #0b1230;
	border-radius: 16px;
	padding: 30px;
}

.rules h2 {
	margin-bottom: 15px;
	color: #f5a623;
}

.rules ul {
	list-style: none;
}

.rules li {
	margin-bottom: 10px;
	padding-left: 20px;
	position: relative;
}

.rules li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: #f5a623;
}
/* ====== ADAPTIVE ====== */

.table-wrapper {
	width: 100%;
	overflow-x: auto;
}

/* Планшети */
@media (max-width: 900px) {
	.price-section,
	.rules {
		margin: 20px;
		padding: 20px;
	}

	.price-table th,
	.price-table td {
		padding: 12px;
		font-size: 14px;
	}

	.page-header h1 {
		font-size: 28px;
	}
}

/* Мобільні */
@media (max-width: 600px) {
	.logo_nav {
		flex-direction: column;
		align-items: center;
		padding: 10px;
	}

	.nav_list {
		padding-left: 0;
		gap: 15px;
	}

	.nav_list li a {
		font-size: 16px;
	}

	.logo1 {
		height: 55px;
		margin-bottom: 10px;
	}

	.page-header h1 {
		font-size: 24px;
	}

	.page-header p {
		font-size: 14px;
	}

	.price-section,
	.rules {
		padding: 15px;
		border-radius: 12px;
	}

	.price-table th,
	.price-table td {
		font-size: 13px;
		padding: 10px;
		white-space: nowrap;
	}

	.rules li {
		font-size: 14px;
	}
}

.holiday-notice {
	max-width: 900px;
	margin: 100px auto;
	padding: 20px 25px;
	background: #3f1f66;
	border: 2px solid #fff100;
	border-radius: 14px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.holiday-notice h3 {
	font-size: 24px;
	color: #fff100;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.holiday-notice .holiday-text {
	font-size: 18px;
	color: #ffffff;
	font-weight: 500;
}
