* {
  box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  background-color: #f7f5ee;
  height: 100%;
  font-family: "Lato", sans-serif;
}

main {
    flex: 1;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.1rem;
}
p {
  font-size: 1.125rem;
  line-height: 1.7;
}

img,
picture,
video {
  max-width: 100%;
}

svg {
  height: 3rem;
}

button {
  background-color: #995528;
  border: none;
  padding: 1rem;
  letter-spacing: 0.1rem;
  width: fit-content;
  cursor: pointer;
  font-weight: 700;
  transition: 0.3s ease;
}

button:hover {
  background-color: #b56835;
}

/* -------------------------------------------
        +++++++ General Classes +++++++
    ------------------------------------------  */

.flex {
  display: flex;
}

.align-self-center {
  align-self: center;
}
.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-self-center {
  justify-self: center;
}

.justify-space-between {
  justify-content: space-between;
}

.column {
  flex-direction: column;
}

.width-100 {
  width: 100%;
}
.width-85 {
  width: 85%;
}
.row {
  flex-direction: row;
}

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

.paragraph-picture {
  max-width: 60%;
  gap: 3rem;
}

.accent-dot {
  gap: 0.6rem;
  width: 12rem;
}

.accent-dot .line {
  height: 1px;
  background-color: #995528;
  flex: 1;
}

.accent-dot .dot {
  width: 5px;
  height: 5px;
  background-color: #995528;
  border-radius: 50%;
}

.accent-dot.accent-small {
  width: 4rem;
}

.orange {
  color: #995528;
}
.white {
  color: #f2f0f1;
}
.black {
  background-color: #060606;
}

.soft-brown {
  background-color: #f1ede7;
}

.padding-top-3 {
  padding-top: 3rem;
}

.padding-top-2 {
  padding-top: 2rem;
}

.padding-top {
  padding-top: 1rem;
}

.padding-3 {
  padding: 3rem;
}

.padding-2 {
  padding: 2rem;
}
.padding {
  padding: 1rem;
}

.padding-bottom-3 {
  padding-bottom: 3rem;
}

.padding-bottom-2 {
  padding-bottom: 2rem;
}
/*.title {
    letter-spacing: .1rem;
}
    */

.italic {
  font-style: italic;
}

.box-shadow {
  box-shadow: 3px 5px rgba(0, 0, 0, 0.08);
}

.gap3 {
  gap: 3rem;
}

.gap1 {
  gap: 1rem;
}

.margin-0 {
  margin: 0;
}

.margin-top-2 {
  margin-top: 2rem;
}

.margin-top-3 {
  margin-top: 3rem;
}
.lighter-font {
  font-weight: lighter;
}

/* CS monogram */

.monogram {
  position: relative;
  width: 2.5rem;
  height: 3rem;
  display: inline-block;

  color: #995528;
  font-family: serif;
  font-size: 2.5rem;
}

.monogram .c {
  position: absolute;
  left: 0;
  top: 0;
}

.monogram .s {
  position: absolute;
  left: 0.8rem;
  top: 0.7rem;
}

/* -------------------------------------------
        +++++++ Header/Nav Bar +++++++
    ------------------------------------------  */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header {
  background-color: #171718;
  padding: 1rem;
  gap: 0.6%;
  justify-content: space-between;
}

.header h3 {
  text-transform: uppercase;
}

.navbar {
  gap: 2rem;
  padding: 0rem 2rem;
}

.navbar a {
  position: relative;
  width: 5rem;
  transition: color 0.3s ease;
  width: fit-content;
}

a {
  text-decoration: none;
  outline-color: transparent;
  text-transform: uppercase;
}

a:link,
a:visited,
a:focus {
  color: #f2f0f1;
}

.navbar a:hover {
  color: #ad6333;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.5rem;
  width: 100%;
  height: 2px;
  background-color: #995528;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar a:hover::after {
  transform: scaleX(1);
}

/* -------------------------------------------
        +++++++ Hero +++++++
    ------------------------------------------  */

.hero {
  background-color: #060606;
  height: 90vh;
}
.hero-text {
  flex: 1;
  min-width: 0;
  align-items: flex-end;
}

.hero-content {
  width: min(80%, 500px);
  height: 50%;
  justify-content: space-between;
}

.hero-photo {
  flex: 1.4;
}

.hero-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-text h1 {
  letter-spacing: 0.25rem;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  font-weight: lighter;
}

.hero-text h2 {
  text-transform: uppercase;
  font-weight: 500;
}



/* -------------------------------------------
        +++++++ Features/About +++++++
    ------------------------------------------  */

.feature:not(:last-child) {
  border-right: 2px solid #ddd; /* Fancy divider line for the features row */
}

.features {
  max-width: 85%;
}

.feature p {
  width: 50%;
  text-align: center;
}

.feature h2 {
  letter-spacing: normal;
}

.about {
  flex: 1;
}
.about-picture {
  flex: 1;
}

/* -------------------------------------------
        +++++++ Assistant Bowser +++++++
    ------------------------------------------  */

#chris-about {
  border-radius: 2px;
}

#bowser h2 {
  text-transform: uppercase;
}

#bowser-pic {
  width: 14rem;
  height: 14rem;
  object-fit: cover;
}

/* -------------------------------------------
        +++++++ Contact +++++++
    ------------------------------------------  */

form {
  flex-direction: column;
  display: flex;
  width: 100%;
}

.form {
  flex: 1;
}

label {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

.form input,
.form textarea {
  padding: 1rem;
  font-size: 1rem;
  border: 1px solid #b8b3ad;
  background-color: transparent;
  font-family: inherit;
}

.form textarea {
  min-height: 10rem;
  resize: vertical;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: #995528;
}

.contact {
  flex: 0.5;
}

#contact-p {
  padding: 2rem 2rem 0.5rem 0;
}

.contact h1 {
  font-size: clamp(3rem, 6vw, 4rem);
  padding: 0 0 1rem 0;
  margin: 0;
  font-weight: 700;
}

.accent-line-dot {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 13rem;
}

.accent-line-dot span {
  height: 1px;
  background-color: #995528;
  flex: 1;
}

.accent-line-dot div {
  width: 5px;
  height: 5px;
  background-color: #995528;
  border-radius: 50%;
}

.form button {
  width: 100%;
  margin-top: 1rem;
}

/* -------------------------------------------
        +++++++ Biography +++++++
    ------------------------------------------  */

#chris-bio {
  overflow: hidden;
}

.bigger {
  flex: 1.5;
}

.smaller {
  flex: 1;
}

.bio {
  background-color: #060606;
  margin-bottom: 2rem;
}

.bio h1 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(3rem, 6vw, 3rem);
  margin: 1rem;
}

.bio h2 {
  font-style: italic;
}

/* -------------------------------------------
        +++++++ Media +++++++
    ------------------------------------------  */

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
}

.youtube-video {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-card h2 {
  margin-top: 1rem;
  margin-bottom: 0.4rem;
  letter-spacing: normal;
}

.video-card p {
  margin: 0;
}

/* -------------------------------------------
            +++++++ LESSONS/FAQ +++++++
    ------------------------------------------  */
.faq-section {
    padding: 80px 20px;
    background-color: #f8f5f0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section .section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    border-bottom: 1px solid #d6cec3;
}

.faq-item:first-child {
    border-top: 1px solid #d6cec3;
}

.faq-item summary {
    position: relative;
    padding: 22px 45px 22px 0;

    font-size: 1.05rem;
    font-weight: 600;

    cursor: pointer;
    list-style: none;
}

/* Removes default arrow */
.faq-item summary::-webkit-details-marker {
    display: none;
}

/* Plus sign */
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);

    font-size: 1.5rem;
    font-weight: 300;
    color: #b58a50;
}

/* Change + to − when open */
.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0;
    padding: 0 45px 22px 0;

    line-height: 1.7;
    color: #555;
}


/* -------------------------------------------
        +++++++ Footer +++++++
    ------------------------------------------  */

.footer {
  background-color: #171718;
  padding: 2rem 0;
  text-align: center;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.footer-line {
  width: 6rem;
  height: 1px;
  background-color: #995528;
}

.footer-dot {
  color: #995528;
  font-size: 1rem;
}

/* Copyright */

.footer p {
  color: #999;
  font-size: 0.75rem;
  margin-top: 0.75rem;
}

.footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1rem;
  width: 100%;
  height: 2px;
  background-color: #995528;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}