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

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

body {
	font-family: "Dosis", sans-serif !important;
	background-color: #f5f5f5;
	color: #333;
}

.loading-spinner {
	border: 5px solid #d4d4d4;
  border-radius: 50%;
  border-top: 5px solid #ff0000;
  width: 40px;
  height: 40px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

button {
	font-family: "Dosis", sans-serif !important;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}



/* Date Banner */
.date-banner {
	background-color: #ff0000;
	color: white;
	position: sticky;
	top: 0;
	transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
	height:0;
	padding:0;
}

.date-banner.show {
	transform: translateY(0);
    opacity: 1;
	height:auto;
	padding:6px 0;
	z-index:999;
}

.date-selector {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	transform: translateY(10px);
	position: sticky;
    top: 132px;
    z-index: 999;
}

.date-nav-btn {
	background: none;
	border: none !important;
	color: white;
	font-size: 24px;
	cursor: pointer;
	padding: 10px 17px;
	border-radius: 50%;
	transition: background-color 0.3s;
}

.date-banner button.date-nav-btn {
    padding-bottom: 0;
}

.date-nav-btn:hover, .date-nav-btn:focus {
	background-color: transparent;
}

.date-info {
	text-align: center;
	transform: translateY(-10px);
}

.select-date-label {
	font-size: 14px;
	font-weight: 700;
	opacity: 0.5;
}

.selected-date {
	font-size: 20px;
	font-weight: 700;
	cursor: pointer;
}

.selected-date::after {
    content: url('/wp-content/uploads/2025/08/fi_2886665.svg');
    margin-left: 10px;
}

/* Instructions */
.instructions {
	background-color: #000;
	color: white;
	padding: 30px 0;
	text-align: center;
}

.instructions a {
    color: #fff;
    text-decoration: underline;
}

.instructions p {
	font-size: 18px;
	margin:0;
}

.instructions h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
	margin-bottom: 10px;
}

/* Main Content */
.main-content {
	padding: 20px 0;
	position: relative;
}

.section-title {
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #767676;
}

/* Date Selection Section */
.date-selection-section {
	margin-bottom: 25px;
}

.date-selector-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	background-color: transparent;
	color: white;
	padding: 15px;
	border-radius: 8px;
	max-width: 450px;
	margin: 0 auto;
	border: 1px solid #E1E1E1;
}

.date-display {
	font-size: 18px;
	font-weight: 700;
	background-color: transparent;
	color: #ff0000;
	border: none !important;
	padding: 0 !important;
}

.date-display:hover, .date-display:focus {
    background-color: transparent;
    color: #fff;
}

.date-selector-main .date-display:hover, .date-selector-main .date-display:focus {
	background-color: transparent;
    color: #ff0000;
}

.date-display span {
	display: inline-block;
	margin-right: 10px;
}

/* Experience Cards */
.experiences-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	max-width: 1000px;
	margin: 0 auto 50px auto;
}
.experiences-grid.grid {
	display: grid;
}
.experiences-grid.flex {
	display: flex;
	align-items:center;
	flex-direction: column;
}
.experiences-grid.flex p{
	margin:0;
}

.experience-card {
	background-color: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
	position: relative;
}

.experience-image {
	height: 253px;
	position: relative;
	background-size: cover;
	background-position: center;
}

.experience-image .swiper {
	height: 100%;
}

.experience-image .swiper img {
    height: 100%;
	width: 100%;
	object-fit: cover;
}

.edison .experience-image {
	background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
		url('./Group\ 977.png');
}

.roosevelt .experience-image {
	background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
		url('./4img.png');
}

.attraction .experience-image {
	background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
		url('./3\ img.png');
}

.houdini .experience-image {
	background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
		url('./Group\ 6.png');
}

.nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 18px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.nav-btn:hover {
	background: rgba(0, 0, 0, 0.7);
}

.nav-prev {
	left: 15px;
}

.nav-next {
	right: 15px;
}

.experience-content {
	padding: 25px;
	text-align: center;
}

.experience-title {
	font-size: 40px;
	font-weight: 700;
	color: white !important;
	margin-bottom: 5px;
}

.edison .experience-title {
	color: #000;
}

.roosevelt .experience-title {
	color: white;
}

.attraction .experience-title {
	color: white;
}

.houdini .experience-title {
	color: white;
}

.experience-subtitle {
	font-size: 20px;
	font-weight: 500;
	color: white;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.experience-content-main .experience-subtitle {
    font-weight: 700;
}

.experience-subtitle {
	color: #fff;
}

.experience-stats {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	margin-bottom: 25px;
}

.stat {
	text-align: center;
}

.stat-number {
	font-size: 24px;
	font-weight: 700;
	color: white;
}

.edison .stat-number {
	color: #fff;
}

.stat-label {
	font-size: 12px;
	color: white;
	line-height: 1.3;
}

.edison .stat-label {
	color: rgb(178, 178, 178);
}

.stat-divider {
	color: white;
	font-size: 25.5px;
}

.edison .stat-divider {
	color: #ccc;
}

.room-details-btn {
	background: none;
	border: 2px solid white;
	color: white;
	padding: 10px 20px;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	border-radius: 4px;
	transition: all 0.3s;
	min-width: 160px;
}

.edison .room-details-btn {
	border-color: #fff;
	color: #fff;
}

.roosevelt-btn {
	border-color: white;
	color: white;
}

.attraction-btn {
	border-color: white;
	color: white;
}

.houdini-btn {
	border-color: white;
	color: white;
}

.room-details-btn:hover {
	background-color: white;
	color: #000;
}

.edison .room-details-btn:hover {
	background-color: #000;
	color: white;
}

/* Card Backgrounds */
.edison {
	background: linear-gradient(360deg, #000000 0%, #000000 100%);

}

.roosevelt {
	background: linear-gradient(360deg, #f70300 0%, #fb0001 62%);
}

.attraction {
	background: linear-gradient(360deg, #00703C 0%, #00703C 100%);
}

.houdini {
	background: linear-gradient(360deg, #0018A8 0%, #0018A8 100%);
}

.experience-card .nav-prev,
.experience-card .nav-next {
	background-color: transparent !important;
}

/* Timeslots */
.timeslots {
	padding: 20px 25px;
	background-color: rgba(255, 255, 255, 0.1);
}

.edison .timeslots {
	background-color: #F2F3FB;
}

.roosevelt .timeslots {
	background-color: #FFF2F2;
}

.attraction .timeslots {
	background-color: #F2F8F5;
}

.houdini .timeslots {
	background-color: #F2F3FB;
}

.edison .timeslot {
	border: 2px solid #00000080;
}

.roosevelt .timeslot {
	border: 1px solid #FF0000;
}

.attraction .timeslot {
	border: 1px solid #00703C;
}

.houdini .timeslot {
	border: 1px solid #0018A8;
}

.timeslot:focus, .timeslot:hover:not(.disabled) {
    background-color: #ff0000;
    border-color: #ff0000;
    color: #fff;
}


.timeslot-row {
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
}

.timeslot-row:last-child {
	margin-bottom: 0;
}

.timeslot {
	flex: 1;
	padding: 8px 12px;
	border: 2px solid transparent;
	background-color: rgba(255, 255, 255, 0.9);
	color: #333;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	border-radius: 6px;
	transition: all 0.3s;
	text-align: center;
}

.timeslot.disabled {
	background-color: rgba(255, 255, 255, 0.3);
	color: #000;
	cursor: not-allowed;
	opacity: 0.4;
}



.timeslot.selected {
	background-color: #ff0000;
	color: white;
	border-color: #ff0000;
}

.roosevelt-selected {
	background-color: #ff0000;
	color: white;
	border-color: #ff0000;
}

.attraction-selected {
	background-color: #008000;
	color: white;
	border-color: #008000;
}

.houdini-selected {
	background-color: #0000ff;
	color: white;
	border-color: #0000ff;
}

/* Calendar Popup */
.calendar-popup {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	display: none;
}

.calendar-popup.active {
	display: block;
}

.calendar-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.7);
}

.calendar-container {
	position: absolute;
	bottom: 20%;
	left: 50%;
	transform: translateX(-50%) translateY(100%);
	background-color: #1a1a1a;
	border-radius: 12px;
	width: 90%;
	max-width: 400px;
	transition: transform 0.3s ease-out;
	border: 2px solid #ff0000;
}

.calendar-popup.active .calendar-container {
	transform: translateX(-50%) translateY(0);
}

.calendar-header {
	padding: 20px;
	border-bottom: 1px solid #333;
	position: relative;
}

.calendar-close {
	position: absolute;
	top: 15px;
	right: 20px;
	background: none;
	border: none;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0 !important;
}

.calendar-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.nav-arrow {
	background: none;
	border: none !important;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	padding: 5px 10px;
	border-radius: 4px;
	transition: background-color 0.3s;
}

.nav-arrow:hover {
	background-color: #333;
}

#currentMonth {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
}

.calendar-grid {
	padding: 20px;
}

.calendar-days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 5px;
	margin-bottom: 10px;
}

.day-header {
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	color: #999;
	padding: 10px 0;
}

.calendar-dates {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 5px;

}

.calendar-date {
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	cursor: pointer;
	border-radius: 4px;
	transition: all 0.3s;
	color: #fff !important;
	max-height: 30px;
}

.calendar-date:hover {
	background-color: #333;
}

.calendar-date.selected {
	background-color: #ff0000;
	color: #fff !important;
}

.calendar-date.other-month {
	color: #555 !important;
}

.calendar-date.disabled {
	color: #555 !important;
	cursor: not-allowed;
	pointer-events: none;
}

.date-nav-btn.disabled {
  color: #ccc;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
}

/* //////swiper slider//// */

.swiper-slide::after {
    content: '';
    height: 50px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}
.edison .swiper-slide::after {
	background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
.roosevelt .swiper-slide::after {
	background: linear-gradient(360deg, #FF0000 0%, rgba(255, 0, 0, 0) 100%);
}
.attraction .swiper-slide::after {
	background: linear-gradient(360deg, #00703C 0%, rgba(0, 112, 60, 0) 100%);
}
.houdini .swiper-slide::after {
	background: linear-gradient(360deg, #0018A8 0%, rgba(0, 24, 168, 0) 100%);
}
/* Hide the default arrow pseudo-elements */
.swiper-button-prev::after,
.swiper-button-next::after {
	display: none;
}

/* Style the previous button with the custom SVG */
.swiper-button-prev {
	background-image: url('data:image/svg+xml;utf8,<svg width="10" height="18" viewBox="0 0 10 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.16992 1.76318L2.16992 9.00003L8.16992 16.2369" stroke="white" stroke-width="2" stroke-linecap="round" /></svg>');
	background-size: contain;
	background-repeat: no-repeat;
	width: 22px !important;
	height: 22px !important;

}

/* Style the next button with the custom SVG */
.swiper-button-next {
	background-image: url('data:image/svg+xml;utf8,<svg width="9" height="18" viewBox="0 0 9 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.16992 16.2368L7.16992 8.99997L1.16992 1.76313" stroke="white" stroke-width="2" stroke-linecap="round" /></svg>');
	background-size: contain;
	background-repeat: no-repeat;
	width: 22px !important;
	height: 22px !important;

}
/* //////more detail Popup///////// */

p.more-detail-para {
	color: #fff;
	padding-bottom: 20px;
}

.more-detail-popup .experience-content {
	padding: 30px;
}

.more-detail-popup .room-details-btn {
	padding: 20px !important;
	font-size: 14px;
}

.more-detail-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	width: 100%;
	height: 100%;
	background-color: #00000096;
	display: none;
}

.more-detail-overlay.active {
	display: block;
}

.more-detail-popup {
	position: absolute;
	/* top: 0; */
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
	z-index: 10001;
	max-width: 90%;
	margin: 0 auto;
	max-height:100%;
	overflow-y: auto;
	-ms-overflow-style: none; 
	scrollbar-width: none;
}
.more-detail-popup::-webkit-scrollbar {
	display: none;
}

.more-detail-popup.edison {
	background-color: #000 !important;
}

.more-detail-popup.roosevelt {
	background-color: #FF0000 !important
}

.more-detail-popup.attraction {
	background-color: #00703C !important
}

.more-detail-popup.houdini {
	background-color: #0018A8 !important
}

.more-detail-popup.active {
	display: block;
}

.today-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000b8;
    z-index: 999999;
}

.today-popup-overlay p {
    margin-top: 20px;
}

.today-popup-overlay .popup-content {
    position: fixed;
    left: 50%;
    top: 50%;
    background-color: #fff;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 50px;
}

.today-popup-overlay .popup-content a {
    color: #FFC107;
    text-decoration: underline;
	font-weight: 700;
}
.today-popup-overlay h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 36px;
	color: #000;
}
.today-popup-overlay h3 a {
  color: #FFC107;
}
.today-popup-overlay button.close-today {
    font-size: 14px;
    font-weight: 700;
    padding: 20px 40px;
    margin-top: 25px;
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
}



/* Responsive Design */
@media (max-width: 767px) {
	.nav-wrapper {
		flex-direction: column;
		gap: 20px;
	}

	.nav {
		flex-wrap: wrap;
		gap: 20px;
		justify-content: center;
	}

	.experiences-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.date-selector,
	.date-selector-main {
		gap: 15px;
	}
	
	.date-selector-main {
		padding: 15px 0;
	}

	.experience-stats {
		flex-direction: row;
		gap: 30px;
	}

	.timeslot-row {
		flex-direction: row;
	}
	.more-detail-popup .experience-content {
        padding: 40px;
    }
    .more-detail-popup{
        bottom: 20px;
    }
	.container {
		padding: 0 10px;
	}
}

@media (max-width:600px) {
	.more-detail-popup .experience-content {
		padding: 15px;
	}
	.date-nav-btn {
		padding: 0 17px;
	}
	.today-popup-overlay .popup-content {
		width:90%;
	}
	.today-popup-overlay br {
		display: none;
	}
}
@media (min-width:768px) {
	.experience-content-main > .experience-title {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}