@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Belleza&family=Nunito+Sans:opsz,wght@6..12,200;6..12,300;6..12,400;6..12,500&display=swap');

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

html{
	scroll-padding-top: 100px;
	scroll-behavior: smooth;
	font-size: 16px;
}

*{
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body{
	margin: 0;
}

.container{
	width: 100%;
	position: relative;
	margin: auto;
}

section{
	min-height: 100vh;
	min-width: 90%;
	margin: auto;
}

#Introduction{
	background-color: #FFFFFF;
}

#Gallery{
	background-color: #FFFFFF;
}

#Contact{
	background-color: #282828;
}

h2{
	font-size: 2rem;
	font-family: 'Belleza', sans-serif;
	letter-spacing: 0.5rem;
	text-align: center;
}

p{
	font-family: 'Nunito Sans', sans-serif;
	font-size: 1rem;
}

/* Navigation */

header{
	min-height: 100px;
	background-color: #282828;
	position: sticky;
	top:0;
	left: 0;
	z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Logo{
	width: 8%;
	border-radius: 100%;
	min-height: 5%;
	min-width: 5%;
	padding: 1%;
}

.navi{
	list-style: none;
	align-items: center;
	gap: 90%;
	margin-right: 90%;
	display: flex;
    justify-content: center;
	
}

.navi a:link{
	color:#FFFFFF;
	text-decoration: none;
	font-size: 1.25rem;
	font-family: 'Belleza', sans-serif;
}
.navi a:hover{
	color:#9D9D9D;
	border-bottom: solid 2px #9D9D9D;
	padding-bottom: 2%;
	transition: 0.3s ease-in;
}
.navi a:active{
	color:#CDCDCD;
}
.navi a:visited{
	color:#CDCDCD;
}

/* Home */

#Home{
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	background-image: url("images/b&g Joe.jpg");
}

.home-text{
	display: flex;
	flex-direction: column;
	color: #FFFFFF;
	justify-content: center;
	align-content: center;
	padding-top: 30vh;
}

h4{
	color: #FFFFFF;
	font-size: 1.5rem;
	font-family: 'Nunito Sans', sans-serif;
}

h1{
	font-size: 6rem;
	color: #FFFFFF;
	font-family: 'Belleza', sans-serif;
}

h1, h4{
	padding-left: 10%;
}

/* Introduction */

#Introduction{
	height: auto;
}

.row{
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	padding-top: 5%;
	padding-bottom: 5%;
}

.CD{
	width: 130%;
	margin-left: -50%;
    animation: rotate 10s linear infinite;
}

.aside-right{
	padding-right: 10%;
	padding-left: 20%;
}

.aside-right p{
	text-align:justify;
}

.aside-right h2{
	text-align: left;
	padding-bottom: 3%;
}

/* Gallery */

#Gallery h2{
	padding-top: 5%;
}

.container-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 2%;
	padding: 3% 20% 10% 20%;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s;
}

.gallery-item img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10%;
   }

.gallery-item:hover {
	transform: scale(1.1);
}

.overlay {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	opacity: 0;
	transition: opacity 0.3s;
	border-radius: 10%;
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 500;
	text-align: center;
}

audio{
	width: 80%;
	height: 30%;
}


.gallery-item:hover .overlay {
	opacity: 1;
}

/* Biography */

#Biography{
	background-image:url("images/biography B&W.jpg") ;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;	
}

.biography-container{
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.rectangle{
	border: 2px #282828 solid;
	margin: 10% 25% 10% 25%;	
}
.textbox {
	background: rgba(255,255,255,0.70);
	padding: 5%;
	text-align: center;
	margin: 5%;
}

.textbox p{
	text-align: justify;
	padding-top: 3%;
}

/* Contact */

.left h2{
	text-align: left;
	color: #FFFFFF;
	margin-bottom: 5%;
}

.contact-logo{
	width: 8%;
	margin-right: 5%;
}

.contact-container{
	display: flex;
	align-content: center;
	justify-content: center;
	margin-left: 10%;
	margin-right: 10%;
}

.left {
	flex: 1;
	padding: 5%;
}

.right {
    flex: 1;
    padding-top: 5%;
    padding-right: 10%;
    padding-left: 0%;
    padding-bottom: 5%;
    font-family: 'Nunito Sans', sans-serif;
    color: #FFFFFF;
}

label {
	display: block;
	margin-bottom: 1%;
	font-size: 1.25rem;
}

input, textarea {
    width: 100%;
	height: 1.5rem;
    margin-bottom: 3%;
    box-sizing: border-box;
    border-bottom: 1px solid #FFFFFF;
	border-top: none;
	border-left: none;
	border-right: none;
	background-color:#282828;
	color:#FFFFFF;
}

button {
	font-size: 1.25rem;
	background-color: #282828;
	color: #fff;
	padding: 2% 10%;
	margin-top: 5%;
	border: 2px solid #FFFFFF;
	border-radius: 15px;
	cursor: pointer;
}

button:hover{
	color: #9D9D9D;
	border-color: #9D9D9D;
	transition: 0.2s ease-in;
}

button:active{
	color: #CDCDCD;
	border-color: #CDCDCD;
}

button:visited{
	color: #CDCDCD;
	border-color: #CDCDCD;
}

/* Footer */

footer{
	background-color: #282828;
	color: #FFFFFF;
	font-size: 0.75rem;
	padding-left: 14%;
}



@media only screen and (max-width:1024px){
	html{
		font-size: 14px;
	}
	header{
		min-height: 50px;
	}
	
	section{
		margin-top: 0;
	}
	
	.navi a:link{
		font-size: 1rem;
	}
	
	h1{
		font-size: 5rem;
	}
	
	h2{
		font-size: 1.5rem;
	}
	
	h4{
		font-size: 1.25rem;
	}
	p{
		font-size: 0.9rem;
	}
	
	label{
		font-size: 1rem;
	}

	.logo{
		padding-left: 3%;
	}
	.row{
		display: block;
	}
	.navi li {
		padding-bottom: 2.5%;
	}
	
	.row{
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	padding-top: 5%;
	padding-bottom: 5%;
	}	

	.CD{
		width: 130%;
		margin-left: -50%;
		animation: rotate 10s linear infinite;
	}

	.aside-right{
		padding-right: 8%;
		padding-left: 20%;
	}

	.aside-right p{
		text-align:justify;
	}

	.aside-right h2{
		text-align: left;
		padding-bottom: 3%;
	}
	.rectangle{
		border: 2px #282828 solid;
		margin: 10% 20% 10% 20%;	
	}
}

/* Tablet */
@media only screen and (max-width:768px){
	html{
		font-size: 13px;
	}
	section{
		min-height: auto;
		min-width: 90%;
		margin: auto;
	}
	section{
		min-height: auto;
	}
	header{
		min-height: 40px;
	}
	
	.navi a:link{
		font-size: 1rem;
	}
	
	h1{
		font-size: 5rem;
	}
	
	h2{
		font-size: 1.5rem;
	}
	
	h4{
		font-size: 1.25rem;
	}
	
	p{
		font-size: 0.8rem;
	}	
	
	.overlay{
		font-size: 0.8rem;
	}
	label{
		font-size: 1rem;
	}
	
	#Home{
		min-height: 100vh !important;
	}

	.logo{
		padding-left: 3%;
	}

	.navi li {
		padding-bottom: 2.5%;
	}
	
	.row{
		display: flex;
		flex-direction: column;
		align-content: center;
		justify-content: center;
		padding-top: 5%;
		padding-bottom: 5%;
	}	

	.CD{
		width: 20%;
		margin-left: 0%;
		margin-top: -15%;
		animation: rotate 10s linear infinite;
	}
	
	.aside-left{
		display: flex;
		justify-content: center;
	}

	.aside-right{
		padding-right: 15%;
		padding-left: 15%;
	}

	.aside-right p{
		text-align:justify;
	}

	.aside-right h2{
		text-align: left;
		padding-bottom: 3%;
	}
	
	.rectangle{
		border: 2px #282828 solid;
		margin: 10% 15% 10% 15%;	
	}
	.container-gallery {
		padding: 3% 10% 10% 10%;
	}
}
	
/* Mobile L */
@media only screen and (max-width:425px){
	html{
		font-size: 12px;
	}
	section{
		min-height: auto;
		min-width: 90%;
		margin: auto;
	}
	section{
		min-height: auto;
	}
	
	header{
		min-height: 30px;
	}
	
	.navi a:link{
		font-size: 0.75rem;
	}
	
	h1{
		font-size: 4rem;
	}
	
	h2{
		font-size: 1.5rem;
	}
	
	h4{
		font-size: 1rem;
	}
	
	p{
		font-size: 0.7rem;
	}	
	.overlay{
		font-size: 0.5rem;
	}
	
	label{
		font-size: 0.85rem;
	}
	
	.home-text{
		padding-top: 70vh;
	}
	
	#Home{
		min-height: 100vh !important;
	}

	.logo{
		padding-left: 3%;
	}

	.navi li {
		padding-bottom: 2.5%;
		margin-right: 0%;
	}
	
	.navi{
		list-style: none;
		align-items: center;
		gap: 90%;
		margin-right: 90%;
		display: flex;
		justify-content: center;
	}
	
	#Home{
		background-repeat: no-repeat;
		background-attachment: fixed;
		background-size: cover;
		background-position: center;
		background-image: url("images/b&g Joe 3.jpg");
	}
	.row{
		display: flex;
		flex-direction: column;
		align-content: center;
		justify-content: center;
		padding-top: 5%;
		padding-bottom: 5%;
	}	

	.CD{
		width: 20%;
		margin-left: 0%;
		margin-top: -15%;
		margin-bottom: 10%;
		animation: rotate 10s linear infinite;
	}
	
	.aside-left{
		display: flex;
		justify-content: center;
	}

	.aside-right{
		padding-right: 10%;
		padding-left: 10%;
	}

	.aside-right p{
		text-align:justify;
	}

	.aside-right h2{
		text-align: left;
		padding-bottom: 3%;
	}

	.biography-container{
		display: flex;
		align-items: center;
		justify-content: center;
		box-sizing: border-box;
	}

	.rectangle{
		border: 2px #282828 solid;
		margin: 10% 5% 10% 5%;	
	}
	
	.left h2{
		text-align: left;
		color: #FFFFFF;
		margin-bottom: 5%;
		margin-right: 20%;
	}

	.contact-logo{
		width: 8%;
		margin-right: 5%;
	}

	.contact-container{
		display: block;
		padding-top: 5%;
	}
	
	.left{
		display: flex;
		align-items: center;
		padding: 0;
	}
	
	.logo{
		margin: 0%;
		padding: 0;
	}

	.right {
		flex: 1;
		padding-top: 5%;
		padding-right: 10%;
		padding-left: 0%;
		padding-bottom: 5%;
		font-family: 'Nunito Sans', sans-serif;
		color: #FFFFFF;
	}
	.container-gallery {
		padding: 3% 10% 10% 10%;
	}
}

/* Mobile S */
@media only screen and (max-width:320px){
	html{
		font-size: 10px;
	}
	section{
		min-height: auto !important;
	}
	
	.home-text{
		padding-top: 50vh;
	}
	
	header{
		min-height: 30px;
	}
	
	.navi a:link{
		font-size: 0.75rem;
	}
	
	h1{
		font-size: 4rem;
	}
	
	h2{
		font-size: 1.5rem;
	}
	
	h4{
		font-size: 1rem;
	}
	p{
		font-size: 0.5rem;
	}
	
	.overlay{
		font-size: 0.5rem;
	}
	label{
		font-size: 0.85rem;
	}
	
	#Home{
		min-height: 100vh !important;
	}

	.logo{
		padding-left: 3%;
	}

	.navi li {
		padding-bottom: 2.5%;
		margin-right: 0%;
	}
	
	.navi{
		list-style: none;
		align-items: center;
		gap: 90%;
		margin-right: 90%;
		display: flex;
		justify-content: center;
	}

	#Home{
		background-repeat: no-repeat;
		background-attachment: fixed;
		background-size: cover;
		background-position: center;
		background-image: url("images/b&g Joe 2.jpg");
	}
	.row{
		display: flex;
		flex-direction: column;
		align-content: center;
		justify-content: center;
		padding-top: 5%;
		padding-bottom: 5%;
	}	

	.CD{
		width: 20%;
		margin-left: 0%;
		margin-top: -15%;
		margin-bottom: 10%;
		animation: rotate 10s linear infinite;
	}
	
	.aside-left{
		display: flex;
		justify-content: center;
	}

	.aside-right{
		padding-right: 10%;
		padding-left: 10%;
	}

	.aside-right p{
		text-align:justify;
	}

	.aside-right h2{
		text-align: left;
		padding-bottom: 3%;
	}

	.biography-container{
		display: flex;
		align-items: center;
		justify-content: center;
		box-sizing: border-box;
	}

	.rectangle{
		border: 2px #282828 solid;
		margin: 10% 5% 10% 5%;	
	}
	
	.left h2{
		text-align: left;
		color: #FFFFFF;
		margin-bottom: 5%;
		margin-right: 20%;
	}

	.contact-logo{
		width: 8%;
		margin-right: 5%;
	}

	.contact-container{
		display: block;
		padding-top: 5%;
	}
	
	.left{
		display: flex;
		align-items: center;
		padding: 0;
	}
	
	.logo{
		margin: 0%;
		padding: 0;
	}

	.right {
		flex: 1;
		padding-top: 5%;
		padding-right: 10%;
		padding-left: 0%;
		padding-bottom: 5%;
		font-family: 'Nunito Sans', sans-serif;
		color: #FFFFFF;
	}
	.container-gallery {
	padding: 3% 10% 10% 10%;
	}
}