@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Funnel+Display:wght@300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Rubik+Dirt&display=swap');

* {
	box-sizing: border-box;
	top: 0;
	left: 0;
	margin: 0px;
}

/* Main Section */
.wrapper {
	font-family: Roboto;
	font-weight: 400;
	margin: auto;
	width: 100%;
	margin-top: 30px;
	text-align: center;
	line-height: 25px;
	display: flex;
	flex-direction: column;
}

#contact {
	margin-top: 200px;
}

.banner {
  position: relative;  
  width: 100%;
  margin-top: 100px;
  padding: 20px;
  font-family: Roboto, sans-serif;
  line-height: 20px;
  overflow: hidden;
  height: auto;
}

.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%; 
  min-width: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover; 
  z-index: -1; 
  pointer-events: none; 
}

.banner .copy {
  position: relative;
  z-index: 1;
}

@keyframes slidedown {
	0% {
		transform: translateY(-100%);
	}

	100% {
		transform: translateY(0);
	}
}


/* Copy section of banner */
.copy {
	width: 60%;
	padding: 50px;
	font-family: Roboto;
	font-weight: 400;
	line-height: 20px;
	background-color: #213147;
	color: #ffffff;
	border-radius: 10px;
	box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.8);
	animation: slidedown;
	animation-duration: 1s;
	animation-fill-mode: forward;
}

.copy h1 {
	margin-bottom: 30px;
	background: none;
	max-width: none;
	padding: 0;
}


/* Navigation Styles */
/*****************************************/
/* Navigation Bar*/
.nav {
	position: fixed;
	width: 100%;
	height: auto;
	padding: 20px;
	text-align: right;
	background: linear-gradient(#d6d6d4, #ffffff);
	border-bottom: solid 40px #213147;
	z-index: 1000;
	margin-bottom: 20px;
}

.nav li {
	margin: 10px;
}

.nav ul {
	margin: auto;
	margin-top: 8px;
	top: 0;
	list-style: none;
	display: inline-flex;
	align-items: center;
	margin-right: 50px;
	max-height: 100%;
}

/* Logo style */
.nav img {
	max-width: 112px;
	max-height: 56px;
	float: left;
}

.navtext {
  position: relative;
  text-decoration: none;
  color: black;
  text-transform: uppercase;
  padding: 10px;
  border: solid 2px transparent;
  transition: all 0.2s ease;
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 500;
  font-style: normal; 
}

.navtext:hover {
	color: #78BCD2;
	transition: all 0.2s ease;
}

.current {
	color: #78BCD2;
}

/*****************************************/
/* Style for About Section */
.about {
  width: 80%;
  margin: 0 auto;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start; 
  gap: 50px; 
}

.about figure {
  text-align: left;
  margin: 0; 
  flex: 1 0 100px;
}

.about img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3); 
}

.about figcaption {
  margin-top: 10px;
}

/* Special case: About section with ID "webdesign" */
#webdesign {
	display: flex;
  flex-wrap: nowrap;             
  justify-content: flex-start; 
}

#webdesign figure {
	width: 100%;
}

#webdesign img:hover {
	opacity: 0.6;
}

#webdesign figcaption {
	padding: 20px 0 0 20px;
}

#webdesign img {
	width: 50%;
	margin: 30px;
}

#UI img {
	width: 60%;
	box-shadow: none;
	margin: auto;
}

#UI img:hover {
	opacity: 0.6;
}

#UI figcaption {
	margin: auto;
	margin-top: 10px;
	width: 60%;
}

#ai {
	text-align: left;
}

#grey {
	width: 100%;
	height: auto;
	background: #f5f5f5;
}

#white {
	background: #fff;
}

h2 {
  text-align: left;
  padding: 50px 0px 0px 100px;
  font-size: 30px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 900;
  font-style: italic;
  text-decoration: underline;
  color: #78BCD2;
}

h3 {
  text-align: left;
  padding: 50px 0px 0px 50px;
  font-size: 30px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 900;
  font-style: normal;
}

 h1 {
  margin: auto;
  align-items: center;
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.program_icon h3 {
  text-align: center;
  padding: 20px;
}

/* Adjusting width of photos on photo page */
#photos.about figure {
  flex: 1 0 300px;
}

#audio.about figcaption {
  width: 300px;
  text-align: center;
  gap: 30px;
}

#audio {
  margin-bottom: 50px;
}

iframe {
  width: 50%;
  aspect-ratio: 16 / 9; 
  border: none;
}


/*****************************************/
/* Footer of pages */
footer {
	border-top: solid 2px;
	border-image: linear-gradient(to right, transparent, black, transparent) 1;
	height: 30px;
	text-align: center;
	padding-top: 5px;
	margin-top: 40px;
}

/*****************************************/
/* Header for sections */
.heading {
	margin: auto;
	margin-bottom: 20px;
	padding-bottom: 10px;
	text-align: center;
	border-bottom: solid 2px;
	width: 30%;
	border-image: linear-gradient(to right, transparent, black, transparent) 1;
}

/*****************************************/
/* Form Styles */
form {
	width: 50%;
	margin: auto;
	padding: 10px;
	border: solid 2px black;
	border-radius: 10px;
	text-align: left;
}

label {
	display: block;
	padding-bottom: 10px;
}

form input[type="text"],
form input[type="email"],
form textarea {
	font-family: roboto;
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  transition: border 0.3s, box-shadow 0.3s;
}

form button {
	max-height: 30px;
	max-width: 150px;
	border-radius: 10px;
	background-color: transparent;
}

form button:hover {
	background-color: #c4c4c4;
}


/*************************************************/
/* Style for responsiveness */
@media only screen and (max-width: 768px) {
    
.wrapper {
	max-width: 100%;
}

#multimedia {
	margin-top: 120px;
}

#contact {
	margin-top: 300px;
}


.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column; 
    align-items: center; 
  }

.nav ul {
    display: flex;
    flex-direction: row; 
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
  }

.nav li {
    margin: 15px 0; 
  }

.nav img {
  	margin-top: 20px;
    margin-bottom: 20px; 
  }

.banner {
    	margin-top: 100px;
    	height: auto;
    }

.copy {
		margin: auto;
		margin-top: 150px;
		width: 100%;
		padding: 20px;
	}

.about {
    flex-direction: column; 
  	align-content: center;
  }

#webdesign {
  width: 100%;
  flex-direction: column;             
  align-items: center; 
}

#webdesign img {
	width: 80%;
	margin: 30px;
}
  
 #UI img {
	width: 70%;
	margin: auto;
}
  
.about figure {
    width: 100%; 
    max-width: 300px; 
  }

h2 {
		text-align: center;
		padding: 25px 0px 0px 0px;
}

h1 {
	line-height: 35px;
}

#photos.about figure {
	max-width: 100%;
	flex: 1 0 100px;
}

iframe {
	 width: 100%;
  aspect-ratio: 16 / 9; 
  border: none;
}

form {
	width: 90%;
	margin: auto;
}

}
