:root {
  --darkpink: #E94E77;
  --lighttan: #EEEBE6;
  --rose: #D68189;
  --tan: #C6A49A;
  --ivory: #E3CFB4;
}

/* ===========================
   RESET / GLOBAL
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
}

h1 {
  font-family: "Aubrey", cursive;
}


img {
  max-width: 100%;
  height: auto;
}

/* ===========================
   HEADINGS
=========================== */
h1 {
  font-family: "Aubrey", cursive;
  letter-spacing: 2px;
}

h2, h3, h4 {
  letter-spacing: 2px;
}

/* ===========================
   HEADER
=========================== */
.site-header {
  background: #fff;
  padding: 20px 0;
}

.header-container {
  width: 1200px;
  margin: 0 auto;
  overflow: hidden; /* clears floats */
}

/* LOGO LEFT */
.brand {
  float: left;
}

.brand-logo {
  height: 75px;
  width: auto;
}

/* NAV RIGHT */
.main-nav {
  float: right;
  margin-top: 18px;
}

.nav-btn {
  display: inline-block;
  text-decoration: none;

  background: var(--rose);
  color: #fff;

  font-weight: bold;
  font-size: 0.7rem;
  padding: 10px 18px;
  border-radius: 8px;

  letter-spacing: 1px;
  text-transform: uppercase;

  margin-left: 10px;
}

.nav-btn:hover {
  background: var(--darkpink);
  color: #fff;
}

/* ===========================
   PAGE CONTAINER
=========================== */
.container {
  width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
}

/* ===========================
   INDEX PAGE SECTIONS
=========================== */

/* INTRO SECTION */
.intro-first {
  background: #fff;
  padding: 50px 0;
}

.intro-first .container {
  padding-top: 0;
}

/* FEATURED SECTION */
.featured {
  background: #e9e3dc;
  padding: 50px 0;
}

.featured-content {
  width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px;
}

/* IMAGE LEFT */

.featured-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 30px;
  align-items: start;
}

.featured-image {
  float: left;
  width: 20%;
}

.featured-image img {
  width: 50%;
  border-radius: 10px;
}

/* TEXT RIGHT */
.featured-text {
  float: right;
  width: 52%;
}

.featured-text h3 {
  margin-bottom: 10px;
}

.featured-text p {
  margin-bottom: 10px;
}

.featured-text ol {
  margin-left: 20px;
  margin-bottom: 10px;
}

/* ENROLL BOX */
.enroll-box {
  background: #d7b7ab;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  width: 100%;
  max-width: 250px;
  justify-self: end;
}
.enroll-box h3 {
  margin-top: 0;
  font-size: 1rem;
  letter-spacing: 1px;
}

.enroll-box .price {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 15px 0;
}

.enroll-box p {
  margin: 10px 0;
  font-size: 0.9rem;
}

.enroll-box .button {
  display: inline-block;
  background: #E94E77;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
}


.price {
  font-size: 2rem;
  font-weight: bold;
  margin: 10px 0;
}

.button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: var(--darkpink);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
}

/* MASTERCLASS SECTION */
.masterclass {
  background: var(--lighttan);
  padding: 50px 0;
}

.lesson-grid {
  width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

/* 4 lesson cards using floats */
.lesson-card {
  float: left;
  width: 23%;
  margin-right: 2%;
  background: white;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
}

.lesson-card:last-child {
  margin-right: 0;
}

.lesson-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.lesson-card p {
  margin-bottom: 8px;
}

.skill {
  display: inline-block;
  margin-top: 10px;
  background: var(--darkpink);
  color: white;
  padding: 6px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
}

/* ===========================
   ABOUT PAGE
=========================== */

/* HERO BAR */
.about-hero {
  background: var(--tan);
  padding: 70px 0;
  text-align: center;
}

.about-hero h2 {
  color: white;
  font-size: 2rem;
  font-weight: bold;
}

/* ABOUT CONTENT */
.about-content {
  background: var(--lighttan);
  padding: 60px 0;
}

.about-wrapper {
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

/* LEFT COLUMN */
.about-left {
  float: left;
  width: 25%;
  text-align: center;
}

.about-left h3 {
  margin-bottom: 5px;
}

.about-left p {
  font-size: 0.85rem;
  margin-bottom: 20px;
}

/* Old Masters in ONE ROW */
.old-masters img {
  width: 120px;
  display: inline-block;
  margin: 0 8px;
}

/* CENTER COLUMN */
.about-center {
  float: left;
  width: 35%;
  margin-left: 5%;
}

.headmaster-photo {
  width: 100%;
  border-radius: 12px;
}

.headmaster-name {
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: bold;
}

.headmaster-role {
  font-size: 0.85rem;
}

/* RIGHT COLUMN */
.about-right {
  float: right;
  width: 30%;
}

/* Faculty grid 2x2 using inline-block */
.faculty-card {
  width: 48%;
  display: inline-block;
  text-align: center;
  margin-bottom: 40px;
}

.faculty-card img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 10px auto;
}

.faculty-card h4 {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.faculty-card p {
  font-size: 0.75rem;
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: var(--tan);
  padding: 30px 0;
}

.site-footer-inner {
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

/* Logo left */
.site-footer img {
  float: left;
  width: 120px;
  height: auto;
}

/* Text right beside logo */
.site-footer p {
  float: left;
  margin-left: 20px;
  margin-top: 35px;
  color: white;
  font-size: 0.8rem;
}
