@import url('https://fonts.googleapis.com/css2?family=Aubrey&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
	margin: 0;
	box-sizing: border-box;
}
img {
	max-width:100%;
	border-radius: 10px;
}
.clearfix {
	clear: both;
}

/* BASE */
body {
	font-family: "Roboto", sans-serif;
	font-size: 18px;
	font-weight: 400;
}
header {
	padding: 20px;
}
#logo {
	float:left;
	width: 400px;
}
nav {
	float :right;
}
nav ul {
	list-style: none;
}
nav ul li {
	float: left;
	padding: 10px;
	margin: 10px;
	background-color: #D68189;;
	border-radius: 10px;
}
nav ul li a {
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
}
main {
	min-height: 80;
}

/* FOOTER */
footer {
	text-transform: capitalize;
	font-size: 15px;
	padding: 20px;
	background-color: #C6A49A;
}
footer img {
	width: 200px;
	float: left;
}
p#copyright {
	margin-left: 20px;
	float: left;
}
p#designer {
	float: right;
}

/* SECTIONS */
section {
	padding: 30px;
}
section.white {
	background-color: #ffffff;
}
section.lighttan {
	background-color: #EEEBE6;
}
.content {
	width: 960px;
	margin: 0 auto;
	padding: 50px 0;
}

/* TEXT */
h1#welcome {
	  font-family: "Aubrey", system-ui;
  font-weight: 800;
  font-size: 40px;
  text-align: center;
  text-transform: capitalize;
  padding-bottom: 20px;
}
h2 {
	font-weight: 400;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: .8em;
}
h3 {
	text-align: center;
	text-transform: capitalize;
	margin: 10px 0;
}
p.subtitle {
	font-weight: 300;
	text-align: center;
}

/*FEATURED LESSON*/

.featured h2 {
	letter-spacing: .6em;
	text-align: center;
	margin-bottom: 5px;
}

.featured .subtitle {
	text-align: center;
	font-size: 14px;
	margin-bottom: 30px;
}

.featured img {
	width: 100%;
	border-radius: 18px;
	margin-bottom: 30px;
}

.featured-info {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.featured-text {
	width: 620px;
	font-size: 15px;
	line-height: 1.5;
}

.featured-text h3 {
	margin-bottom: 10px;
}

.featured-text ol {
	margin-left: 20px;
}

.enroll {
	width: 260px;
	background-color: #C6A49A;
	border-radius: 16px;
	padding: 25px;
	text-align: center;
	color: #ffffff;
}

.enroll h3 {
	margin-bottom: 10px;
}

.enroll .price {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background-color: #E94377;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	font-weight: 700;
	margin: 20px auto;
}

.enroll button {
	background-color: #E94377;
	color: #ffffff;
	border: none;
	padding: 10px 20px;
	border-radius: 10px;
	cursor: pointer;
}

/* LESSONS */
#lessons {
	width: 960px;
	margin: 40px auto 0;
	display: flex;
	justify-content: space-between;
}


.lesson {
	background-color: #ffffff;
	border-radius: 16px;
	width: 220px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 430px;
	box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.lesson p {
	font-size: 13px;
	line-height: 1.4;
	text-align: center;
	flex-grow: 1;
}

.skill {
	margin-top: 15px;
	font-size: 12px;
	text-align: center;
	text-transform: uppercase;
	width: 110px;
	padding: 8px;
	background-color: #E94377;
	border-radius: 10px;
	color: #ffffff;
}


p.level {
	color: #ffffff;
	font-size: 20px;
	font-weight: 700;
}

.lesson h3 {
	margin: 6px 0 8px;
	font-size: 16px;
}


/* ABOUT */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	background-color: #ffffff;
	color: #333;
}

.clearfix {
	clear: both;
}

/* =====================
   HEADER
===================== */
header {
	width: 100%;
	padding: 20px 40px;
	background-color: #ffffff;
}

#logo {
	float: left;
}

#logo img {
	height: 50px;
}

nav {
	float: right;
	margin-top: 10px;
}

nav ul {
	list-style: none;
}

nav ul li {
	display: inline-block;
	margin-left: 12px;
}

nav ul li a {
	text-decoration: none;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 1px;
	padding: 8px 14px;
	border-radius: 8px;
	background-color: #d9898c;
	color: #ffffff;
}

nav ul li a:hover {
	background-color: #c77679;
}

/*(ABOUT)*/
#pagelabel {
	height: 90px;
	background-color: #C6A49A;
	display: flex;
	align-items: center;
	padding-left: 40px;
	position: relative;
	overflow: hidden;
}

/* background image as <img> */
.pagelabel-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

/* keep text on top */
#pagelabel h1 {
	position: relative;
	z-index: 1;
	font-weight: 300;
	font-size: 38px;
	letter-spacing: 3px;
	color: #ffffff;
	text-transform: uppercase;
}

/*ORIGAMI MASTERS*/
#origami-masters {
	text-align: center;
	padding: 80px 40px 60px;
	background-color: #ffffff;
}

#origami-masters h2 {
	letter-spacing: 6px;
	font-weight: 400;
	font-size: 18px;
	margin-bottom: 10px;
}

#origami-masters .subtitle {
	font-size: 13px;
	color: #777;
	margin-bottom: 50px;
}

.masters-wrapper {
	display: flex;
	justify-content: center;
	gap: 80px;
}

.master-card {
	text-align: center;
}

.master-card img {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 20px;
<img src="images/master01.jpg">
<img src="images/master02.jpg">
}

.master-card h3 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 5px;
}

.master-card span {
	font-size: 12px;
	color: #777;
}

/*SCHOOL MASTERS*/
#school-masters {
	background-color: #f2ebe7;
	padding: 80px 40px;
}

#school-masters h2 {
	text-align: center;
	letter-spacing: 6px;
	font-weight: 400;
	font-size: 18px;
	margin-bottom: 10px;
}

#school-masters .subtitle {
	text-align: center;
	font-size: 13px;
	color: #777;
	margin-bottom: 50px;
}

.school-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 80px;
}


.school-head {
	text-align: center;
}

.school-head img {
	width: 260px;
	height: 260px;
	border-radius: 10px;
	object-fit: cover;
	margin-bottom: 15px;
<img src="images/headmaster.jpg">

}

.school-head h3 {
	font-size: 14px;
	font-weight: 600;
}

.school-head span {
	font-size: 12px;
	color: #777;
}


.school-staff {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px 60px;
}

.staff-card {
	text-align: center;
}

.staff-card img {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 10px;
	<img src="images/staff1.jpg">
	<img src="images/staff2.jpg">
	<img src="images/staff3.jpg">
	<img src="images/staff4.jpg">

}

.staff-card h4 {
	font-size: 13px;
	font-weight: 600;
}

.staff-card span {
	font-size: 12px;
	color: #777;
}

/* FOOTER */
footer {
	width: 100%;
	background-color: #cbb0a5;
	padding: 25px 40px;
	font-size: 13px;
	color: #000;
}

footer img {
	float: left;
	height: 45px;
	margin-right: 20px;
}

#copyright {
	float: left;
	line-height: 1.6;
}

#designer {
	float: right;
	margin-top: 12px;
	text-transform: capitalize;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
	header, footer {
		padding: 20px;
	}

	nav {
		float: none;
		text-align: center;
		margin-top: 20px;
	}

	#logo {
		float: none;
		text-align: center;
	}

	.masters-wrapper,
	.school-wrapper {
		flex-direction: column;
		gap: 40px;
	}

	.school-staff {
		grid-template-columns: 1fr;
	}

	footer img,
	#copyright,
	#designer {
		float: none;
		text-align: center;
		display: block;
		margin: 10px auto;
	}
}





























