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

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

img {
	max-width: 100%;
	border-radius: 10px;
	display: block;
}

/* Proper clearfix */
.clearfix::after {
	content: "";
	display: block;
	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: 80vh;
}

/* FOOTER */
footer {
	font-size: 12px;
	text-transform: capitalize;
	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 {
	max-width: 960px;
	width: 100%;
	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: 0.75em;
}

h3 {
	text-align: center;
	text-transform: capitalize;
	margin: 10px 0;
}

p.subtitle {
	font-weight: 300;
	text-align: center;
}

/* 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;
}

p.level {
	color: #ffffff;
	font-size: 24px;
	font-weight: 600;
}

/* ABOUT */
#pagelabel {
	background-color: #C6A49A;
	background-image: url(bg_tile.png);
}

#pagelabel h1 {
	font-weight: 400;
	font-size: 50px;
	color: #ffffff;
	text-transform: uppercase;
}

/* ── FEATURED LESSON ─────────────────────────────────────── */
#featured-img {
  width: 100%;
  margin: 20px 0;
  border-radius: 10px;
}

#featured-bottom {
  margin-top: 10px;
}

#featured-desc {
  float: left;
  width: 60%;
}

#featured-name {
  text-align: left;
  font-weight: 700;
  margin-bottom: 10px;
}

.lessons-header {
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 4px;
}

.lessons-list {
  margin-left: 20px;
  margin-bottom: 10px;
}

.lessons-list li {
  margin-bottom: 2px;
}

/* ENROLL CARD */
#enroll-card {
  float: right;
  width: 34%;
  background-color: #D68189;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: #ffffff;
}

#enroll-title {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

#enroll-sub {
  font-size: 14px;
  margin-bottom: 16px;
}

#price-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background-color: rgba(255,255,255,0.15);
}

#price-dollar {
  font-size: 16px;
  font-weight: 700;
  align-self: flex-start;
  margin-top: 16px;
}

#price-num {
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}

#enroll-note {
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.5;
}

#btn-join {
  display: inline-block;
  background-color: #E94377;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 10px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

#btn-join:hover {
  background-color: #c0234e;
}