@charset "utf-8";
/* CSS Document */

.map-wrapper {
  height: 100vh;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.office-email{display:none;}

.modal-header .close {
	height: 30px;
	width: 30px;
	line-height: 30px;
	background-color: #27ae60;
	border-radius: 50%;
	padding: 0px;
	opacity: 1;
	color: #fff;
}

.modal-header h5 {
	font-size: 18px;
	font-family: 'Open Sans', sans-serif;
}

.modal-header .close {
	height: 30px;
	width: 30px;
	line-height: 30px;
	background-color: var(--bg-dark-brown);
	border-radius: 50%;
	padding: 0px;
	opacity: 1;
	color: #fff;
	border: 0px;
}

.contact-popup {
	border: 1px solid var(--bg-light-brown);
	padding: 10px 25px;
	color: var(--bg-dark-brown);
}

.contact-popup:hover {
	background-color:var(--bg-light-brown);
	color: #fff;
}

.modal-body .form-control {
	border: 1px solid #eee !important;
}

footer a:hover{color:#fff;}

.section2{padding:50px 0px 50px 0px;}

.amenity-grid {
	--bs-gutter-y: 1.5rem;
}

.amenity-card {
	background: white;
	border-radius: 2rem 2rem 2rem 2rem;
	padding: 2rem 1.4rem 1.8rem 1.4rem;
	height: 100%;
	border: 1px solid rgba(0,0,0,0.03);
	box-shadow: 0 15px 30px -12px rgba(0,20,30,0.1);
	transition: transform 0.2s ease, box-shadow 0.2s, border-color 0.2s;
	display: flex;
	flex-direction: column;
	position: relative;
	backdrop-filter: blur(2px);
}

.amenity-card:hover {
	transform: translateY(-6px) !important;
	border-color: #c7a054;
	box-shadow: 0 28px 40px -16px rgba(148, 106, 38, 0.2);
}

.icon-circle {
	background: #fcf7f0;
	width: 70px;
	height: 70px;
	border-radius: 30px 10px 30px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.3rem;
	color: #b88234;
	margin-bottom: 1.4rem;
	transition: 0.2s;
	border: 1px solid #f0e4d2;
}
.amenity-card:hover .icon-circle {
	background: #c7a054;
	color: white;
	border-color: #c7a054;
}
.amenity-card h4 {
	font-size: 1.4rem;
	font-weight: 600;
	color: #1e2f4a;
	margin-bottom: 0.6rem;
}
.amenity-card p {
	font-size: 0.95rem;
	color: #365263;
	line-height: 1.5;
	margin-bottom: 0;
}
.tag-ultra {
	background: #1e2f4a;
	color: #eedbbc;
	font-size: 0.7rem;
	font-weight: 600;
	padding: 0.2rem 1rem;
	border-radius: 30px;
	display: inline-block;
	margin-bottom: 1rem;
	letter-spacing: 0.5px;
	align-self: flex-start;
	text-transform: uppercase;
}
.spotlight-header {
	background: #e6dacb;
	border-radius: 3rem 3rem 1rem 1rem;
	padding: 0.9rem 2rem;
	margin-bottom: 2.5rem;
	display: inline-block;
}
.dual-pool-badge {
	background: #c7a054;
	color: #111;
	font-weight: 600;
	border-radius: 40px;
	padding: 0.3rem 1.3rem;
	font-size: 0.8rem;
}

a.no-header-image > li.has-child::after,a.no-header-image{color:#000 !important;}

.darker-button{background-color:var(--bg-dark-brown) !important;}
.darker-button:hover{background-color:var(--bg-light-brown) !important;}
#mainmenu > li a.menu-active{color:var(--primary-color);}
#slideshow-address{white-space:normal;}
/*#slider-container{min-height:100vh;}*/
#mainmenu li.mobile-menu-item{display:none;}

.offer-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(5px);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.offer-popup-overlay.active {
	opacity: 1;
	visibility: visible;
}

.offer-popup {
	background: #ffffff;
	max-width: 520px;
	width: 90%;
	border-radius: 28px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	position: relative;
	transform: scale(0.95);
	transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.offer-popup-overlay.active .offer-popup {
	transform: scale(1);
}

.popup-close-x {
	position: absolute;
	top: 16px;
	right: 20px;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 20;
	transition: all 0.2s ease;
	color: white;
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
	border: none;
	box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.popup-close-x:hover {
	background: rgba(0, 0, 0, 0.8);
	transform: scale(1.05);
}

.popup-image {
	width: 100%;
	height: auto;
	overflow: hidden;
	background-color: #f5f0e8;
}

.popup-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	aspect-ratio: 16 / 10;
}

.popup-content {
	padding: 1.8rem 2rem 2rem 2rem;
	text-align: center;
	background: #fff;
}

.offer-description {
	font-size: 1rem;
	line-height: 1.45;
	color: #2c2c2c;
	margin-bottom: 1rem;
	font-weight: 500;
}

.terms-text {
	font-size: 0.78rem;
	color: #6b6b6b;
	margin: 0.75rem 0 1.5rem 0;
	border-top: 1px solid #eee;
	padding-top: 0.9rem;
	letter-spacing: 0.2px;
}

.gotit-btn {
	background: #9e3a22;
	border: none;
	padding: 12px 28px;
	font-size: 1rem;
	font-weight: 700;
	border-radius: 60px;
	color: white;
	cursor: pointer;
	transition: all 0.2s ease;
	width: 100%;
	max-width: 200px;
	margin: 0 auto;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	box-shadow: 0 4px 8px rgba(158, 58, 34, 0.3);
}

.gotit-btn:hover {
	background: #7b2e1c;
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(158, 58, 34, 0.4);
}

.offer-popup-overlay {
	z-index: 10000;
}

.schedule-visit-button {
  padding: 10px 0px;
  color: #fff;
  font-weight: bold;
  background: none;
  border: none;
  text-decoration: none;
  font-size:16px;
}

.schedule-visit-button:hover,
.schedule-visit-button:focus,
.schedule-visit-button:active {
  color: #fff;
  background: none;
  outline: none;
  box-shadow: none;
}

@media (max-width: 1024px) {
  #slider-container {
    min-height: 60vh;
    aspect-ratio: auto;
  }
  
  .swiper-inner {
    background-size: cover;
    background-position: center 25%;
  }
  
  .swiper-pagination{display:none;}
  .choose-an-apartment h3{font-size:1.5em;}
}

@media (max-width: 992px) {
	a.top-transparent-button{display:none;}
	.choose-an-apartment h3{font-size:1em;}
}

@media (max-width: 550px) {
	.popup-content {
		padding: 1.4rem 1.5rem 1.8rem;
	}
	.offer-title {
		font-size: 1.6rem;
	}
	.gotit-btn {
		padding: 10px 20px;
		font-size: 0.9rem;
	}
	.choose-an-apartment h3{font-size:0.9em;}
}