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

@import url('https://googleapis.com');

*,
*::before,
*::after 
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}

:root {
 /* Demonstration image from Unsplash by Paul Gilmore. For best results, replace this URL with your own high-quality background image.*/
	 --fsi-bg-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?q=80&w=1400');
	 --fsi-min-height: 100vh;
	 --fsi-padding: 2rem 1.5rem;
	 --fsi-text-color: #ffffff;
	 --fsi-overlay-color: rgba(0, 0, 0, 0.4);
	 --fsi-cta-border-color: #ffffff;
	 --fsi-cta-border-color-2: #142035;
}

main {
	flex: 1;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	margin: 0;
	width: 100%;
}

/* Default banner */
.banner {
	position: relative;
	width: 100%;
	height: 20rem;
	padding: 0 50px;
	overflow: hidden;
	backface-visibility: hidden;
	background: #142035;
	line-height: 5rem;
}

.banner h1 {
	color: #EEE;
	font-size: 4vw;
	margin: 0;
	text-transform: uppercase;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}

.banner h3 {
	color: #EEE;
	font-size: 2vw;
	margin: 0;
	text-transform: uppercase;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-weight: 200;
	padding-top:5rem;
}


@media(max-width: 600px) {
.banner {
	height: 15rem;
	line-height: 3rem;
  }

.banner h1 {
	font-size: 5vw;
  }
	
.banner h3 {
	font-size: 3vw;
	margin: 0;
	text-transform: uppercase;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
  }
}

.main-content {
	padding: 40px 40px;
}

.main-content img {
	width: 100%;
}

.caption {
	border-bottom: 1px solid var(--fsi-cta-border-color-2);
	border-bottom-width: 45%;
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.caption h4 {
	border-left: 2px solid var(--fsi-cta-border-color-2);
	padding-left: 10px;
	font-weight: 400;
	font-family: 'Elms Sans', sans-serif;
}

.caption p {
	text-align: justify;
	text-align-last: left;
	font-family: 'Elms Sans', sans-serif;
}

.row-container {
	margin-top: 15px;
	display: flex; 
	justify-content: center; 
	align-items: center;
}

.image-container {
  display: flex;
}

.image-container img:not(:last-child) {
  margin-right: 15px; /* Only applies to non-last images */
}

.image-container img {
  width: 49.5%; /* Each takes half the width on desktop */
  height: auto;
}

/* Stack on screens smaller than 768px */
@media screen and (max-width: 768px) {
  .image-container {
    flex-direction: column;
	  gap: 15px;
  }
  .image-container img {
    width: 100%; /* Each takes full width on mobile */
  }
}

.click-section {
	display: flex;
	color: var(--fsi-cta-border-color-2);
	justify-content: center;
	margin-bottom: 40px;
	font-size: 24px;
}

/* PROJECT SLIDER */
.more-projects {
	padding: 60px 40px;
	background: #f5f5f5;
}

.more-projects-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}

.more-projects h2 {
	font-size: 24px;
	font-weight: 600;
}

.nav-buttons {
	display: flex;
	gap: 10px;
}

.nav {
	border: none;
	background: transparent;
	font-size: 28px;
	cursor: pointer;
	opacity: 0.6;
}

.nav:hover {
	opacity: 1;
}

.projects-slider {
	display: flex;
	gap: 25px;
	overflow-x: auto;
	scroll-behavior: smooth;
}

.projects-slider::-webkit-scrollbar {
	display: none;
}

.project {
	min-width: 320px;
	flex: 0 0 auto;
	position: relative;
	overflow: hidden;
}

.project img {
	display: block;
	width: auto;
	height: 300px;
	object-fit: cover;
	transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.6);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.project:hover img {
	transform: scale(1.1);
}

.project:hover .overlay {
	opacity: 1;
}




