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

html, 
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: Segoe, 'Segoe UI', 'DejaVu Sans', 'Trebuchet MS', Verdana, 'sans-serif';
	scroll-behavior: smooth;

}

header {
	padding: 32px;
}

img {
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

footer {
	padding: 20px 50px;
	background-color: #616c58;
}

body {
	margin-left: auto;
	margin-right: auto;
	background-image: url(images/BG-REPEAT.jpg);
	background-repeat: repeat;
	background-attachment: fixed;
	background-position: top left;
}

a {
  color: #91988a; 
}


.style-logo {
	margin-left: auto;
	margin-right: auto;
	display: block;
	width: 192px;
}

.style-nav ul {
	list-style-type: none;
	
}

.style-nav ul li a {
	text-decoration: none;
	color: #FFFFFF;
	text-align: center;
	display: block;
	text-transform: uppercase;
	padding: 8px;
	padding-top: 20px;
	letter-spacing: 2px;
	
}


.hero {
	background-image: url(images/landing.jpg);
	background-size: cover;
	padding: 20px 20px 50px 20px;
	color: #FFFFFF;
	text-align: center;
}

.title {
	background-size: cover;
	padding: 50px 20px 20px 20px;
	color: #FFFFFF;
	text-align: center;
}

h1 {
	font-size: 45px;
	text-transform: uppercase;
	font-weight: 350;
	margin-bottom: 15px;
	letter-spacing: 3px;
}

h2 {
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 23px;
}

h3 {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 120px;
}

h4 {
	font-size: 16px;
	font-weight: 200;
	margin-bottom: 35px;
}

p {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 35px;
}


.hover-button {
	border: 2px #FFFFFF solid;
	padding: 6px 25px;
	border-radius: 5px;
	color: #FFFFFF;
	text-decoration: none;
	text-align: center;
	  /* Optional: adds a smooth transition effect */
  	transition: background-color 0.3s ease;
}

.hover-button:hover {
  	background-color: #616c58; /* Changes background on hover */
  	color: #ffffff;             /* Changes text color on hover */
	border: 2px #91988a solid;
}

.footer-text {
	font-size: 13px;
	margin-top: 10px;
	margin-bottom: 15px;
	text-align: center;
	color: #91988a;

}

.col {
	width: 100%;
}

.row:before, .row:after {
	content: "";
	display: table;
}

.row:after {
	clear: both;

}

.row2 {
	padding-top: 110px;
}


.footer-social-container {
  display: flex;           /* Enables Flexbox */
  justify-content: center; /* Centers icons horizontally */
  align-items: center;     /* Centers icons vertically */
  gap: 15px;               /* Adds space between icons */
  padding: 20px 0;         /* Adds breathing room to the footer */
}

.footer-social-container img {
  width: 24px;             /* Sets a consistent size for icons */
  height: auto;
}




/*Tablet View*/

@media (min-width: 768px){
	
	body {
		max-width: 1023px;
	}
	
	.style-nav ul li {
		display: inline-block;
		
	}
	
	.style-nav ul {
		text-align: center;
	}
	
	h1 {
		font-size: 40px;
		margin-bottom: 90px;
	}
	
	h2 {
		margin-bottom: 16px;
	}
	
	.col-md-one-half {
		width: 50%;
	}
	
	.col {
		float: left;
		padding: 0px 0px 0px;
	}
}

/*Desktop View*/

@media (min-width: 1024px){
	
	body {
		max-width: 1200px;
	}
	
	.style-logo {
		float: left;
	}
	
	.style-nav {
		float: right;
		padding-top: 165px;
	}
	
	.col-lg-one-fourth {
		width: 25%;
	}
}

