body {
	font-family: Arial, sans-serif;
	margin: 0;
	background: #f7fafa;
	color: #1a3557;
}
.amg_cta{
	display: inline-block;
	background: #6BD3B9;
    color: #fff;
    font-size: 13px;
    padding: 7px 14px;
    border: none;
    border-radius: 11px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.18s;
    margin-top: 6px;
    text-align: left;
	text-decoration: none;
}
.spacer-80 {
  height: 80px;
  width: 100%;
  display: block;
  content: "";
}
.announcement-bar {
	width: 100%;
	background: #8167DE;	
	text-align: center;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 101;
	position: relative;
}
.announcement-bar a{	
	color: #fff;	
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.5px;
	text-decoration: none;
}
.main-nav {
	width: 100%;
	position: absolute;
	top: 80px;
	left: 0;
	background: transparent;
	z-index: 102;
}
.nav-content {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 32px;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}
.nav-logo img {
	width: 280px;
	height: auto;
	max-width: 100%;
}
.nav-menu {
	display: flex;
	gap: 32px;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	background: transparent;
}
.nav-menu li a {
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 18px;
	transition: color .2s;
}
.nav-menu li a:hover {
	color: #6BD3B9;
}
.instagram-icon {
	width: 28px;
	height: 28px;
	vertical-align: middle;
}
.burger {
	display: none !important;
	flex-direction: column;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	margin-left: 24px;
	cursor: pointer;
	z-index: 1202;
}
.burger span {
	height: 4px;
	width: 100%;
	background: #fff;
	margin: 4px 0;
	border-radius: 2px;
	display: block;
	pointer-events: none;
}
.close-menu {
	display: none;
	position: fixed;
	top: 95px;
	right: 32px;
	background: none;
	border: none;
	font-size: 2.6rem;
	color: #fff;
	z-index: 2000;
	cursor: pointer;
	opacity: 1;
	transition: opacity .2s;
}
/* ========== MOBILE: BURGER MENU ========= */
@media (max-width: 900px) {
	.nav-menu {
		position: fixed;
		top: 80px;
		right: 0;
		width: 80vw;
		max-width: 320px;
		min-height: calc(100vh - 80px);
		background: rgba(129, 103, 222, 0.98);
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
		padding: 32px 0 32px 28px;
		margin: 0;
		z-index: 1500;
		border-radius: 0 0 0 18px;
		box-shadow: -2px 4px 32px rgba(0, 0, 0, 0.07);
		display: none;
	}
	.nav-menu.open {
		display: flex;
		animation: slideinMenu .33s cubic-bezier(.7, 0, .3, 1);
	}
	@keyframes slideinMenu {
		from {
			transform: translateX(100%);
			opacity: 0;
		}
		to {
			transform: translateX(0);
			opacity: 1;
		}
	}
	.burger {
		display: flex !important;
	}
	.close-menu {
		display: none;
	}
	.nav-menu.open~.close-menu {
		display: block;
	}	
	.nav-content {
		padding: 0 16px;
	}
}
@media (max-width: 900px) {
	.nav-menu {
		display: none;
	}
	.nav-menu.open {
		display: flex;
	}
}
@media (max-width: 768px) {
	.close-menu {
		position: absolute;
		top: 0;
	}
	.nav-menu.open {
		position: absolute;
		top: 0;
	}
}
/* =========== BANNER SECTION =========== */
.banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 960px;
	height: 50vw;
	max-height: 960px;
	overflow: hidden;
	background: #222;	
}
.banner-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	pointer-events: none;
}
.banner-content {
	text-align: center;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.banner-title {
	color: #6BD3B9;
	font-size: 96px;
	font-weight: 600;
	margin: 0 0 16px 0;
	line-height: 1.1;
}
.banner-subtitle {
	color: #fff;
	font-size: 96px;
	font-weight: 700;
	margin: 0;
	line-height: 1.1;
}
.banner-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(129, 103, 222, 0.37) 0%, rgba(107, 211, 185, 0.23) 70%);
	z-index: 1;
}

.banner-content {
	z-index: 2;
}
@media (max-width: 900px) {
	.banner {
		min-height: 400px;
		max-height: 480px;
		height: 65vw;
	}
	.banner-title,
	.banner-subtitle {
		font-size: 36px;
	}
}
/* =========== ABOUT SECTION =========== */
.about-mugheirah {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 1440px;
	margin: 0 auto;
	gap: 60px;
	padding: 0 32px;
}
.about-content {
	flex: 1;
	max-width: 480px;
	position: relative;
	padding-bottom: 40px;
	min-height: 470px;
}
.about-title {
	font-size: 48px;
	color: #FFAD8C;
	font-weight: 600;
}
.about-subtitle {
	font-size: 40px;
	color: #000;
	font-weight: bold;
	margin-bottom: 20px;
}
.about-description {
	font-size: 20px;
	color: #222;
	font-weight: 400;
	line-height: 1.65;
}
.about-decor {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 200px;
	height: 156px;
	object-fit: contain;
	z-index: 1;
	pointer-events: none;
}
/* Swiper Slider */
.about-slider {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	min-width: 350px;
}
.aboutSwiper {
	width: 710px;
	height: 520px;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(80, 60, 30, 0.09);
	background: #eee;
	position: relative;
	margin: 0 !important;
}
.aboutSwiper .swiper-slide {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 100%;
}
.aboutSwiper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.aboutSwiper .swiper-pagination {
	bottom: 18px !important;
	text-align: center;
	width: 100%;
}
.aboutSwiper .swiper-pagination-bullet {
	background: #ffffff;
	opacity: 0.4;
	width: 13px;
	height: 13px;
	margin: 0 6px !important;
	border-radius: 50%;
	transition: opacity 0.2s, transform 0.2s, background 0.2s;
}
.aboutSwiper .swiper-pagination-bullet-active {
	background: #000000;
	opacity: 1;
	transform: scale(1.2);
}
.aboutSwiper .swiper-slide img {
    transition: transform 0.25s cubic-bezier(.28,.84,.42,1);
    will-change: transform;
    backface-visibility: hidden;
    display: block;
}

/* Zoom on hover or focus */
.aboutSwiper .swiper-slide:hover img,
.aboutSwiper .swiper-slide:focus img {
    transform: scale(1.05);
    z-index: 2;
}

/* Optionally, keep pointer cursor */
.aboutSwiper .swiper-slide {
    cursor: pointer;
}
/* =========== RESPONSIVE =========== */
@media (max-width: 1200px) {
	.about-mugheirah {
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}
	.about-slider,
	.about-content {
		max-width: 90vw;
	}
	.aboutSwiper {
		width: 90vw;
		max-width: 710px;
		height: 53vw;
		max-height: 520px;
	}
}
@media (max-width: 1024px) {
	.banner-title,
	.banner-subtitle {
		font-size: 34px;
	}

	.nav-content {
		padding: 0 16px;
	}
}
@media (max-width: 900px) {
	.banner {
		min-height: 400px;
		max-height: 480px;
	}
}
@media (max-width: 700px) {
	.about-title,
	.about-subtitle {
		font-size: 24px;
	}
	.about-description {
		font-size: 16px;
	}
	.aboutSwiper {
		height: 240px;
	}
	.about-decor {
		width: 100px;
		height: 78px;
	}
	.about-content {
		min-height: 300px;
	}
}
/*Pillars section*/
.tiles-section {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 32px;
	display: flex;
	flex-direction: column;
	/*gap: 56px;*/
}
.tile {
	display: flex;
	align-items: center;
	gap: 30px;
	justify-content: space-between;
}
/* Alternate tiles: image on right for Play */
.tile.reverse {
	flex-direction: row-reverse;
}
.tile-image img {
	width: 710px;
	max-width: 96vw;
	height: 520px;
	object-fit: cover;
	border-radius: 24px;
	display: block;
	box-shadow: 0 8px 32px rgba(80, 60, 30, 0.09);
	background: #eee;
}
.tile-content {
	flex: 1;
	min-width: 250px;
	max-width: 700px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.tile-title {
	font-size: 48px;
	color: #FFAD8C;
	font-weight: 600;
	margin-bottom: 18px;
}
.tile-description {
	font-size: 20px;
	color: #1a3557;
	font-weight: 400;
	margin-bottom: 32px;
}
.tile-link {
	font-size: 20px;
	font-weight: 600;
	color: #6BD3B9;
	display: flex;
	align-items: center;
	text-decoration: none;
	gap: 6px;
	transition: color 0.2s;
}
.tile-link .arrow {
	font-size: 24px;
	margin-left: 2px;
	transition: margin-left 0.2s;
}
.tile-link:hover {
	color: #45a895;
}
.tile-link:hover .arrow {
	margin-left: 10px;
}
/* RESPONSIVE: STACK TILES, IMAGE ON TOP ON MOBILE */
@media (max-width: 900px) {
	.tiles-section {
		gap: 36px;
		padding: 0 12px;
	}
	.tile,
	.tile.reverse {
		flex-direction: column;
		align-items: stretch;
		gap: 20px;
	}
	.tile-image img {
		width: 100%;
		min-width: 0;
		max-width: 100vw;
		height: 240px;
		border-radius: 16px;
	}
	.tile-content {
		max-width: 100%;
		align-items: flex-start;
		padding-bottom: 16px;
	}
}
.row_reverse {
	flex-direction: row-reverse;
}
.pillar-row {
	display: flex;
	gap: 48px;
	align-items: flex-start;
	/*margin-bottom: 64px;*/
}
.pillar-image-wrap {
	min-width: 350px;
	max-width: 420px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.pillar-main-img {
	width: 100%;
	max-width: 420px;
	border-radius: 24px;
	box-shadow: 0 8px 32px rgba(80, 60, 30, 0.09);
	background: #eee;
	object-fit: cover;
	 transition: transform 0.25s cubic-bezier(.29,.76,.7,.94), box-shadow 0.18s;
  will-change: transform;
}
.pillar-title {
	font-size: 48px;
	color: #FFAD8C;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 0.5em;
	background: none;
	position: static;
	padding: 0;
	border-radius: 0;
}
.pillar-content {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	/* left align all content */
}
.pillar-description {
	font-size: 20px;
	margin-bottom: 35px;
	max-width: 540px;
	color: #1a3557;
	font-weight: 400;
}
/* Amenities Swiper */
.pillar-amenities-swiper {
	width: 100%;
	max-width: 940px;
}
/* Amenities Swiper wrapper fix for left-aligned tiles */
.pillar-amenities-swiper .swiper-wrapper {
	justify-content: flex-start !important;	
	align-items: stretch;
}
/* Amenities slide (tile): flat, left-aligned, no background or shadow */
.amenity-tile.swiper-slide {
	width: 100%;
	max-width: 300px;
	box-sizing: border-box;
	background: none;
	border-radius: 0;
	box-shadow: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;	
	margin-right: 0;
	text-align: left;
	transition: none;
}
.amenity-tile .amenity-image {
	width: 100%;
	max-width: none;
	margin: 0 0 10px 0;
	object-fit: cover;
	border-radius: 8px;
	background: #f8f8f8;
	display: block;
}
.amenity-title {
	font-size: 17px;
	color: #6BD3B9;
	font-weight: 600;
	margin: 0 0 6px 0;
}
.amenity-desc {
	font-size: 14px;
	margin: 0 0 12px 0;
	color: #222;
	line-height: 1.3;
	min-height: 115px;
}
.find-on-map-btn {
	background: #6BD3B9;
	color: #fff;
	font-size: 13px;
	padding: 7px 14px;
	border: none;
	border-radius: 11px;
	cursor: pointer;
	font-weight: 600;
	transition: background 0.18s;
	margin-top: 6px;
	text-align: left;
}
.find-on-map-btn:hover,
.find-on-map-btn:focus {
	background: #49bca0;
}
.amenity-tile .find-on-map-btn:hover {
	background: #49bca0;
}
.amenity-tile:hover,
.amenity-tile:focus-within {
	transform: translateY(-2px) scale(1.025);
}
/* Swiper Dots */
.row_reverse .pillar-amenities-swiper .swiper-pagination {
	text-align: right;
}
.pillar-amenities-swiper .swiper-pagination {
	position: static;
	margin-top: 18px;
	text-align: left;
}
.pillar-amenities-swiper .swiper-pagination-bullet {
	background: #B5A2E0;
	opacity: 0.4;
	width: 11px;
	height: 11px;
	margin: 3px 6px !important;
	border-radius: 50%;
	transition: opacity 0.2s, background 0.2s;
}
.pillar-amenities-swiper .swiper-pagination-bullet-active {
	background: #6BD3B9;
	opacity: 1;
}
/* Responsive */
@media (max-width: 900px) {
	.pillar-row {
		flex-direction: column;
		gap: 26px;
		align-items: stretch;
	}
	.pillar-title {
		position: static;
		background: none;
		padding: 0;
		margin-bottom: 8px;
	}
	.pillar-main-img {
		max-width: 100%;
	}
	.pillar-amenities-swiper {
		max-width: 96vw;
	}
}
@media (max-width: 700px) {
	.pillar-title {
		font-size: 34px;
		margin-top: -80px;
		z-index: 99;
		margin-left: 20px;
		margin-bottom: 80px;
		text-decoration: underline;
	}
	.pillar-content {
		align-items: flex-start;
	}
	.pillar-description {
		font-size: 15px;
	}
	.amenity-tile.swiper-slide {	
		font-size: 13px;
		padding: 9px 7px 11px 7px;
	}	
	.amenity-desc{
		min-height: 155px;
	}
}
.pillar-amenities-swiper.swiper {
	margin-left: 0 !important;
	margin-right: 0 !important;
}
/*Footer*/
.footer {
	position: relative;
	background: #111;
	color: #fff;
	padding-top: 60px;
	padding-bottom: 40px;
	overflow: hidden;
}
.footer-decor {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 250px;
	height: auto;
	pointer-events: none;
	z-index: 1;
}
/* Central container */
.footer-inner {
	position: relative;
	z-index: 2;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 32px;
	display: flex;
	gap: 64px;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
/* Columns */
.footer-col {
	flex: 1;
	min-width: 190px;
	max-width: 300px;
	display: flex;
	flex-direction: column;
	gap: 22px;
}
/* Logo */
.footer-logo {
	margin-bottom: 22px;
}
/* Socials */
.footer-socials {
	display: flex;
	gap: 16px;
}
.footer-socials a img {
	width: auto;
	height: auto;
	filter: brightness(0) invert(1);
	transition: filter .2s;
}
.footer-socials a:hover img {
	filter: brightness(0) invert(0.4) sepia(1) hue-rotate(-50deg) saturate(5);
}
.footer-title {
	font-size: 32px;
	color: #FFAD8C;
	font-weight: bold;
	margin-bottom: 6px;
	letter-spacing: 0.03em;
}
/* Links Lists */
.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-links li {
	margin-bottom: 12px;
}
.footer-links a {
	font-size: 20px;
	color: #fff;
	text-decoration: none;
	transition: color .2s;
}
.footer-links a:hover {
	color: #6BD3B9;
}
/* Contact & Icons */
.footer-contacts {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-contacts li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}
.footer-icon {
	width: 22px;
	height: 22px;
	filter: brightness(0) invert(1);
}
.contact-link {
	font-size: 20px;
	color: #fff;
	text-decoration: none;
}
.contact-link:hover {
	color: #6BD3B9;
}
/* Bottom Copyright */
.footer-bottom {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #fff;
	font-size: 18px;
	margin-top: 48px;
	opacity: 0.7;
	letter-spacing: 0.03em;
}
/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
	.footer-inner {
		gap: 32px;
	}
}
@media (max-width: 900px) {
	.footer-inner {
		flex-wrap: wrap;
		gap: 24px;
	}
	.footer-col {
		max-width: 48vw;
		min-width: 180px;
	}
	.footer-logo {
		width: 280px;
		margin-bottom: 18px;
	}
	.hide-in-mobile {
		height: 40px;
	}
	.spacer-80{
		height: 40px;
	}
}
@media (max-width: 700px) {
	.footer-inner {
		flex-direction: column;
		gap: 28px;
		padding: 0 12px;
	}
	.footer-col {
		min-width: 0;
		max-width: none;
	}
	.footer-decor {
		width: 120px;
	}	
}
/*Interactive map*/
.interactive-map-section {
	max-width: 1440px;
	margin:0 auto;
}
.section-title {
	font-size: 48px;
	font-weight: 600;
	color: #B5A2E0;
	margin: 20px 0;
}
.map-container {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
	width: 95vw;
	aspect-ratio: 16 / 9;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
	background: #eee;
}
.map-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.map-pin {
	position: absolute;
	width: 20px;
	height: 20px;
	background: #ff4081;
	border: 2px solid #fff;
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.2s;
	transform: translate(-50%, -100%);
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	transition: transform 0.22s cubic-bezier(.4,.6,.3,1.1), box-shadow 0.18s, border-color 0.18s;

}
.map-pin.selected {
    animation: pinPulse 1.1s infinite, pinBounce 0.6s;
  border-color: #ffffff;
  z-index: 5;
  background: #000000
}
.map-pin:hover {
	background: #000000
}
.map-pin::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 50%;
	margin: 0 auto;
}
.map-popup {
	position: absolute;
	min-width: 220px;
	max-width: 300px;
	background: #ffffffdd;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
	padding: 18px 20px 18px 16px;
	z-index: 5;
	transform: translate(-50%, -110%);
	animation: fadeIn 0.2s;
	display: none;
}
/*Animations*/
@keyframes pinPulse {
  0% {
    box-shadow: 0 0 0 0 #8167DE55, 0 0 0 0 #8167DE33;
  }
  60% {
    box-shadow: 0 0 14px 7px #8167DE44, 0 0 32px 13px #8167DE22;
  }
  100% {
    box-shadow: 0 0 0 0 #8167DE55, 0 0 0 0 #8167DE33;
  }
}
@keyframes pinBounce {
  0%, 100% { transform: translate(-50%, -100%) scale(1);}
  30% { transform: translate(-50%, -110%) scale(1.15);}
  50% { transform: translate(-50%, -100%) scale(1);}
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(0.93) translate(-50%, -110%);
	}
	to {
		opacity: 1;
		transform: scale(1) translate(-50%, -110%);
	}
}
.map-popup.active {
	display: block;
}
.popup-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: none;
	font-size: 1.25rem;
	color: #222;
	cursor: pointer;
	border-radius: 50%;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}
.popup-close:hover {
	background: #eee;
}
@media (max-width: 600px) {
	.interactive-map-section{
		margin:0 12px;
	}
	.map-pin {
		width: 15px;
		height: 15px;
		border: 1px solid #fff;
	}
	.map-pin::after {
		width: 5px;
		height: 5px;
	}
}
@media (max-width: 500px) {
	.section-title {
		font-size: 1.25rem;
	}
	.map-popup {
		/* Center inside map-container, not screen */
		left: 50% !important;
		top: 50% !important;
		min-width: 80vw;
		max-width: 95vw;
		padding: 14px 10px 14px 16px;
		transform: translate(-50%, -50%) !important;
	}
}
/*Events Section*/
.events-section {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 32px;
}
.events-title {
	font-size: 48px;
	font-weight: 600;
	color: #B5A2E0;
	margin: 20px 0;
}
.events-slider {
	width: 100%;
}
.event-tile {
	width: 522px !important;
	flex-shrink: 0;
	border-radius: 24px;
	overflow: hidden;
	position: relative;
}
.event-tile-inner {
	width: 100%;
	height: 400px;
	position: relative;
	background: #f5f5f7;
	overflow: hidden;
	border-radius: 24px;
	/* For overlay effects */
}
.event-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.event-tile-inner {
  position: relative;
}
.event-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 20px;
  border-radius: 0 8px 0 8px;
  color: #fff;
  font-size: 1em;
  font-weight: bold;
  background: #B5A2E0;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 10px rgba(129,103,222,0.09);
  z-index: 2;
  user-select: none;
  pointer-events: none;
}

.event-badge.upcoming { background: #6BD3B9dd; }
.event-badge.past { background: #AAB3BC; }
/* ===== Overlay at bottom ===== */
.event-desc-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 80px;
	background: linear-gradient(0deg, #fff 89%, #fff0 100%);
	color: #111;
	transition: height 0.33s cubic-bezier(.7, 0, .2, 1), background 0.35s;
	cursor: pointer;
	overflow: hidden;
	z-index: 2;
}
.event-overlay-content {
	padding: 14px 24px 20px 24px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: start;
}

.event-overlay-title-date {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.event-panel-title {
	font-size: 24px;
	font-weight: bold;
	color: #111;
}
.event-panel-date {
	font-size: 20px;
	color: #1a3557;
	font-weight: normal;
	opacity: 0.9;
}
/* Description hidden by default, shown when open/hover */
.event-description {
	font-size: 18px;
	color: #222;
	margin-top: 14px;
	opacity: 0;
	max-height: 0;
	transition: opacity 0.28s 0s, max-height 0.28s;
	overflow: hidden;
	pointer-events: none;
}
/* Overlay active (hover/click) */
.event-tile-inner.open .event-desc-overlay,
.event-tile-inner:hover .event-desc-overlay {
	height: 220px;
	background: linear-gradient(0deg, #fff 99%, #fff0 100%);
}
.event-tile-inner.open .event-description,
.event-tile-inner:hover .event-description {
	opacity: 1;
	pointer-events: auto;
	max-height: 200px;
	transition: opacity 0.28s 0.05s, max-height 0.25s;
}
/* Swiper - show two full + half */
.events-slider .swiper-wrapper {
	padding-bottom: 14px;
}
.events-slider .swiper-slide {
	 width: auto !important; /* Let Swiper handle width automatically */
  margin-right: 0;
	border-radius: 24px;
}
.events-slider .swiper-pagination {
  position: static;
  margin-top: 18px;
  text-align: left;
}
.events-slider .swiper-pagination-bullet {
  background: #B5A2E0;
  opacity: 0.4;
  width: 11px;
  height: 11px;
  margin: 3px 6px !important;
  border-radius: 50%;
  transition: opacity 0.2s, background 0.2s;
}
.events-slider .swiper-pagination-bullet-active {
  background: #6BD3B9;
  opacity: 1;
}
/* Last tile half visible effect */
@media (min-width: 901px) {
	.events-slider .swiper {
		overflow: visible !important;
	}
}
@media (max-width: 900px) {
	.events-section {
		padding: 0 12px;
	}
	.events-title {
		font-size: 32px;
	}
	.events-slider .swiper-slide,
	.event-tile,
	.event-tile-inner {
		width: 90vw !important;
		min-width: 280px;
		max-width: 420px;
		height: 320px;
	}
	.event-img {
		height: 100%;
	}
	.event-desc-overlay {
		height: 80px;
	}
}
@media (max-width: 600px) {
	.events-slider .swiper-slide,
	.event-tile,
	.event-tile-inner {
		width: 88vw !important;
		max-width: 95vw;
		height: 240px;
		border-radius: 14px;
	}
	.event-desc-overlay {
		padding-left: 8px;
		padding-right: 8px;
		min-height: 68px;
	}
	.event-overlay-content {
		padding: 8px 8px 10px 8px;
	}
	.event-panel-title {
		font-size: 18px;
	}
	.event-panel-date {
		font-size: 15px;
	}
	.event-description {
		font-size: 14px;
	}
	.event-badge {
    top: 9px;
    left: 9px;
    font-size: 0.89em;
    padding: 4px 13px;
  }
}
/*Stay Updated*/
.stay-updated-section {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 32px;
}
.stay-updated-title {
	font-size: 48px;
	font-weight: 600;
	color: #B5A2E0;
	margin: 20px 0;
}
.stay-updated-grid {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 100px;
}
.update-tile {
	display: block;
	border-radius: 24px;
	overflow: hidden;
	background: #eee;
	box-shadow: 0 8px 32px rgba(60, 60, 60, 0.07);
	transition: transform 0.25s, box-shadow 0.20s;
	position: relative;
  overflow: hidden;
}
.tile-title-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 10px;
  background:#6BD3B9bb;
  color: #fff;
  font-size: 1.22em;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.01em;
  z-index: 2;
  width: 100%;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  box-sizing: border-box;
}
.tile-title-overlay img.insta-icon{
	width: 20px;
    display: inline-block;
    margin: 0 10px;
    margin-bottom: -3px;
}
.update-tile img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s;
}
.update-tile:hover img,
.update-tile:focus img {
	transform: scale(1.05);
}
.update-tile:focus {
	outline: 2px solid #6BD3B9;
	outline-offset: 2px;
}
.tall-tile {
	width: 413px;
	height: 848px;
	min-width: 220px;
	min-height: 420px;
	max-width: 100vw;
	max-height: 90vw;
}
.square-tile {
	width: 414px;
	height: 414px;
	min-width: 180px;
	min-height: 180px;
	max-width: 100vw;
	max-height: 100vw;
}
.middle-tiles {
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: space-between;
}
.mobile_image{
	display: none !important;
}
/* Responsive: Single column stacking on narrow screens */
@media (max-width: 1200px) {
	.stay-updated-grid {
		gap: 16px;
	}
	.tall-tile {
		width: 300px;
		height: 515px;
	}
	.square-tile {
		width: 300px;
		height: 300px;
	}
}
@media (max-width: 900px) {
	.stay-updated-title {
		font-size: 32px;
		margin-bottom: 24px;
	}
	.stay-updated-grid {
		flex-direction: column;
		gap: 24px;
		align-items: stretch;
	}
	.middle-tiles {
		flex-direction: row;
		gap: 16px;
	}
	.tall-tile,
	.square-tile {
		width: 48vw;
		height: 48vw;
		max-width: 95vw;
		min-width: 120px;
		max-height: 60vw;
		min-height: 120px;
	}
	.middle-tiles a {
		flex: 1;
	}
}
@media (max-width: 700px) {
	.stay-updated-section {
		padding: 0 8px;
	}
	.stay-updated-grid {
		flex-direction: column;
		gap: 16px;
	}
	.middle-tiles {
		flex-direction: column;
		gap: 12px;
	}
	.tall-tile,
	.square-tile {
		width: 100%;
		min-width: 0;
		height: 100%;
		max-height: none;
	}
	.update-tile img {
		height: auto
	}
	.desktop_image{
		display: none !important;
	}	
	.mobile_image{
		display: block !important;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}
/*Visit Us Section*/
/* Visit Us Section Styles */
.visit-us-section {
	max-width: 1440px;
	width: 100%;
	margin: 80px auto 0 auto;
	padding: 0 32px;
	min-height: 420px;
	background: url('../images/visit-us-bg.png') center/cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	text-align: center;
}
.visit-us-content {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	color: #fff;
	padding: 40px 10px;
	border-radius: 18px;
}
.visit-us-title {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 18px;
	letter-spacing: 2px;
}
.visit-us-subtitle {
	font-size: 40px;
	font-weight: 400;
	margin-bottom: 36px;
	color: #f3f3f3;
}
.visit-us-cta {
	display: inline-block;
	background: #82C2EC;
	color: #fff;
	padding: 16px 48px;
	border-radius: 20px;
	font-size: 1.1rem;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: 2px;
	transition: background 0.3s, box-shadow 0.3s;
	box-shadow: 0 2px 18px 0 rgba(65, 149, 212, 0.13);
}
.visit-us-cta:hover {
	background: #60B3E1;
}
@media (max-width: 900px) {
	.visit-us-section {
		min-height: 320px;
		padding: 0 12px;
	}
	.visit-us-title {
		font-size: 1.6rem;
	}
	.visit-us-content {
		padding: 10vw 2vw;
	}
}
@media (max-width: 600px) {
	.visit-us-section {
		min-height: 0;
		padding: 0
	}
	.visit-us-content {
		padding: 10vw 2vw;
	}
	.visit-us-title {
		font-size: 1.3rem;
	}
	.visit-us-cta {
		padding: 12px 28px;
		font-size: 1rem;
	}
}
/*Back to top*/
.back-to-top {
	position: fixed;
	right: 32px;
	bottom: 32px;
	z-index: 2100;
	background: #6BD3B9;
	color: #fff !important;
	border: none;
	border-radius: 32px;
	padding: 12px 28px 12px 20px;
	font-size: 1.17rem;
	font-weight: bold;
	box-shadow: 0 2px 16px rgba(56, 80, 89, 0.08);
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: opacity .22s, background .18s, box-shadow .22s;
	outline: none;
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}
.back-to-top:hover,
.back-to-top:focus {
	background: #49bca0;
	box-shadow: 0 2px 28px rgba(56, 80, 89, 0.19);
}
@media (max-width: 700px) {
	.back-to-top {
		right: 14px;
		bottom: 14px;
		padding: 11px 16px 11px 12px;
		font-size: 1rem;
	}
}
/*Popup*/
.tile-popup {
	display: none;
	position: fixed;
	z-index: 3000;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	justify-content: center;
	align-items: center;
}
/* Show when active */
.tile-popup.active {
	display: flex;
}
/* Dimmed background */
.tile-popup-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(27, 34, 38, 0.62);
	z-index: 1;
}
/* Modal content */
.tile-popup-content {
	position: relative;
	z-index: 2;
	width: 800px;
	min-width: 800px;
	max-width: 98vw;
	background: #fff;
	border-radius: 25px;
	box-shadow: 0 12px 48px rgba(56, 69, 89, 0.19);
	overflow: hidden;
	animation: fadeSlideUp .23s;
}
@keyframes fadeSlideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* Banner area with image */
.tile-popup-banner {
	width: 100%;
	height: 220px;
	background: #e9eaeb;
	overflow: hidden;
}
.tile-popup-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* Popup body */
.tile-popup-body {
	padding: 26px 22px 22px 22px;
}
.tile-popup-body h3 {
	font-size: 2rem;
	margin-top: 0;
	margin-bottom: 14px;
	color: #FFAD8C;
	font-weight: bold;
	letter-spacing: 1px;
}
.tile-popup-description {
	font-size: 18px;
	color: #1a3557;
	margin-bottom: 14px;
}
.tile-popup-longdesc {
	font-size: 17px;
	color: #222;
	margin-bottom: 0;
}
/* Close Button */
.tile-popup-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	font-size: 2.3rem;
	font-weight: bold;
	color: #222;
	line-height: 1;
	cursor: pointer;
	z-index: 3;
	border-radius: 50%;
	padding: 2px 8px;
	transition: background 0.2s;
}
.tile-popup-close:hover,
.tile-popup-close:focus {
	background: #e1e1e1;
}
/* Responsive */
@media (max-width: 900px) {
	.tile-popup-content {
		width: 100vw;
		min-width: 0;
		max-width: 100vw;
		border-radius: 0;
	}
}
@media (max-width: 600px) {
	.tile-popup-content {
		max-width: 98vw;
		width: 98vw;
	}
	.tile-popup-banner {
		height: 120px;
	}
	.tile-popup-body {
		padding: 16px 7vw 11px 7vw;
	}
	.tile-popup-body h3 {
		font-size: 1.2rem;
	}
	.tile-popup-description {
		font-size: 16px;
	}
	.tile-popup-longdesc {
		font-size: 15px;
	}
}
/*Resets*/
.swiper {
	margin-left: 0;
	margin-right: 0;
}
/*Modal Popup Upcoming Events*/
.event-popup-modal {
	display: none;
	position: fixed;
	z-index: 5000;
	inset: 0;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 100vh;
}
.event-popup-modal.active {
	display: flex;
}
.event-popup-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(30, 35, 44, 0.82);
	z-index: 1;
}
.event-popup-content {
	position: relative;
	z-index: 2;
	width: 90vw;
	max-width: 1200px;
	max-height: 98vh;
	background: #B5A2E0CC;
	border-radius: 22px;
	display: flex;
	flex-direction: column;
	margin: auto;
	overflow-y: auto;
	animation: fadeSlideUp .22s;
	box-shadow: 0 12px 48px rgba(56, 69, 89, 0.17);
}
.event-popup-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: none;
	border: none;
	font-size: 2.2rem;
	color: #fff;
	cursor: pointer;
}
.event-popup-image {
	width: 100%;
	max-height: 230px;
	object-fit: cover;
	border-top-left-radius: 22px;
	border-top-right-radius: 22px;
}
.event-popup-title {
	font-size: 2rem;
	color: #FFAD8C;
	font-weight: 600;
	margin: 20px;
}
.event-popup-desc {
	font-size: 1.15rem;
	color: #fff;
	padding: 20px;
}
#popup-desc ul,
#popup-desc ol {
	margin-left: 1.3em;
	margin-bottom: 0.7em;
}
#popup-desc li {
	margin-bottom: 0.3em;
}
#popup-desc a {
	color: #8167DE;
	font-weight: bold;
	text-decoration: underline;
}
#popup-desc a img{
width: 20px;
}
@media (max-width: 650px) {
	.event-popup-content {
		max-width: 98vw;
		border-radius: 12px;
	}
	.event-popup-title {
		font-size: 1.3rem;
	}
}
@keyframes fadeSlideUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/*Upcoming Events*/