@font-face {
    font-family: 'Barlow Condensed';
    src: url('/fonts/barlow-condensed-v3-latin-600.woff2') format('woff2'),
         url('/fonts/barlow-condensed-v3-latin-600.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.header{
		background-size: cover;
		background-color: #32cfff;
  	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(/img/background.svg);
    background-position: center;
	  border-style: solid;
  	border-width: 0px 0px 1px 0px;
  	border-color: #55A1B3;
    
}
body {
	font-family: 'Nunito Sans', Arial, sans-serif;
	line-height: 1.6;
	background-color: #111;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
	max-width: 1500px;
	margin: 0 auto;
}

.nav-links {
	list-style: none;
	display: flex
}

.nav-links li {
	padding: 0 20px
}

.nav-links a {
	text-decoration: none;
	color: #f5deb3;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 18px
}

.menu-icon {
	display: none;
	cursor: pointer
}

	.hero {
		background-image: url("img/HighCraftHero.webp");
		background-size: cover;
		min-height: 1000px;
		background-position: bottom;
	}
.intro {
    padding: 0px 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(24px, 4vw, 45px);
    font-weight: 600; /* Use the semi-bold weight */
  	color: #f5deb3;
	background-color: #32cfff;
  	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(/img/background.svg);
	/* border-top: 1px solid #54E500;;  color border at the top */
	/* border-bottom: 1px solid #54E500;;  color border at the bottom */
}
.indoor {
    padding:10px 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(24px, 2vw, 72px);
    font-weight: 600; /* Use the semi-bold weight */
  	color: #f5deb3;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1)),url(/img/indoor.webp);
    background-size: cover;
    background-position: center;
	border-top: 1px solid #69D5FF;
	border-bottom: 1px solid #55A1B3;
	min-height: 440px;
}
@media (max-width:768px) {
	
	.nav-links {
		display: none;
		width: 100%;
		flex-direction: column;
		align-items: center
	}

	.nav-links a {
		padding: 10px;
		width: 100%;
		text-align: center
	}

	.menu-icon {
		display: block;
		color: #55A1B3
	}

	.nav-links.active {
		display: flex
	}
}

.container {
	/*width: 90%;*/
	margin: 0 auto;
	max-width: 1200px;
	overflow: hidden;
	display: flex;
  flex-wrap: wrap;
  
	padding: 20px 0px 20px 0px;
}
.containerfoot {
    width: 90%;
    margin: 0 auto;
    max-width: 1500px;
    padding: 0 20px;
    overflow: hidden;
}

.logo img {
	height: 64px;
	/*! line-height: 0; */
}
.logo {
	line-height: 0;
}
.logo2 img {
	height: 72px
}

.product-showcase {
	padding: 50px 0;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
background: linear-gradient(to bottom, #918f8c, #f5deb3); 
	
}

.product {
	text-align: center;
	flex-basis: calc(21% - 0px);
	background-color: #000;
	border-radius: 33px;
	box-shadow: 4px 4px 4px rgba(0, 0, 0, .3);
	overflow: hidden;
	margin: 0px 0px 30px 3%;
	border: 1px solid #55A1B3;
	display: flex; /* Make it a flex container */
    flex-direction: column; /* Stack children vertically */
	font-family: 'Barlow Condensed', sans-serif;
}

.product img {
	width: 100%;
	height: auto
}

.product a {
	font-size: 18px;
	font-weight: bold;
	color: #000
}

.product h3 {
	padding: 0 20px;
}

.product h3 {
	font-size: 24px;
	margin: 10px 0;
	color: #fff;
}

.product p {
	font-size: 16px;
	margin-bottom: 20px
}
.product a.cta-button {
    margin-top: auto; /* Pushes the button to the bottom */
    margin-bottom: 0px; /* Adjusted for spacing from the bottom edge */
    width: calc(100% - 0px); /* Adjust width as needed, accounting for padding */
    position: relative; /* Ensure positioning within flex container */
    border-radius: 0 0 33px 33px; /* Match the product's border-radius at the bottom */
    /*! border-bottom: solid 2px #54E500; */
}
.cta-button {
	background-color: #55A1B3;
	color: #fff;
	padding: 10px 20px;
	text-decoration: none;
	/*! border-radius: 5px; */
	display: inline-block;
	transition: background-color .3s ease
}

.cta-button:hover {
	background-color: #55A1B3
}

footer {
	background-color: #32cfff;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(/img/background.svg);
    background-size: cover;
    background-position: center;
	color: #fff;
	padding: 20px 0;
	text-align: center;
	box-shadow: 0 -2px 4px rgba(0, 0, 0, .1);
	border-top: solid 1px #55A1B3;
}

footer p {
	font-size: 14px
}
@media (max-width:550px) {
	.logo2 img {
	height: 45px
}
}
@media (max-width: 1200px) and (min-width: 800px) {
  .product {
    flex-basis: calc(50% - 63px);
    border-radius: 20px;
    margin: 0px 0px 40px 45px;
  }
		.product h3 {
	font-size: 24px;
	margin: 20px 0
	}
	.product a.cta-button {
    margin-top: auto; /* Pushes the button to the bottom */
    margin-bottom: 0px; /* Adjusted for spacing from the bottom edge */
    width: calc(100% - 0px); /* Adjust width as needed, accounting for padding */
    position: relative; /* Ensure positioning within flex container */
    border-radius: 0 0 20px 20px; /* Match the product's border-radius at the bottom */
}
}
@media (max-width: 1200px) and (min-width: 601px) {
	.hero {
		background-size: cover;
		min-height: 467px;
	}
}
@media (max-width: 600px) and (min-width: 0px) {
	.hero {
		background-size: cover;
		min-height: 250px;
	}
}
@media (max-width: 1700px) and (min-width: 1201px) {
	.hero {
		background-size: cover;
		min-height: 650px;
	}
}
@media (max-width: 800px) and (min-width: 0px) {
  .product {
    flex-basis: calc(90% - 0px);
    border-radius: 10px;
    margin: 5% 0px 0px 5%
	}
.product h3 {
	font-size: 29px;
	margin: 20px 0
	}

	.product a.cta-button {
    margin-top: auto; /* Pushes the button to the bottom */
    margin-bottom: 0px; /* Adjusted for spacing from the bottom edge */
    width: calc(100% - 0px); /* Adjust width as needed, accounting for padding */
    position: relative; /* Ensure positioning within flex container */
    border-radius: 0 0 10px 10px; /* Match the product's border-radius at the bottom */
}
	.product-showcase {
		padding: 0px 0;}
}
@media only screen and (min-device-width : 390px) and (max-device-width : 1500px) and (orientation : landscape) {
  .product {
    flex-basis: calc(50% - 63px);
    border-radius: 20px;
    margin: 0px 0px 40px 45px;
  }
	.product h3 {
	font-size: 24px;
	margin: 20px 0
	}
	.product a.cta-button {
    margin-top: auto; /* Pushes the button to the bottom */
    margin-bottom: 0px; /* Adjusted for spacing from the bottom edge */
    width: calc(100% - 0px); /* Adjust width as needed, accounting for padding */
    position: relative; /* Ensure positioning within flex container */
    border-radius: 0 0 20px 20px; /* Match the product's border-radius at the bottom */
}
}
