/* Variables */
:root {
  --my-bg-blue: #003153;
  --my-bg-gold: #CFB53B;
}
/* Variables end */

html {
  scroll-padding-top: 250px; /* Adjust this value to the height of your fixed header */
}

/* Navbar */ 
.nav-link {
	color: var(--my-bg-blue);
	font-weight: 500;
	}
/* Navbar end*/

/* Hero */
.my-hero {
	/* background-image: url('/img/Simcoe Suite Living Room 2013 2.jpg'); */
	background-image: url('/img/Simcoe Suite Bedroom 2013 1.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	/* height: 100vh; */
	/* background-color: var(--my-bg-gold); */
	padding-top: 120px;
	padding-right: 20px;
	padding-bottom: 80px;
	padding-left: 20px;
	text-align: center;
	}

.my-hero-text-box {
	color: var(--my-bg-blue);
	text-align: center;
	padding-top: 80px;
	/* padding-right: 80px; */
	padding-bottom: 80px;
	/* padding-left: 80px; */
	backdrop-filter: blur(5px);
	/* height: 60vh; */
	/*max-width: 800px; */
	}

h1.my-hero-text {
	font-size: 48px;
	font-weight: 700;
	}

/* Hero end */

/* Contact */
.my-contact {
	background-color: var(--my-bg-blue);
	color: white;
	padding: 30px 20px;
	text-align: center;
	}

.my-contact h3 {
	color: var(--my-bg-gold);
    margin-bottom: 10px;
	font-size: 20px;
	font-weight: 700;
	}
/* Contact end*/

/* About */
.my-about {
	/* background-image: url('/img/Simcoe Suite Bedroom 2013 1.jpg'); */
	background-image: url('/img/Simcoe Suite Living Room 2013 2.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding-top: 80px;
	padding-right: 20px;
	padding-bottom: 80px;
	padding-left: 20px;
	/* background-color: var(--my-bg-gold); */
	/* color: var(--my-bg-blue); */
	/*padding: 80px 20px; */
	}

.my-about-text-box {
	backdrop-filter: blur(3px);
} 	 
	
h2.my-about {
	background-image: none;
	/* margin-top: 60px; */
	/* margin-bottom: 0px; */

	}
	
.stat-number {
	font-size: 48px;
	font-weight: bold;
	color: var(--my-bg-blue);
	/* margin-bottom: 30px; */
	text-align: center;
	}

.stat-label {
	font-size: 16px;
	color: var(--my-bg-blue);
	text-align: center;
	margin-bottom: 50px;
	}		
/* About end */

/* Services */
.my-services {
	background-color: var(--my-bg-blue);
	color: white;
	padding: 50px 20px;
	}
	
.my-services-card {
	background: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding-top: 40px;
	padding-right: 20px;
	padding-bottom: 40px;
	padding-left: 10px;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	}

.my-services-card h3 {
	color: var(--my-bg-gold);
	margin-bottom: 20px;
	font-size: 24px;
	}

.my-services-card ul {
	list-style: none;
	color: white;
	}

.my-services-card li {
	padding: 8px 0;
	padding-left: 25px;
	padding-right: 25px;
	position: relative;
	}

.my-services-card li:before {
	content: "•";
	color: var(--my-bg-gold);
	font-weight: bold;
	position: absolute;
	left: 0;
	}

h2.my-services {
	text-align: center;
	font-size: 36px;
	margin-bottom: 20px;
	color: var(--my-bg-gold);
	}

.my-services-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 50px;
	color: white;
	font-size: 18px;
	}
	
/* Services end */

/* Footer */
.my-footer {
	background-color: var(--my-bg-gold);
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 30px;
	padding-left: 0px;
	}
	
.my-footer h3 {
    margin-bottom: 0px;
	font-size: 20px;
	color: #003153;
	}
		
.my-footer ul {
	list-style: none;
	padding-left: 0px
	}
	
/* Footer end */	

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--my-bg-blue);
	}