@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;
}
/* BUTTONS */
.btn {
	display: inline-block;
	background-color: #E94377;
	color: #ffffff;
	padding: 12px 25px;
	border-radius: 25px;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 600;
}

.btn:hover {
	background-color: #d33668;
}

nav ul li a {
	color: 
#ffffff;
	text-decoration: none;
	text-transform: uppercase;
}
main {
	min-height: 80vh;
}

/* FOOTER */
footer {
	font-size: 12px;
	text-transform: capitalize;
	padding: 20px;
	background-color: 
#C6A49A;
}
footer img {
	width: 200px;
	float: left;
}
#copyright {
	margin-left: 20px;
	float: left;
}
#designer {
	float: right;
}

/* SECTIONS */
section {
	padding: 30px;
}
.white {
	background-color: 
#ffffff;
}
.lighttan {
	background-color: 
#EEEBE6;
}
.content {
	width: 960px;
	margin: 0 auto;
	padding: 20px 0;
}

/* TEXT */
#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: 0.75em;
}
h3 {
	text-align: center;
	text-transform: capitalize;
	margin: 10px 0;
}
.subtitle {
	font-weight: 300;
	text-align: center;
}
.lesson-info h3 {
	text-align: left;
	margin-bottom: 10px;
}
/* ENROLL CARD TEXT */
.enroll-card h4 {
	text-transform: uppercase;
	margin-bottom: 10px;
	color: #ffffff;
}

.price {
	font-size: 36px;
	font-weight: 800;
	color: #E94377;
	background-color: #e3cfb4;
	width: 120px;
	height: 120px;
	line-height: 120px;
	border-radius: 50%;
	margin: 20px auto;
	border: 4px solid #ffffff;
}
.price .dollar {
	font-size: 18px;
	vertical-align: top;
	position: relative;
	top: -8px;
}

.enroll-card p {
	color: #ffffff;
}
.enroll-card .price {
	color: #E94377;
}
.enroll-card p:first-of-type {
	font-size: 14px;
}

.access {
	font-size: 14px;
	color: #ffffff;
	margin-bottom: 20px;
}

/* FEATURED LESSON */
.lesson-feature {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

.lesson-info {
	flex: 2;
	margin-top: 0;
}

.lesson-info p:first-of-type {
	margin-top: 10px;
}

.enroll-card {
	flex: 1;
	background-color: #C6A49A;
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* LESSONS */
#lessons {
	margin-top: 20px;
}
.lesson {
	background-color: 
#ffffff;
	border-radius: 10px;
	width: 225px;
	padding: 10px;
	margin-left: 20px;
	float: left;
}
.lesson:first-child {
	margin-left: 0;
}
.skill {
	font-size: 14px;
	text-align: center;
	text-transform: uppercase;
	width: 100px;
	padding: 10px;
	margin-top: 30px;
	background-color: 
#E94377;
	border-radius: 10px;
}
.level {
	color: 
#ffffff;
	font-size: 24px;
	font-weight: 600;
}

/* ABOUT */
#pagelabel {
	background-color: 
#C6A49A;
	background-image: url(../images/bg_tile.png);
}
#pagelabel h1 {
	font-weight: 400;
	font-size: 50px;
	color: 
#ffffff;
	text-transform: uppercase;
}

/* ORIGAMI MASTERS */
.masters {
	text-align: center;
}

.masters h2 {
	letter-spacing: 0.6em;
	margin-bottom: 10px;
}

.masters-grid {
	display: flex;
	justify-content: center;
	gap: 80px;
	margin-top: 50px;
}

.master img {
	width: 220px;
	height: 220px;
	object-fit: cover;
	border-radius: 50%;
	filter: sepia(30%);
}

.master h3 {
	margin-top: 20px;
	font-size: 18px;
	font-weight: 600;
}

.master .role {
	font-size: 14px;
	color: #555;
}
.subtitle {
	margin-top: 15px;  
}

/* SCHOOL MASTERS */
.school-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 120px;
	margin-top: 60px;
	align-items: flex-start;
}

.headmaster {
	text-align: center;
}

.headmaster img {
	width: 420px;
	border-radius: 30px;
}

.teachers {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px 80px;  
	text-align: center;
	margin-top: 30px;
}

.teacher img {
	width: 140px;
	height: 140px;
	object-fit: cover;
	border-radius: 50%;
}
