:root {
	--page-bg: #CBC5EA;
	--about-bg: #73628A;
	--blockquote: #276486;
	--body-text: #313D5A;
	--highlight: #FFFCBF;
	--blockquote-border: #FFFCBF;
	--caption:#4a556e;
	--header-footer-background: #73628A;
}

.dark-mode {
	--page-bg: #313D5A;
	--about-bg: #272942;
	--blockquote: #97bce3;
	--body-text: #CBC5EA;
	--highlight: white;
	--blockquote-border: #CBC5EA;
	--caption:#c19cbc;
	--header-footer-background: #003049;
}

body {
	background-color: var(--page-bg);
	color: var(--text);
}

.body-wrapper > * {
	padding: 0;
}

/* Header */
.site-header  {
	z-index:170;
	margin:0 auto;
	width:100%;
	position:fixed;
	top:0;
	padding-top:1em;
	transition: all 0.3s;
	column-gap: 2em;
}

@media screen and (min-width: 800px) {
	.site-header {
		display: flex;
		justify-content: space-between;
		padding-right: 2em;
	}

}

.site-header.active {
    background-color: var(--header-footer-background);
  }

.site-header__nav {
	font-family: 'Kumbh Sans', sans-serif;
	height: 0;
	transition: .3s;
}

.show-menu .site-header__nav {
	transition: .3s;
	height: 12em;
	padding-bottom: 1em;
}

.show-menu .site-header {
	background-color: var(--header-footer-background);
}


.site-header__logo h1 {
	font-family: 'Playfair Display', serif;
	padding-left: 0.5em;
	font-size: 2em;
	letter-spacing: .1em;
	font-weight: 600;
	line-height: 1;
	padding-bottom: .5em;
	margin-bottom: .5em;
	color: #CBC5EA;
}

.site-header__logo-circle-top {
    background: rgba(203, 197, 234, 0.7);
    border-radius: 50%;
    width: 20px;
    height: 20px;
	z-index: 101;
	position: absolute;
	left: 2.1em;
	top: 1em;
}

.site-header__logo-circle-bottom {
    background: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
	z-index: 100;
	position: absolute;
	left: 2.1em;
	top: 1.6em;
}

.site-header__menu-trigger {
	margin-top: 1.7em;
	margin-right: 1em;
	width: 3.5em;
	position: absolute;
	top: 0;
	right: 0;
	transition: .5s;
}

.site-header__menu-trigger svg {
	display: block;
	width: 100%;
	height: auto;
}

@media screen and (min-width: 800px) {
    /* desktop css here */
    .site-header__menu-trigger {
        display: none;
    }
}

.site-header__menu-trigger-opened {
	transform: rotate(90deg);
	transition: .5s;
}

.site-header__nav {
	transition: ease-in-out 0.4s;
	height: 0;
	overflow: hidden;
}
   
@media screen and (min-width: 800px) {
    /* desktop css here */
	.site-header__nav {
		margin-top: 0;
		height: auto;
		font-size: .9em;
	}

	.site-header__nav ul {
		display: flex;
	}

	.site-header__nav li {
		margin-right: 2em;
	}

	.site-header__nav li:last-child {
		margin-right: 0;
    }
}

.site-header__nav a {
	font-size: 1.2em;
	text-decoration: none;
	padding: .375em;
	color: #CBC5EA;
	display: block;
	margin-bottom: .375em;
	text-align: center;
}

.site-header__nav ul li {
	text-align: center;
}

.mode-btn {
	width: 3.1em;
	height: 3.1em;
	background: linear-gradient( 90deg, white, white 49%, #313D5A 51%, #313D5A 51% ); 
	border-radius: 50%;
	position: fixed;
	top: 1.2em;
	right: 5.5em;
	transition: 1s;
}

@media screen and (min-width: 800px) {
	.mode-btn {
		top: auto;
		right: 2em;
		bottom: 1.2em;
		width: 3.1em;
		height: 3.1em;
	}
}

.mode-btn:hover, .mode-btn:focus {
	outline: 1px solid var(--highlight);
}

.dark-mode-btn {
	 transform: rotate(180deg);
	 background: linear-gradient( 90deg, white, white 49%, #c19cbc 51%, #c19cbc 51% ); 
	 transition: 1s;
}

img {
	width: 100%;
}

.site-wrapper {
	width: 100%;
	margin: 0;
}

.body-wrapper {
	max-width: 700px;
	margin: auto;
}

@media screen and (min-width: 800px) {
	.body-wrapper {
		grid-template-columns: 1fr min(45em, 100%) 1fr;
	}
}

.hero {
	position: relative;
	background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

@media screen and (min-width: 800px) {
	.hero {
		grid-column: 1/4;
		width: 100%;
	}
}

.hero__image img{
	object-fit: cover;
	height: 70vh;
	display: block;
}

@media screen and (min-width: 800px) {

	.hero__image img {
		width: 100%;
		height: auto;
	}
}

.hero__content {
	font-family: 'Merriweather', serif;
	font-size: 2em;
	color: white;
	margin-right: 1em;
	position: absolute;
	bottom: 0;
	padding: 0.5em 0.5em 1em 0.5em;
}

@media screen and (min-width: 800px) {
	.hero__content {
		padding: 2em;
		bottom: 20%;
	}

	.hero__content h1 {
		font-size: 4vw;
		margin-bottom: .3em;
		width: 9em;;
	}
}

.bleed-full {
	grid-column: 1 / 4;
	padding: 0;
}

@media screen and (min-width: 800px) {
	.bleed-full {
		grid-column: 2 / 3;
		padding: 1em;
	}
}

.meta {
	margin-bottom: 3em;
}

.author {
	margin-bottom: 0;
	font-family: 'Kumbh Sans',sans-serif;
	font-size: .5em;
	color: #CBC5EA;
}

.date {
	margin-bottom: 0;
	font-family: 'Kumbh Sans',sans-serif;
	font-size: .5em;
	color: #CBC5EA;
}

.social-icons {
	display: flex;
	flex-direction: row;
}

.social {
	height: 1.2em;
	width: 1.2em;
	margin-right: .4em;
	margin-top: 1em;
	border-radius: 50%;
	overflow: hidden;
	background: white;
	box-shadow: .1em .1em 0px rgba(0, 0, 0, 0.25);
	transition: 0.3s;
}

.social img {
	padding: .3em;
}

.about {
	background-color: var(--about-bg);
	padding-top: 2em;
	padding-bottom: 1em;
}


@media screen and (min-width: 1200px) {
	.about {
		grid-column: 1 / 4;
		display: flex;
	}

	.about__everything {
		display: flex;
		margin: auto;
		align-items: center; 
	}
}

.about__image {
	height: 18em;
	width: 18em;
	margin: 0 auto 1.5em;
	border-radius: 50%;
	overflow: hidden;
	transition: 0.3s;
}

.about__image img {
	height: 300px;
	width: 300px;
	object-fit: cover;
}

@media screen and (min-width: 1200px) {
	.about__open-bracket {
		margin-left:-15em;
		margin-top: -6.2em;
	}
	.about__open-bracket img {
		transform: rotate(90deg) scale(-1,-1);
		transform-origin: bottom right;
		height:6.5em;
	}
}

.about__title {
	margin-bottom: 1em;
	font-size: 2.5em;
	font-family: 'Merriweather',serif;
	color:#CBC5EA;
	text-align: center;
}

.about__body {
	margin: 1em;
	overflow: hidden;
}

@media screen and (min-width: 1200px) {
	.about__body {
		display: flex;
	}
}

.about__description {
	font-family: 'Kumbh Sans',sans-serif;
	margin: auto;
	font-size: 1.2em;
	max-width: 600px;
}

.about__description p {
	margin-bottom: 1em;
	color:#CBC5EA;
}

.about__list {
	font-family: 'Kumbh Sans',sans-serif;
	font-size: 1.2em;
	text-align: left;
	margin: auto;
}

.about__list th {
	padding: 0.5em;
	color:white;
	text-transform: uppercase;
	vertical-align: top;
}

.about__list td {
	padding: 0.3em;
	color:#CBC5EA;
	vertical-align: top;
}

.about__close-bracket img {
	rotate: 180deg;
}

@media screen and (min-width: 1200px) {
	.about__close-bracket {
		margin-right:-15em;
		margin-top: -6.2em;
	}
	.about__close-bracket img{
		transform: rotate(90deg) scale(-1,-1);
		transform-origin: bottom left;
		height: 6.5em;
	}
}

.article {
	padding:1em;
	font-size: 1.1em;
	line-height: 1.5;
}

.article em {
	font-weight: 700;
	font-style: normal;
	font-size: 1.2em;
}

figcaption {
	font-family: 'Merriweather', serif;
	text-align: center;
	font-weight: 400;
	margin: .2em;
	font-style: italic;
	color: var(--caption);
}

.article p {
	margin-bottom: 1.3em;
	font-family: 'Kumbh Sans', san-serif;
	color: var(--body-text)
}

blockquote {
	margin: 2em;
	text-align: center;
	padding: 1em;
	color: var(--blockquote);
	border: 2px solid var(--blockquote-border);
}

blockquote p {
	font-family: 'Merriweather', serif;
	font-weight: 700;
	font-size: 2em;
	line-height: 1.25em;
	padding: 0.7em;
}

.blockquote__open-quote {
	width: 6em;
	padding: 1em;
	background-color: var(--page-bg);
	margin-bottom: -5em;
	position: relative;
	z-index: 1;
}

.blockquote__close-quotes {
	width: 6em;
	transform: scale(-1);
	float: right;
	padding: 1em;
	margin-top: -5em;
	background-color: var(--page-bg);
	position: relative;
	z-index: 1;
}

a {
	color: var(--highlight);
}

.site-footer {
	background-color: var(--header-footer-background);
}

.site-footer p {
	color: #fff;
}

@media screen and (min-width: 800px) {
	.site-footer p {
		max-width: 60em;
		margin-left: auto;
		margin-right: auto;
	}
}

.site-footer__logo h1 {
	font-family: 'Playfair Display', serif;
	padding-left: 0.5em;
	font-size: 2em;
	letter-spacing: .1em;
	font-weight: 600;
	line-height: 1;
	color: #CBC5EA;
}

.site-footer__logo-circle-top {
    background: rgba(203, 197, 234, 0.7);
    border-radius: 50%;
    width: 20px;
    height: 20px;
	z-index: 101;
	position: relative;
	left: 2.1em;
	top: 2.5em;
}

.site-footer__logo-circle-bottom {
    background: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
	z-index: 100;
	position: relative;
	left: 2.1em;
	top: 1.9em;
}

.footer__nav {
	padding: 1em;
}

.footer__nav a {
	font-family: 'Kumbh Sans', san-serif;
	text-decoration: none;
	color: #CBC5EA;
	display: block;
	margin-bottom: .375em;
}

.site-footer p {
	text-align: center;
	font-family: 'Kumbh Sans', san-serif;
	color: #CBC5EA;
	font-size: .8em;
	padding: 1em;
}