@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');


@font-face {
    font-family: 'Aubrey Regular';
    src:
         url('Aubrey-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
:root {
	--darkpink:#E94E77;
	--lighttan:#EEEBE6;
	--rose:#D68189;
	--tan:#C6A49A;
	--ivory:#E3CFB4;
}

body {
	font-family: Roboto;
}



h1 {
	font-family: "Aubrey Regular";
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 40px;
}

nav {
    gap: 12px;
    align-items: center;
}

nav a {
    display: inline-block;
	text-decoration: none;
    background-color: var(--rose);
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
}

header img {
    width: 350px;
    height: auto;
}

.intro {
	padding: 20px 260px;
	text-align: center;
}

.featured {
    background-color: var(--lighttan);
    padding: 20px 160px;
    display: flex;
    flex-wrap: wrap;
}

.dragon {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.dragon p {
    margin-bottom: 20px;
    font-size: 14px;
}

.lesson {
    flex: 1;
    text-align: left;
    padding-right: 30px;
}

.enroll {
    width: 350px;
    background-color: var(--tan);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: white;
}

.price {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    font-size: 48px;
    font-weight: bold;
    color: var(--rose);
}

.enroll button {
    background-color: var(--darkpink);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
}

.text {
	padding: 100px 260px;
	text-align: center;
}

.masterclass {
    background-color: var(--lighttan);
    padding: 40px 160px;
    text-align: center;
}

.cards {
    display: flex;
    gap: 20px;
}

.card {
    flex: 1;
    text-align: center;
	background-color:white;
	padding: 20px;
	border-radius: 25px;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.rating {
    background-color: var(--darkpink);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
}

footer {
    background-color: var(--tan);
    padding: 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer img {
	width: 300px;
	height: auto;
}

.footer-info {
    text-align: center;
}

.footer-info p {
    font-size: 11px;
    margin: 2px 0;
}

.page-banner {
    background-image: url("images/bg_tile.png");
	background-color: var(--tan);
    background-position: center;
    padding: 40px 160px;
}

.page-banner h1 {
    color: white;
    font-size: 48px;
    font-weight: normal;
    letter-spacing: 3px;
}

.masters {
    background-color: white;
    padding: 60px 160px;
    text-align: center;
}

.mastersh2 {
    letter-spacing: 8px;
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: normal;
}

.subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 50px;
}

.founders {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.founder img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.founder h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.founder p {
    font-size: 13px;
    color: #666;
}


.school {
    background-color: var(--lighttan);
    padding: 60px 160px;
    text-align: center;
}

.school h2 {
    letter-spacing: 8px;
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: normal;
}

.school-masters {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 50px;
}

.master-large {
    text-align: center;
}

.master-large img {
    width: 250px;
    height: 350px;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 20px;
}

.master-large h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.master-large p {
    font-size: 13px;
    color: #666;
}

.master-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.master-small img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.master-small h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.master-small p {
    font-size: 12px;
    color: #666;
}