@charset "UTF-8";

/* ===== HEADER ===== */
header {
	width: 100%;
	position: relative;
	margin: 0 auto;
}

#museums {
	position: absolute;
	top: 0;
	left: 0;
}

nav {
	width: 100%;
	height: 2.5em;
	text-align: center;
}

ul {
	width: 90%;
	margin: 0 auto;
}

li {
  	font-family: "PT Serif", serif;
	font-size: 1em;
	font-weight: 400;
	display: inline-block;
	margin-left: 6em;
	letter-spacing: .05em;
	line-height: 2.5em;
}

ul li:first-child {
	margin-left: 0;
}

.logo {
	text-align: center;
	margin-top: 30px;
	margin-bottom: 30px;
}

.search {
	position: absolute;
	top: 20px;
	right: 80px;
	cursor: pointer;
}

.menu {
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
	display: none;
}

/* =====  NAVIGATION ===== */
.topnav ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2em;
}

.topnav li {
	margin-left: 0;
}

/* ===== ACROBAT ===== */
#acrobat {
	margin-left: 5%;
	margin-right: 5%;
	margin-bottom: 10%;
}

#acrobat img {
	width: 100%;
	height: auto;
}

#acrobat h1 {
	font-family: "PT Serif", serif;
	font-size: 4em;
	text-align: center;
}

/* ===== FONTS ===== */
.pt-serif-regular {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: normal;
}

.pt-serif-bold {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
}

.pt-serif-regular-italic {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: italic;
}

.pt-serif-bold-italic {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: italic;
}

/* ===== EXHIBITS SECTION ===== */
#exhibits {
	width: 86%;
	max-width: 1500px;
	margin: 0 auto;
}

#exhibits > h1 {
	font-family: "PT Serif", serif;
	text-align: center;
	font-size: 2.5em;
	margin-bottom: 40px;
}

.exhibit {
	width: 100%;
	padding: 2em;
	background-color: antiquewhite;
	margin-bottom: 2em;
}

.exhibit h1 {
  	font-family: "PT Serif", serif;
	font-size: 1.5em;
	margin-bottom: 10px;
}

.exhibit h2 {
  	font-family: "PT Serif", serif;
	font-size: 1em;
	margin-bottom: 5px;
}

.exhibit h3 {
  	font-family: "PT Serif", serif;
	font-size: 0.9em;
}

/* ===== CALENDAR SECTION ===== */
#calendar {
    width: 86%;
    margin: 0 auto;
	max-width: 1500px;
}

#calendar > .event:first-child {
	background-color: transparent;
	padding: 0;
	margin-bottom: 40px;
}

#calendar > .event:first-child h1 {
	font-family: "PT Serif", serif;
	text-align: center;
	font-size: 2.5em;
}

.event {
	width: 100%;
	background-color: antiquewhite;
	padding: 2em;
	margin-bottom: 2em;
}

.event h1 {
  	font-family: "PT Serif", serif;
	font-size: 1.5em;
	margin-bottom: 10px;
}

.event h2 {
  	font-family: "PT Serif", serif;
	font-size: 1em;
	margin-bottom: 10px;
}

.event h3 {
  	font-family: "PT Serif", serif;
	font-size: 0.9em;
	margin-bottom: 10px;
}

.event p {
  	font-family: "PT Serif", serif;
	line-height: 1.6;
	margin-bottom: 10px;
}

/* ===== FOOTER ===== */
#bottom {
	width: 90%;
	max-width: 1500px;
	margin: 0 auto;
	padding: 20px 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.social-link {
    display: block;
    margin: 10px 20px;
}

/*MEDIA QUERIES*/

@media (max-width: 768px) {
	.menu {
		display: block;
	}
	
	.topnav ul {
		display: none;
		flex-direction: column;
		width: 100%;
		gap: 0;
	}
	
	.topnav.active ul {
		display: flex;
	}
	
	.topnav li {
		width: 100%;
		text-align: center;
		margin-left: 0;
		border-bottom: 1px solid #ddd;
	}
	
	.topnav li a {
		display: block;
		padding: 15px;
	}
	
	#acrobat h1 {
		font-size: 2.5em;
	}
	
	.exhibit {
		width: 100%;
	}
}

@media (max-width: 480px) {
	li {
		font-size: 0.8em;
		margin-left: 2em;
	}
	
	.logo img {
		max-width: 150px;
	}
	
	.search {
		right: 70px;
	}
	
	.search img,
	.menu img {
		width: 40px;
		height: 40px;
	}
	
	#acrobat h1 {
		font-size: 1.8em;
	}
	
	.exhibit,
	.event {
		padding: 1em;
	}
	
	.social-link img {
		width: 60px;
		height: 60px;
	}
}

@media (min-width: 1000px) {
	#exhibits {
		display: flex;
	}
	
	#exhibits h1 {
		width: 100%;
	}
	
	.exhibit {
		width: 48%;
	}
}