:root {
	--color-primary: #012D6A;
	/* deep blue */
	--color-accent: #AE9F6A;
	/* warm gold */
	--color-gray-900: #1a1a1a;
	/* dark neutral */
	--text-on-primary: #ffffff;
	--color-gold: #AE9F6A;
}
/* PRIMARY: deep‐blue */
h1, h2 {
	color: var(--color-primary);
	/* example font sizes */
}
h1 {
	font-size: 2.5rem;
}
h2 {
	font-size: 2rem;
}
/* SECONDARY: gold—but only if it’s large/bold enough */
h3, h4 {
	color: var(--color-accent);
	font-weight: bold;
	/* helps pass WCAG AA */
}
h3 {
	font-size: 1.75rem;
}
h4 {
	font-size: 1.5rem;
}
/* TERTIARY: neutral text (or back to deep‐blue if you prefer) */
h5, h6 {
	color: var(--color-gray-900);
	font-size: 1.25rem;
	/* or whatever your scale dictates */
	font-weight: normal;
}
.text-gold {
	color: var(--color-gold) !important;
}
.border-gold {
	border-top: 1px solid var(--color-gold) !important;
}
@font-face {
	font-family: 'Aptos Display';
	src: url('/fonts/AptosDisplay.eot');
	src: url('/fonts/AptosDisplay.eot?#iefix') format('embedded-opentype'),url('/fonts/AptosDisplay.woff2') format('woff2'),url('/fonts/AptosDisplay.woff') format('woff'),url('/fonts/AptosDisplay.ttf') format('truetype'),url('/fonts/AptosDisplay.svg#AptosDisplay') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
/* Body copy */
body {
	font-family: 'Aptos Display', sans-serif;
	font-weight: normal;
	font-style: normal;
}
/* Headings */
h1, h2, h3, h4, h5, h6 {
	font-family: "Playfair Display", serif;
	font-optical-sizing: auto;
	/* Choose your desired weight, e.g. 400, 500, 600, 700 */
	font-weight: 700;
	font-style: normal;
}
html {
	scroll-behavior: smooth;
}
.home header {
	z-index: 9;
	width: 100%;
    transition: all 0.5s;
}

#site-header.shrink #logo {
    height: auto;
}
.hero {
	position: relative;
}
.hero-img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}
.hero-button-overlay {
	position: absolute;
	bottom: 2rem;
	left: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.hero-button-overlay .btn {
	display: block;
	margin: 0 auto;
	font-size: 1.25rem;
	padding: 0.75rem 1.5rem;
}
.hero-button-overlay .arrow {
	margin-top: 1rem;
	width: 100%;
}
/* Hero Text Section Background Pattern */
.hero-text-bg {
	position:relative;
	background-image: url('/media/bykfyufh/grey-logotype.svg');
	background-repeat: repeat;
	background-color: rgba(248, 249, 250, 0.5);
}
.hero-text-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px; /* Adjust for fade height */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);
}

.hero-text-bg .overlay-text{
position:relative;
z-index:9999;
}
.contentPage .hero-text-bg{
	border-bottom:none !important;
}
.section-title {
	margin: 4rem 0 2rem;
}
/* Experience Section Custom */
/* Slick custom for showing 3 panels */
.slider-for .slick-slide {
	opacity: 0.6;
	transform: scale(0.9);
	transition: all 0.3s ease;
}
.slider-for .slick-center {
	opacity: 1;
	transform: scale(1);
}
.slider-for img, .apartments-slider img {
	border-radius: 8px;
	width: 100%;
}
/* Optional: make the clickable button a bit larger for easier hits */
.slider-for .slick-prev:before,.slider-for .slick-next:before {
	content:none;
}
.slider-for .slick-next, .slider-for .slick-prev, .apartments-slider .slick-next, .apartments-slider .slick-prev{
	width: 60px;
	height: 20px;
}

/* base transition */
.apartments-slider .slick-slide {
  transition: transform .28s ease, opacity .28s ease, filter .28s ease;
}

/* dim & shrink non-center slides (darker) */
.apartments-slider.slick-initialized .slick-slide:not(.slick-center) {
  opacity: 0.2;                         /* much more transparent */
  transform: scale(.9);                 /* shrink a bit more */
  filter: brightness(0.4) contrast(0.8) grayscale(0.2); /* strong dark fade */
  pointer-events: none;
}

/* highlight the active center slide */
.apartments-slider.slick-initialized .slick-center {
  opacity: 1;
  transform: scale(1);
  filter: none;
  z-index: 3;
  pointer-events: auto;
}




.info-card {
	margin-top: 1rem;
	text-align: center;
}
.text-gold {
	color: #E6B31E;
}
.slider-for .slide {
	position: relative;
	overflow: hidden;
}
/* style the card */
.slider-for .slide .info-card {
	position: absolute;
	bottom: 2rem;
	/* lifts the card off the bottom edge */
	left: 2rem;
	/* pulls it in from the left edge */
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 16px rgba(0,0,0,0.15);
	padding: 2rem;
	max-width: 35%;
	/* so it doesn’t span the whole slide */
}
/* title styling */
.slider-for .slide .info-card .info-title {
	margin: 0 0 0.75rem;
	color: #012D6A;
	/* your deep-blue */
	font-size: 1.5rem;
	/* adjust to taste */
	font-weight: 700;
}
/* body text */
.slider-for .slide .info-card .info-text {
	margin: 0;
	color: #444;
	line-height: 1.5;
}
.apartment-slide {
	display: flex;
	flex-direction: column;
}
/* portrait 9:16 “card” */
.apartment-card {
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border-radius: 0.5rem;
}
/* watermark “E” in top-left, translucent */
.apartment-card::before {
	/*content: 'E';*/
    position: absolute;
    top: -5px;
    left: -10px;
    display: block;
    font-size: 180px;
    line-height: 1;
    margin: 0;
    padding: 0;
    transform-origin: top left;
    transform: translate(-0.08em, -0.18em);
    color: rgba(255, 255, 255, 0.5);
    z-index: 1;
    pointer-events: none;
    font-family: "Playfair Display", serif;
}
/* make the img fill the card */
.apartment-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.apartment-card .overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	/* push everything to the bottom */
	align-items: center;
	/* center horizontally */
	text-align: center;
	/* center text inside */
	padding: 1rem;
	background: linear-gradient(to bottom,rgba(0, 0, 0, 0.2) 0%,rgba(0, 0, 0, 0.6) 70%,rgba(0, 0, 0, 0.8) 100%);
	z-index: 2;
}
/* small spacing between title/location and button */
.apartment-card .overlay .text {
	margin-bottom: 0.75rem;
}
/* ensure headings & location are white */
.apartment-card .overlay h3,.apartment-card .overlay .location {
	color: #fff;
	margin: 0;
}
.apartment-card .overlay h3,.apartment-card .overlay .location {
	color: #fff;
	margin: 0;
}
.apartment-card .overlay .location {
	font-size: 0.85rem;
	letter-spacing: 1px;
}
.apartment-card .overlay .btn {
	align-self: center;
}
/* simple styling for info beneath the card */
.apartment-slide .info p {
	font-size: 0.9rem;
	color: #333;
}
/* after your existing CSS */
.apartments-slider .apartment-slide.slick-slide:nth-child(odd) {
	margin-top: 50px;
}
.apartments-slider .slick-track .apartment-slide.slick-slide:not(.slick-cloned):nth-child(odd) {
	margin-top: 50px;
}
.apartments-slider .slick-prev, .apartments-slider .slick-next,.slider-for .slick-prev, .slider-for .slick-next{
	top: auto !important;
	/* cancel the default top: 50% centering */
	bottom: -30px;
	/* adjust distance below the image */
	transform: none !important;
	/* cancel the default centering translate */
}
.apartments-slider .slick-prev, .slider-for .slick-prev {
	right: 60px;
	position: absolute;
	right: 0 !important;
	left: 90%;
}
.apartments-slider .slick-next, .slider-for .slick-next{
	right: 0;
}
.apartments-slider .slick-next:before, .apartments-slider .slick-prev:before,.slider-for .slick-next:before, .slider-for .slick-prev:before{
	color:black;
}
/* --- header section --- */
.intro {
	text-align: center;
	padding: 50px 20px 0;
}
.intro .pre {
	font-size: 24px;
	color: #b8a775;
	margin-bottom: 10px;
}
.intro .title {
	font-size: 48px;
	font-weight: 700;
	color: #91825f;
	letter-spacing: 1px;
}
/* --- main promo section --- */
.promo {
	position: relative;
	overflow: visible;
	/* allow overflow */
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #e0583c;
	padding: 60px 10%;
}
.promo .left {
	flex: 1;
	color: #fff;
}
.promo .left h2 {
	font-size: 36px;
	margin-bottom: 30px;
}
.promo .features {
	list-style: none;
}
.promo .features li {
	font-size: 18px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}
.promo .features li::before {
	content: "✔";
	display: inline-block;
	width: 24px;
	margin-right: 12px;
	font-weight: bold;
}
.promo .right {
	flex: 1;
	display: flex;
	justify-content: center;
}
.phone-frame {
	position: relative;
	width: 280px;
	border: 16px solid #fff;
	border-radius: 48px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.2);
	overflow: hidden;
}
.phone-frame img {
	display: block;
	width: 100%;
	height: auto;
}
.phone-mockup {
	position: relative;
	width: 300px;
	height: 600px;
	margin-top: -240px;
	margin-bottom: -240px;
	z-index: 2;
}
.phone-mockup img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	//object-fit: cover;
}
.phone-mockup .screen {
	/* screen sits behind */
	z-index: 1;
	padding: 5px 10px;
	border-radius: 50px;
}
.phone-mockup .bezel {
	/* svg phone frame sits above */
	z-index: 2;
	pointer-events: none;
	/* so clicks “pass through” to the screen if needed */
}
.account-login {
	position: relative;
	background-color: #002d62;
	color: #fff;
	overflow: hidden;
	/* ensure pseudo stays inside */
}
.account-login::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('/media/bykfyufh/grey-logotype.svg');
	background-repeat: repeat;
	background-size: 80px 80px;
	/* adjust tile size */
	opacity: 0.15;
	/* tweak transparency */
	pointer-events: none;
	/* clicks go through */
}
.account-login .container {
	position: relative;
	/* lift content above the pseudo */
	z-index: 1;
}
.account-login .vr {
	border-left: 1px solid rgba(255,255,255,.5);
}
@media (max-width: 800px) {
	.promo {
		flex-direction: column;
		padding: 40px 5%;
	}
	.promo .left, .promo .right {
		width: 100%;
	}
	.promo .left {
		text-align: center;
	}
	.phone-frame {
		margin-top: 30px;
	}
}
.sidebar {
	position: fixed;
	top: 0;
	right: -300px;
	width: 300px;
	height: 100%;
	background: #fff;
	z-index: 2000;
	transition: right 0.3s ease;
	box-shadow: -2px 0 5px rgba(0,0,0,0.3);
}
.sidebar.open {
	right: 0;
}
.sidebar-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 1.5rem;
	background: none;
	border: none;
}

.apartments-slider .slide-item { padding: 0 0.5rem; }
    .apartments-slider .slick-list    { margin: 0 -0.5rem; }
    .slide-item img                  { width: 100%; height: auto; display: block; }
    .ratio.placeholder               { background: #e1e1e1; }
    /* === Highlights Sidebar Styles === */
.highlight-item {
  background: #f9f9f9;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}
.highlight-item .icon-container {
  background: #eaeaea;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.highlight-item .icon-container i {
  font-size: 1.25rem;
  color: #b8a775;
}
.highlight-item span {
  margin-left: 0.75rem;
  color: #91825f;
  font-weight: 500;
  line-height: 1;
}
#amenities .amenity-item img {
  height: 120px;
  object-fit: cover;
}
#amenities h2 {
  color: #0a2e6e;
}
#amenities h6 {
  font-size: 1rem;
  font-weight: 500;
  color: #0a2e6e;
}


    .apartments-slider .slide-item { padding: 0 0.5rem; }
    .apartments-slider .slick-list    { margin: 0 -0.5rem; }
    .slide-item img                  { width: 100%; height: auto; display: block; }
    .ratio.placeholder               { background: #e1e1e1; }
    /* === Highlights Sidebar Styles === */
.highlight-item {
  background: #f9f9f9;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}
.highlight-item .icon-container {
  background: #eaeaea;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.highlight-item .icon-container i {
  font-size: 1.25rem;
  color: #b8a775;
}
.highlight-item span {
  margin-left: 0.75rem;
  color: #91825f;
  font-weight: 500;
  line-height: 1;
}
#amenities .amenity-item img {
  height: 120px;
  object-fit: cover;
}
#amenities h2 {
  color: #0a2e6e;
}
#amenities h6 {
  font-size: 1rem;
  font-weight: 500;
  color: #0a2e6e;
}
.btn-contact, .btn-danger {
    background-color: #E76E4F !important;
    border-color: #E76E4F !important;
}

.btn {
	font-family: "Playfair Display", serif;
}

.login .btn{
	background: rgba(255, 255, 255, 0.3);
    color: white;
}


.navbar-light .navbar-toggler {
    border: none;
        z-index: 999;
}

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, .5);
    border-color: rgba(0, 0, 0, .1);
}

.navbar-toggler {
    padding-right: 0;
}

#nav-icon1 {
    width: 40px;
    height: 34px;
    position: relative;
    margin: 0px auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    transition: color 0.3s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
    top: 0px;
    transition: all 1.3s;
}

#nav-icon1 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: grey;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(2) {
    top: 14px;
    transition: all 1.3s;
}

#nav-icon1 span:nth-child(3) {
    top: 28px;
    transition: all 1.3s;
}

.show-pop-up .menu-not-fixed-top.sidenav {
    padding-top: 110px;
}

.menu-not-fixed-top {
    position: absolute;
}

.sidenav {
    height: 100%;
    width: 0;
    z-index: 98;
    top: 0;
    right: 0;
    background-color: #01485D;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 80px;
    width: 0px;
    display:none;
}

.sidenav.navbar-nav li a.nav-link {
    color: white;
    padding: 0.5rem 1rem !important;
    font-size: 14px;
    border-bottom: 1px solid #006670;
}

#nav-icon1.open span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

#nav-icon1.open span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.sidenav.sidebar-width {
    width: 300px;
    display:block;
}

#navToggleBtn{
  margin-left:10px;
  border: none;
    outline: none;
    box-shadow: none;
}

.navbar-expand-lg #navToggleBtn.navbar-toggler {
         display: block; 
    }
.hero-button-overlay	.arrow img{
		width:50px;
	}

.apartments-slider  .slick-next:before, .apartments-slider  .slick-prev:before {
		content:none !important;
	}

.accordion-item {
    border:none  !important;
}

.accordion-button{
	background-color: transparent !important;
}

html {
  scroll-behavior: smooth;
}

.sidebar-header .nav-link {
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-family: playfair;
    font-size: 16px;
    font-weight: 300;
}

.btn-link-area {
	color:#ae9f6a !important;
	text-decoration:none;
}

.booking-container {
	background:white;
	
}

.listOfProperties .main {
    background-image: url(https://www.destinyscotland.com/media/srtn5ood/grey-logotype.svg);
    background-repeat: repeat;
	height:100vh;
	min-height:800px;
}

.listOfProperties  .page-footer, .listOfProperties  .footer-bottom{
	display:none;

}
.slider-for .slide .info-card{
  align-self: flex-end; /* prevents full‐height stretching */
  height: auto;
}    

@media screen and (max-width:778px) {
  .hero-loaded .js-hero-overlay .arrow{
	display:none;
  }
 body .apartments-slider .slick-prev, body .apartments-slider .slick-next, .slider-for .slick-prev, body .slider-for .slick-next {
    bottom: -15px;
}
.apartments-slider .slick-prev, .slider-for .slick-prev {
    left: 0;
}
body .slider-for .slide .info-card {
max-width:60%;}

body .slider-for .slick-prev{
	left:15px;
}
body .apartments-slider .slick-prev, body .apartments-slider .slick-next, body .slider-for .slick-prev, body .slider-for .slick-next{
	bottom:-15px;
}

body .phone-mockup {
    margin-top: 0;
    margin-bottom: 0;
}

.footer-item{
	width:100% !important;
}

.logo-footer img{
	display:block;
	text-align:center;
	margin:20px auto;
}
body .hero-text-bg .overlay-text {
    position: relative;
    z-index: 1;
}
#search-apartments-container .bulletList, body .slider-thumb{
	display:none !important;
}
body .availability #elina-smart-element .form-style .DateInput {
    width: 40%;
}
body .DateRangePickerInput_arrow {
    display: none !important;}

#elina-smart-element #search-apartments-container .map-wrapper {
    overflow: hidden;
    width:100% !important;
}

#elina-smart-element .map-container.slide-out {
    opacity: 1;
    transform: none;
}

}
