/*------------- section one --------------*/
section:nth-of-type(1) {
	background-image: url(/src/images/image-water.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 300px;
	padding: 40px;
	display: flex;
/*	align-items: center;*/
	margin-top: 60px;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
section:nth-of-type(1) div {
	
}
section:nth-of-type(1) p {
	font-size: 4rem;
	line-height: 1.5;
	font-family: "Arial Black", sans-serif;
    font-weight: 900;
	text-shadow: 1px 1px 2px #000;
	color: #fff;
}
@media only screen and (max-width: 550px) {
	section:nth-of-type(1) p {
		font-size: 3rem;
	}
}
@media only screen and (max-width: 450px) {
	section:nth-of-type(1) p {
		font-size: 2rem;
	}
}

/*------------- section two -------------*//*
section:nth-of-type(2) {
	position: relative;
	height: 500px;
	padding: 40px;
	background-image: url(/src/images/barbell-background.png);
	background-repeat: no-repeat;
	background-position: center center;
    background-size: cover;
	
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, auto);
    gap: 20px;
    justify-items: center;
    align-items: start;
}*/
section:nth-of-type(2) {
    position: relative;
/*    height: 500px;*/
	padding: 40px;
/*
    background-image: url(/src/images/barbell-background.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed; 
*/
    
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    grid-template-rows: auto; /* Rows automatically adjust to content */
    gap: 40px;
    justify-items: center;
    align-items: start;
}
@media (max-width: 750px) {
    section:nth-of-type(2) {
        grid-template-columns: 1fr;
		
/*		background-attachment: scroll;*/
        background-position: center top;
		height: auto;
    }
}
section:nth-of-type(2) > div {
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 20px;
/*	border: solid 2px #000;*/
	box-sizing: border-box;
	padding: 20px;
	max-width: 500px;
	min-width: 80%;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);
	transition: box-shadow .2s ease;
}
section:nth-of-type(2) > div:hover {
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
}
section:nth-of-type(2) > div > img {
/*	height: 200px;*/
	width: 100%;
	border-radius: 10px;
	box-sizing: border-box;
}
section:nth-of-type(2) > div > h2 {
	text-align: center;
	margin: 20px 0;
	color: #000;
	font-weight: bold;
	font-size: 2rem;
}
section:nth-of-type(2) > div > div {
	color: #000;
	line-height: 1.5;
/*	text-align: center;*/
/*	margin-left: -75px;*/
	margin-bottom: 20px;
}
section:nth-of-type(2) > div > li {
	list-style: none;
}
section:nth-of-type(2) > div > li > a {
	padding: 10px 20px;
	text-align: center;
	width: 100px;
	display: flex;
	justify-content: center;
	margin: auto;
	font-weight: bold;
	font-size: 1.25rem;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
	transition: box-shadow .2s ease-in-out;
}
section:nth-of-type(2) > div > li > a:hover {
/*	box-shadow: 0px 0px 5px rgba(0, 0, 0, 1);*/
	box-shadow: 0 0 0 rgba(0, 0, 0, 1);
}
/*--------- section three ------------*/
section:nth-of-type(3) {
/*	height: 500px;*/
	background-image: url(/src/images/barbell-background.png);
	background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
	padding: 80px;
}
@media only screen and (max-width: 600px) {
	section:nth-of-type(3) {
/*		height: 600px;*/
	}
}
@media only screen and (max-width: 500px) {
	section:nth-of-type(3) {
		padding: 80px 40px;
	}
}
@media only screen and (max-width: 350px) {
	section:nth-of-type(3) {
/*		height: 700px;*/
	}
}
section:nth-of-type(3) > div {
	color: #fff;
	display: flex;
	justify-content: center;
	flex-direction: column;
	max-width: 1100px;
	margin: auto;
	gap: 40px;
}
section:nth-of-type(3) > div > h1 {
	font-size: 3rem;
	font-weight: bold;
	margin: auto;
}
@media only screen and (max-width: 825px) {
	section:nth-of-type(3) > div > h1 {
		font-size: 2.5rem;
	}
}
@media only screen and (max-width: 715px) {
	section:nth-of-type(3) > div > h1 {
		font-size: 2rem;
	}
}
@media only screen and (max-width: 400px) {
	section:nth-of-type(3) > div > h1 {
		font-size: 1.5rem;
	}
}
section:nth-of-type(3) > div > div {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
section:nth-of-type(3) > div > div > a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 5px 15px;
	min-width: 200px;
    background-color: #efe;
	color: #000;
	font-weight: bold;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease;
	font-family: "Arial Black", sans-serif;
}
section:nth-of-type(3) > div > div > a:hover {
/*    background-color: #faf0e6;*/
	transform: translateY(5px);
}
section:nth-of-type(3) > div > div {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
/*--------- section four --------*/
section:nth-of-type(4) {
	padding: 80px;
	max-width: 800px;
	display: flex;
	justify-content: center;
	margin: auto;
}
@media only screen and (max-width: 500px) {
	section:nth-of-type(4) {
		padding: 80px 40px;
	}
}
section:nth-of-type(4) > div > h1 {
	font-size: 2.5rem;
	font-weight: bold;
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}
/*------------ section five ------------*/
section:nth-of-type(5) {
    list-style: none;
    padding: 80px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 400px) {
	section:nth-of-type(5) {
		padding: 80px 20px;
	}
}
section:nth-of-type(5) > div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    width: 100%;
}
section:nth-of-type(5) > div > li {
    flex: 1 1 calc(33.33% - 20px); 
	max-width: 1000px;
    margin: 0;
    display: flex;
    justify-content: center;
}
section:nth-of-type(5) > div > li > img {
    width: 100%;
    min-width: 150px;
    max-width: 100%;
    box-sizing: border-box;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease-in-out, box-shadow 0.4s ease-in-out, border-radius 0.2s ease-in-out;
}
section:nth-of-type(5) > div > li > img:hover {
    transform: scale(1.25);
    box-shadow: 0 0 10px rgba(0, 0, 0, 1);
    border-radius: 5px;
}
@media only screen and (max-width: 800px) {
    section:nth-of-type(5) > div > li {
        flex: 1 1 calc(50% - 20px);
    }
}
@media only screen and (max-width: 500px) {
    section:nth-of-type(5) > div > li {
        flex: 1 1 100%;
    }
}


/*------------ section six ------------*/
section:nth-of-type(6) {
	background-image: url(/src/images/image-water.jpg);
	background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
	height: 700px;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
/*------------ section seven ----------------*/
section:nth-of-type(7) {
	display: flex;
	justify-content: center;
	padding: 80px;
}
section:nth-of-type(7) > figure:nth-of-type(1) {
	max-width: 500px;
	text-align: center;
	grid-column: 1; 
    grid-row: 1 / 3;
	z-index: 0;
}
section:nth-of-type(7) > figure:nth-of-type(1) h2 {
	margin-bottom: 20px;
	color: #000;
	font-weight: bold;
	font-size: 2rem;
}
.contact-form {
	max-width: 400px;
	flex: 1;
	margin: auto;
}
.contact-form label {
	display: block;
	margin-bottom: 10px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="date"] {
	width: 100%;
	padding: 10px;
	margin-bottom: 10px;
	border: none;
	border-radius: 5px;
	box-sizing: border-box;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	transition: box-shadow .2s ease;
	outline: none;
	cursor: pointer;
}
.contact-form input[type="text"]:focus,
.contact-form input[type="text"]:hover,
.contact-form input[type="email"]:focus,
.contact-form input[type="email"]:hover,
.contact-form input[type="date"]:focus,
.contact-form input[type="date"]:hover {
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}
.contact-form input[type="submit"] {
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	padding: 5px 10px;
	min-width: 150px;
	align-items: center;
	align-content: center;
	cursor: pointer;
	display: block;
	margin: auto;
	background-color: #fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	outline: none;
	border: none;
    border-radius: 5px;
	transition: box-shadow .2s ease;
}
.contact-form input[type="submit"]:hover {
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}