@charset "UTF-8";

:root {
  --beige: #eceae8;
  --brown: #615952;
  --gold: #bcb38d;
}

@font-face {
  font-family: "playfairRegular";
  src: url("../fonts/PlayfairDisplay-Regular.ttf");
}

@font-face {
  font-family: "playfairItalic";
  src: url("../fonts/PlayfairDisplay-Italic.ttf");
}

@font-face {
  font-family: "playfairSemiBold";
  src: url("../fonts/PlayfairDisplay-SemiBold.ttf");
}

@font-face {
  font-family: "playfairBlack";
  src: url("../fonts/PlayfairDisplay-Black.ttf");
}

@font-face {
  font-family: "playfairBlackItalic";
  src: url("../fonts/PlayfairDisplay-BlackItalic.ttf");
}

/* standardisation */
html {
  box-sizing: border-box;
  color: var(--brown);
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

html,
body,
#root {
  margin: 0;
  padding: 0;
}

/* titles and text */

h1 {
  font-family: "playfairBlackItalic";
  font-size: 120px;
  margin: 20px;
}

h2 {
  font-family: "playfairBlackItalic";
  font-size: 40px;
  margin: 5px;
}

h3 {
  font-family: "playfairBlackItalic";
  font-size: 30px;
  margin: 5px;
}

h4 {
  font-family: "playfairBlack";
  font-size: 20px;
  margin: 5px;
}

h5 {
  font-family: "playfairBlack";
  font-size: 15px;
  margin: 5px;
}

h6 {
  font-family: "playfairRegular";
  font-size: 12px;
  margin: 10px 0 30px;
}

.uppercase {
  text-transform: uppercase;
}

a {
  color: var(--brown);
  font-family: "playfairBlack";
  font-size: 14px;
}

p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 22px;
}

.subtext {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 16px;
  font-style: italic;
}

/* helper classes */

.gold {
  color: var(--gold);
}

.center {
  text-align: center;
}

/* common elements */

button {
  background-color: var(--gold);
  color: white;
  border: 0;
  border-radius: 3px;
  padding: 8px 18px;
  font-family: "playfairSemiBold";
  cursor: pointer;
}

blockquote {
  align-self: center;
  position: relative;
  font-family: "playfairItalic";
  font-size: 20px;
  text-align: center;
  margin-top: 30px;
}

blockquote::before,
blockquote::after {
  position: absolute;
  font-size: 40px;
  color: var(--gold);
  height: 10px;
}

blockquote::before {
  content: "“";
  left: -40px;
  top: -20px;
}

blockquote::after {
  content: "”";
  right: -40px;
  bottom: 0;
}

.container {
  width: 100%;
  padding: 65px 30px;
}

.container--center {
  display: flex;
  justify-content: center;
}

.container--beige {
  background-color: var(--beige);
}

.container__content {
  width: 100%;
  max-width: 990px;
}

/* MENU */
.menu {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 5px 30px;
}

.menu__items {
  display: flex;
  align-items: center;
  list-style-type: none;
}

.menu__items li {
  font-family: "playfairSemiBold";
  font-size: 15px;
  padding-left: 15px;
}

.menu__items li a {
  color: var(--brown);
  text-decoration: none;
  text-decoration-color: var(--brown);
  text-transform: uppercase;
}

.menu__item--active {
  text-decoration: underline;
}

/* Header image Home*/
.header-image {
  height: 480px;
}

.header-image img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

/* Header image Profile*/
.header-image-profile {
  height: 410px;
}

.header-image-profile img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 410px;
}

/*header image cursus*/
.header-image-cursus {
  height: 242px;
}

.header-image-cursus img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 242px;
}

/*header image opdrachten*/
.header-image-opdracht {
  height: 100px;
}

.header-image-opdracht img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100px;
}

/* homepage */
.introduction {
  display: flex;
  flex-direction: column;
  max-width: 830px;
  background-color: var(--beige);
  padding: 65px 65px 30px 140px;
  border-radius: 225px 0 0 225px;
}

.introduction__columns {
  display: flex;
}

.introduction__picture {
  border-radius: 60px;
}

.introduction__content {
  margin-left: 38px;
  text-align: center;
}

.course-list {
  display: flex;
  margin: 60px 0 0 0;
  padding: 0;
  list-style-type: none;
}

.course-list__item {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0;
}

.course-list__item ul {
  flex: 1;
  list-style-type: none;
  margin: 22px 0 0 0;
  padding: 18px 45px;
  border-width: 0;
  border-color: var(--gold);
  border-style: solid;
  border-left-width: 2px;
}

.course-list__item:last-child ul {
  border-right-width: 2px;
}

.course-list__item li {
  font-family: "playfairBlack";
  font-size: 20px;
}

.course-list__course {
  display: block;
  text-decoration: none;
  margin: 0 8px;
  padding: 50px 43px;
  background-color: white;
  text-align: center;
  color: var(--brown);
  font-family: "playfairBlackItalic";
  font-size: 35px;
  border-radius: 50px;
}

.sneakpeak {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: 65px;
}

.sneakpeak li {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--beige);
  padding: 75px 110px 50px;
  border-radius: 225px 225px 0 0;
}

.sneakpeak li img {
  width: 100%;
  border-radius: 65px;
  margin-bottom: 50px;
}

.footer {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: 15px;
}

.footer > li {
  flex: 1;
  border-top: 2px solid var(--gold);
}

.footer__socials {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: 25px;
}

/* about me page */

.profile-pictures {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: 85px;
}

.profile-pictures__picture {
  height: 585px;
  width: 495;
  border-radius: 35% 35% 0% 0%;
}

.profile-links {
  justify-content: center;
  display: flex;
  gap: 85px;
  list-style-type: none;
  padding: 0;
}

/* Cursus 1 page */

.assignment-list {
  display: flex;
  margin: 50px 0 0 0;
  padding: 0;
  list-style-type: none;
  gap: 50px;
}

.assignment-list__assignment {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: center;
  min-height: 300px;
}

.assignment-list__text {
  flex: 1;
  background-color: white;
  text-align: center;
  border-radius: 120px 120px 0px 0px;
  color: var(--brown);
  padding: 60px 25px;
  margin-bottom: 25px;
}

.assignment-list__text p {
  font-family: playfairBlack;
}

.assignment-list__assignment h3 {
  font-size: 24px;
  font-family: playfairBlackItalic;
}
