@import url('https://fonts.googleapis.com/css2?family=Goblin+One&family=Jua&family=Sen:wght@400..800&display=swap');
/*OVERALL*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.clearfix {
  clear: space-between;
}

/*BODY FORMAT*/
body {
	background-color: #fee7d9;
	color:#9c2722;
  font-family: "Sen", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 22px;
  font-style: normal;
}

#header-content, main, #mainfooter, #subfooter-content {
  width: 1200px;
  margin: auto;
  display: flex;
}

/*IMAGE BORDER*/
.bordered {
	border-color: #9c2722;
	border-style: solid;
	border-width: 3px;
	border-radius: 30px;	
}

/*HEADING FORMATS*/
#home h1 {
	font-family: "Goblin One", serif;
	font-size: 50px;
	text-transform: capitalize
}

#home h2 {
	font-family: "Jua", serif;
	font-size: 40px;
	font-weight: 400;
	letter-spacing: 3px;
	color: #9c2722; /*fallback color*/
	-webkit-text-fill-color: #fecd40;
  -webkit-text-stroke: 8px #9c2722;
  paint-order: stroke fill;
  text-transform: capitalize;
}

#home h3 {
	font-family: "Jua", serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 3px;
	color: #9c2722; /*fallback color*/
	-webkit-text-fill-color: #fee7d9;
  -webkit-text-stroke: 7px #9c2722;
  paint-order: stroke fill;
  text-transform: capitalize;
}

h3 {
	font-family: "Jua", serif;
	font-size: 50px;
	font-weight: 400;
	letter-spacing: 3px;
	color: #9c2722; /*fallback color*/
	-webkit-text-fill-color: #fecd40;
  -webkit-text-stroke: 8px #9c2722;
  paint-order: stroke fill;
  text-transform: capitalize;
}

/*HEADER*/
header {
	background-color: #fee7d9;
	color: #fee7d9;
	border-style: solid;
	border-bottom-color: #fa7737;
	border-bottom-width: 4px;
	font-family: "Jua", serif;
	font-size: 18px;
}

#header-content {
	align-items: center;
	justify-content: space-between;
	padding: 10px 25px;
}

#logo img {
	height: 60px;
}

/*NAVBAR*/
nav {
	display: flex;
	align-items: center;
}

nav ul {
	display: flex;
	list-style-type: none;
}

nav ul li a {
	color: #fee7d9;
	display: flex;
}

nav a:hover { 
	color: #fecd40; 
}

nav a:hover img { 
	filter: invert(83%) sepia(88%) saturate(1899%) hue-rotate(321deg) brightness(101%) contrast(99%)
}

nav ul li a img {
	padding-left: 10px;
	filter: invert(94%) sepia(6%) saturate(2018%) hue-rotate(307deg) brightness(103%) contrast(105%);
}

nav img {
	width: 30px;
}

.navlink {
	background-color: #9c2722;
	text-transform: capitalize;
	border-radius: 10px;
	padding: 10px;
	margin-right:10px;
}

/*NAVBAR-DROPDOWN*/
nav ul ul {
	display: none;
	position: absolute; 
	top: 60px; /* the height of the main nav */
}

nav ul li:hover > ul {
	display:inherit;
}

nav ul ul li {
	background-color: #9c2722;
	width:170px;
	float:none;
	display:list-item;
	position: relative;
}

nav ul ul li a {
	padding: 10px 8px;
}

/*NAVBAR-SEARCHBAR*/
#search {
	color: #9c2722;
	border-style: solid;
	border-width: 3px;
	border-radius: 30px;
	align-items: center;
	display: flex;
	padding: 6px 10px;
}

#search p {
	padding-right: 10px;
}

#search img {
	width: 25px;
	filter: invert(26%) sepia(36%) saturate(3006%) hue-rotate(339deg) brightness(82%) contrast(96%);
}

/*PAGE-TITLE*/
#page-title {
	padding: 15px 0;
}

/*MAIN*/
main {
	width: 1200px;
	margin: 0 auto;
	padding: 10px 25px 30px;
	flex-direction: column;
}

/*LANDING-PAGE*/

/*LANDING--FEATURED*/
#featured {
	display: flex;
	flex-direction: column;
}

#featured-content {
	padding-top: 15px;
	padding-bottom: 20px;
}

#featured-left {
	display: flex;
}

#featured-left img {
	border-radius: 30px;
	width: 450px;
	height: 300px;
	object-fit: cover;
}

#featured-right {
	display: flex;
	flex-direction: column;
	padding-left: 10px;
}


#featured img {
	width: 500px;
}

/*LANDING--PREVIEWS*/
#preview-row {
	display: flex;
	justify-content: space-between;
}

.preview {
	position: relative;
}

.preview img {
	width: 280px;
	height: 180px;
	object-fit: cover;
	border-radius: 20px;
}

.preview p {
	position: absolute;
	left: 15px;
	top: 15px;
}

/*LANDING--ARCHIVE-BUTTON*/
#archive-link {
	padding-top: 20px;
	display: flex;
	justify-content: flex-end;
}

#archive-button {
	background-color: #9c2722;
	width: 250px;
	border-radius: 25px;
	display: flex;
	justify-content: center;
	padding: 10px 30px;
	text-align: center;

}

#archive-button a {
	font-family: "Jua", serif;
	font-size: 20px;
	color: #fee7d9;
	font-weight: 400;
	text-transform: capitalize;
	padding-right: 10px;
}

#archive-button img {
	width: 20px;
	filter: invert(94%) sepia(6%) saturate(2018%) hue-rotate(307deg) brightness(103%) contrast(105%);
}

/*FOOTER*/
footer {
	background-color: #fa7737;
	font-size: 18px;
}

#mainfooter {
	justify-content: space-between;
	align-items: center;
	padding: 10px 25px;
}

#footer-left {
	display: flex;
	align-items: center;
}

#footer-left p {
	padding-right: 10px;
}
#footer-left img {
	width: 50px;
	padding-right: 6px;
}

#footer-right ul {
	list-style-type: none;
	display: flex;
}

#footer-right ul li a {
	color: #fee7d9;
}

.footerlist {
	text-transform: capitalize;
	padding-left: 15px;
}

/*SUBFOOTER*/
#subfooter {
	color: #fa7737;
	background-color: #9c2722;
	font-size: 15px;
}

#subfooter-content {
	justify-content: space-between;
		padding: 10px 25px;
}