body {
	background: #01081F;
	background: radial-gradient(circle,rgba(1,8,31,1) 0%,rgba(20,32,69,1) 100%);
	font-family: "Inter","Noto Sans","Noto Sans SC",sans-serif;
	font-weight: 400;
	line-height: 1.6;
	color: #fff;
}

h1,h2,h3,h4,h5,h6 {
	font-family: "Inter","Noto Sans","Noto Sans SC",sans-serif;
	font-weight: 600;
	line-height: 1.3;
	margin: 1.2em 0 .6em;
}

.navbar .nav-link {
	font-size: 1.5rem;
	position: relative;
	padding: .5rem .75rem;
	font-weight: 500;
	letter-spacing: .02em;
	text-transform: none;
	color: rgba(255,255,255,.9);
	transition: color .5s ease;
}

.navbar .nav-link .bi {
	font-size: 1.9rem;
	margin-right: .25rem;
	transform: translateY(1px);
	opacity: .9;
}

.navbar .nav-link:hover,.navbar .nav-link:focus {
	color: #ff1361;
	transition: color .5s ease;
	text-decoration: none;
}

@media(min-width:992px) {
	.navbar-nav>.nav-item+.nav-item {
		margin-left: 1.85rem;
	}
}

.bg1 {
	background: linear-gradient(rgba(0,0,0,.8),rgba(0,0,0,.5)),url(/assets/images/rooms/room1.jpg) top center/cover;
}

.bg2 {
	background: linear-gradient(rgba(0,0,0,.8),rgba(0,0,0,.5)),url(/assets/images/rooms/room5.jpg) top center/cover;
}

.bg-black {
	background: #000;
}

.navbar {
	background-color: transparent!important;
}

.animate-charcter {
	text-transform: uppercase;
	background-image: linear-gradient(-225deg,#231557 0%,#3a1b7a 15%,#ff1361 35%,#ffcc00 50%,#ff1361 65%,#7a1b4a 85%,#231557 100%);
	background-size: 400% 100%;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	animation: textclip 4s ease-in-out infinite;
	display: inline-block;
	font-size: 8vw;
	line-height: 1.1;
	margin: 0 auto;
}

@keyframes textclip {
	0% {
		background-position: 20% 50%;
	}

	50% {
		background-position: 80% 50%;
	}

	100% {
		background-position: 20% 50%;
	}
}

.arcade-text {
	text-shadow: 0 0 2px #000,2px 1px 0 #000,4px 2px 0 #000,6px 3px 0 #000,8px 4px 0 #000,10px 5px 0 #000,12px 6px 5px rgba(0,0,0,.7);
}

.contact-wrap {
	background: radial-gradient(1200px 600px at -10% -10%,#1a1f37 20%,transparent 60%),radial-gradient(800px 500px at 110% 110%,#14253b 20%,transparent 60%);
	box-shadow: 0 20px 40px rgba(0,0,0,.35);
	overflow: hidden;
	position: relative;
	isolation: isolate;
}

.contact-wrap::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(1px 1px at 20% 30%,rgba(255,255,255,.06) 50%,transparent 51%) repeat,radial-gradient(1px 1px at 70% 60%,rgba(255,255,255,.05) 50%,transparent 51%) repeat;
	background-size: 40px 40px,60px 60px;
	mix-blend-mode: soft-light;
	pointer-events: none;
}

.contact-left {
	background: linear-gradient(140deg,rgba(108,168,255,.12),rgba(196,224,63,.078));
	padding: clamp(24px,4vw,48px);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 18px;
}

.contact-eyebrow {
	letter-spacing: .12em;
	text-transform: uppercase;
	font-weight: 800;
}

.contact-title {
	font-size: clamp(32px,3.6vw,44px);
	font-weight: 800;
	line-height: 1.1;
	margin: 0;
}

.contact-address {
	font-size: clamp(20px,2.5vw,29px);
	color: #d7def2;
}

.contact-right {
	position: relative;
	height: 100%;
}

.map-shell {
	height: 100%;
	width: 100%;
	border-left: 1px dashed rgba(255,255,255,.08);
	background: #0b0e1a;
}

#map {
	height: 100%;
	width: 100%;
	border-radius: 0;
	filter: saturate(1.05) contrast(1.02);
}

.map-badge {
	position: absolute;
	top: 18px;
	right: 18px;
	background: rgba(15,18,32,.6);
	color: #fff;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 12px;
	padding: 10px 12px;
	backdrop-filter: blur(8px);
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.ping {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 0 rgba(108,168,255,.6);
	animation: ping 1.8s infinite;
}

@keyframes ping {
	0% {
		box-shadow: 0 0 0 0 rgba(108,168,255,.6);
	}

	70% {
		box-shadow: 0 0 0 12px rgba(108,168,255,0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(108,168,255,0);
	}
}

.square {
	aspect-ratio: 1/1;
	width: 100%;
}

@media(max-width:991.98px) {
	.square {
		aspect-ratio: auto;
		min-height: 360px;
	}
}

.block-shadow {
	position: relative;
}

.block-shadow-bottom::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -40px;
	height: 40px;
	background: linear-gradient(to bottom,rgba(0,0,0,.6),rgba(0,0,0,0));
	pointer-events: none;
	z-index: 5;
}

.block-shadow-top::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -40px;
	height: 40px;
	background: linear-gradient(to top,rgba(0,0,0,.6),rgba(0,0,0,0));
	pointer-events: none;
	z-index: 5;
}

.romantic-halls {
	background: linear-gradient(to bottom,rgba(41,20,69,1) 0%,rgba(69,20,39,1) 50%,rgba(69,20,56,1) 100%);
	position: relative;
}

.romantic-halls::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -50px;
	height: 50px;
	background: linear-gradient(to bottom,transparent 0%,rgba(41,20,69,1) 100%);
}

.romantic-halls::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 50px;
	background: linear-gradient(to bottom,rgba(69,20,56,1) 0%,rgba(69,20,39,.7) 80%,transparent 100%);
}

.pink {
	color: #ff1361;
}

.blue {
	color: #758fd1;
}

.hall-card {
	background: rgba(12,16,32,.6);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(0,0,0,.35);
	display: flex;
	flex-direction: column;
	transition: transform .25s ease,box-shadow .25s ease,border-color .25s ease;
	backdrop-filter: blur(6px);
}

.hall-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 48px rgba(0,0,0,.45);
	border-color: rgba(255,255,255,.16);
}

.hall-media {
	position: relative;
	aspect-ratio: 16/9;
	background: #0b0e1a;
}

.hall-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hall-body {
	padding: 18px 18px 20px;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}

.hall-title {
	font-size: 1.25rem;
	margin: 0 0 .35rem;
	font-weight: 700;
}

.hall-desc {
	color: #c8d0e6;
	margin-bottom: .9rem;
	--desc-lines: 3;
	line-height: 1.5;
	min-height: calc(var(--desc-lines)*1.5em);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: var(--desc-lines);
	overflow: hidden;
}

.hall-subtitle {
	margin-top: .25rem;
	margin-bottom: .35rem;
	font-weight: 700;
	font-size: .95rem;
	color: #eaefff;
	opacity: .9;
}

.icon-list {
	list-style: none;
	padding: 0;
	margin: 0 0 .75rem;
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
	gap: .5rem .9rem;
}

.icon-list li {
	display: flex;
	align-items: flex-start;
	gap: .5rem;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: anywhere;
}

.icon-list .bi {
	flex: 0 0 auto;
	font-size: 1rem;
	opacity: .9;
}

@media(max-width:767.98px) {
	.icon-list {
		grid-template-columns: 1fr;
	}
}

.chips {
	display: flex;
	flex-wrap: wrap;
	gap: .45rem;
}

.chip {
	display: inline-flex;
	align-items: center;
	padding: .3rem .6rem;
	border-radius: 999px;
	background: linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
	border: 1px solid rgba(255,255,255,.12);
	font-size: .85rem;
	color: #e9efff;
	white-space: nowrap;
}

.button-booking {
	display: block;
	font-size: 18px;
	color: #fff;
	text-decoration: none;
	background: #F426A9;
	width: auto;
	height: 57px;
	font-weight: 700;
	position: relative;
	margin-left: 15px!important;
	margin-top: auto;
}

.button-booking:hover, .button-booking:active {
	text-decoration: none;
	color: #fff;
}

.button-booking::before {
	content: "";
	position: absolute;
	width: 20px;
	height: 100%;
	left: -15px;
	top: 0;
	background: url(/static/images/border-pink.png);
}

.button-booking::after {
	content: "";
	position: absolute;
	height: 100%;
	left: 0;
	top: 0;
	border-left: 5px dotted #fff;
}

:root {
	--accent: #32d0ff;
	--accent-2: #00ffc8;
	--text: #e8eef6;
	--muted: #b7c0cc;
	--card-bg: rgba(14,17,24,.62);
	--card-bd: rgba(173,216,230,.18);
}

.faq-section {
	background: linear-gradient(rgba(0,0,0,.82),rgba(0,0,0,.55)),url('/static/images/rooms/room5.jpg') top center/cover no-repeat;
	color: var(--text);
	padding: 64px 0;
}

.faq-title {
	text-align: center;
	font-weight: 800;
	letter-spacing: .3px;
	margin-bottom: 28px;
	text-shadow: 0 2px 18px rgba(0,0,0,.6);
}

.faq-card {
	padding: 0!important;
}

.accordion-item:first-of-type {
	border-top-left-radius: .45rem;
	border-top-right-radius: .45rem;
}

.accordion-item:last-of-type {
	border: 1px solid!important;
	border-bottom-left-radius: .45rem!important;
	border-bottom-right-radius: .45rem!important;
}

.accordion-item {
	padding: 0!important;
	background: #000!important;
	color: #fff;
	margin-top: 5px;
}

.accordion-header {
	margin: 0!important;
}

.accordion-button {
	margin: 0!important;
	border: 0!important;
	border-radius: 0!important;
	box-shadow: none!important;
	background: #000!important;
	color: #fff;
}

.accordion-button:not(.collapsed) {
	box-shadow: none!important;
	color: #fff;
	font-weight: bold;
}

.accordion-collapse {
	margin: 0!important;
	border: 0!important;
}

.accordion-body {
	margin: 0!important;
	border: 0!important;
}

.accordion-item+.accordion-item .accordion-button {
	border-top: 1px solid rgba(255,255,255,.06);
}



.addon{
  --right-width: 140px; 
  display: grid;
  grid-template-columns: 72px minmax(0,1fr) var(--right-width);
  grid-template-areas: "img content right";
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .15s ease, border-color .2s ease;
}
.addon:hover{ transform: translateY(-2px); border-color:rgba(255,255,255,.2) }

.addon img,
.addon .addon-img{
  grid-area: img;
  width:72px; height:72px; object-fit:cover; border-radius:12px;
}


.addon .content{
  grid-area: content;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.addon .right{
  grid-area: right;
  width: var(--right-width);
  gap: 8px;
  white-space: nowrap;
}
.addon .price{ display:inline-flex; align-items:baseline; gap:4px; white-space:nowrap; }
.addon .amount, .addon .valute{ line-height:1; font-weight:600; }


.btn-qty{
  width:28px; height:28px; border:none; border-radius:8px;
  background:rgba(255,255,255,0.08); color:#fff; font-size:18px; cursor:pointer;
  transition: background .2s;
}
.btn-qty:hover{ background:rgba(255,255,255,0.2); }
.addon-count, .hours {
  width: 36px;
  padding: 0;
  background: transparent;
  color: #fff;
  border: none;
  font-weight: 600;
  text-align: center;            
  appearance: textfield;         
  -moz-appearance: textfield;
}


.addon-count::-webkit-outer-spin-button,
.addon-count::-webkit-inner-spin-button,
.hours::-webkit-outer-spin-button,
.hours::-webkit-inner-spin-button
 {
  -webkit-appearance: none;
  margin: 0;
}
.addon-check-right .form-check-input{ width:18px; height:18px; cursor:pointer; }


@media (max-width: 576px){
  .addon{
    grid-template-columns: 56px 1fr;         
    grid-template-areas:
      "img content"                          
      "img controls";                        
    align-items: start;
    gap: 10px 12px;
  }

  .addon img,
  .addon .addon-img{ width:56px; height:56px; }

  .addon .content{
    grid-area: content;
    min-width: 0;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  
  .addon .right{
    grid-area: controls;                     
    width: 100%;
    gap: 8px;
  }
  .addon .right .price{
    margin-left: auto;                       
    white-space: nowrap;
  }

  
  .btn-qty{ width:26px; height:26px; font-size:16px; }
  .addon-count{ width:34px; }
}




.total-box{ position:sticky; top:16px; }

.map-shell{ height:100%; min-height:320px; border:1px dashed rgba(255,255,255,.08); border-radius:16px; overflow:hidden; }
#map{ height:100%; width:100%; filter:saturate(1.05) contrast(1.02); }

.chip{ display:inline-flex; align-items:center; gap:6px; padding:.35rem .6rem; border-radius:999px; font-size:.85rem; border:1px solid rgba(255,255,255,.14); background:rgba(255,255,255,.06) }

.glass{
	background: var(--card-bg);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 22px; backdrop-filter: blur(6px);
	box-shadow: 0 12px 32px rgba(0,0,0,.35);
}
