/*
 * Theme styling
 */
/* @import url('https://fonts.googleapis.com/css2?family=Petrona:ital,wght@0,100..900;1,100..900&family=Phudu:wght@300..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Petrona:ital,wght@0,100..900;1,100..900&family=Phudu:wght@300..900&family=Quattrocento:wght@400;700&display=swap');

:root {
	--meskr-bg: #8c3c3b;
	--meskr-white: #fff;
	--phudu: 'Phudu', sans-serif;
	--petrona: 'Petrona', serif;
	--quattrocento: 'Quattrocento', serif;
}

*,
*::before,
*::after {
	box-sizing: border-box; /* 3 */
}

body {
	margin: 0;
	font-family: var(--petrona);
	background-image: url('../media/lene-bg.jpg');
	background-color: var(--meskr-bg);
	color: var(--meskr-white);
}

div {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	font-family: var(--phudu);
	font-weight: 500;
	color: var(--meskr-white);
}

h1 {
	font-size: 4.5rem;
	font-family: var(--quattrocento);
	font-weight: 300;
	text-transform: uppercase;
}

h2 {
	font-size: 2rem;
}

p {
	margin-top: 0;
}

a {
	text-decoration: none;
	color: var(--meskr-white);
}

.btn-primary {
	display: inline-block;
	padding: 16px 32px;
	border-radius: 100px;
	border: 1px solid var(--meskr-white);
}

.phudu {
	font-family: var(--phudu);
}

.petrona {
	font-family: var(--petrona);
}

.text-big {
	font-size: 2rem;
}

.container {
	width: 100%;
	max-width: 1240px;
	margin-left: auto; 
	margin-right: auto; 
	padding-left: 16px;
	padding-right: 16px;
}

.container-sm {
	width: 100%;
	max-width: 991px;
	margin-left: auto; 
	margin-right: auto; 
	padding-left: 16px;
	padding-right: 16px;
}

.container-lg {
	width: 100%;
	max-width: 1500px;
	margin-left: auto; 
	margin-right: auto; 
	padding-left: 16px;
	padding-right: 16px;
}

/*
 * Header
 */
#site-header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	padding: 30px 0;
	z-index: 9;
	background: linear-gradient( 180deg,rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, 0) 100%);
}
 
.site-navigation .menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.site-navigation .menu a {
	font-family: var(--phudu);
	font-size: 1.125rem;
	font-weight: 500;
}

/*
 * Brandbox
 */
.section-brandbox {
	padding-bottom: 32px;
}
 
.brandbox {
	position: relative;
	width: 100%;
	height: calc(100vh);
	padding: 32px;
	border-radius: 24px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	background-color: rgba(255, 255, 255, 0.1);
	overflow: hidden;
}

.brandbox-content {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 24px;
	height: 100%;
	z-index: 1;
}

.brandbox-content h1,
.brandbox-content p {
	margin: 0;
	font-family: var(--quattrocento);
	text-transform: uppercase;
	text-shadow: 0 0 24px rgba(0, 0, 0, .5);
}

.brandbox-scroll {
	position: absolute;
	left: 50%;
	bottom: 0;
	padding: 7px;
	height: 40px;
	border: 1px solid #fff;
	border-radius: 12px;
	transform: translate(-50%);
}

.brandbox-scroll-dot {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #fff;

	animation: scroll-down 2s infinite alternate;
	/* animation: scroll-down .4s timing-function delay iteration-count direction fill-mode; */
}

@keyframes scroll-down {
	from {
		transform: translateY(0%);
		/* opacity: 1; */
	}
  
	to {
		/* width: 8px; */
		/* height: 8px; */
		transform: translateY(200%);
		/* opacity: 0; */
	}
}

.brandbox-media {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.brandbox-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*
 * Text Reveal
 */
.section-text-reveal {
	padding: 48px 0;
}

.text-reveal {
	font-size: 2.5rem;
	font-weight: 300;
	color: var(--meskr-white);
	line-height: 1.4;
	/* opacity: .6; */
}

/*
 * Upcomming shows
 */
.section-upcomming-shows {
	min-height: 50vh;
	padding: 48px 0;
}

.upcomming-shows {
	padding: 48px;
	border-radius: 24px;
	background-color: rgba(255, 255, 255, .1);
}

.show-list {
	margin: 0;
	margin-bottom: 32px;
	padding: 0;
	list-style-type: none;
}

.show-item {
	padding: 24px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.show-name {
	margin-bottom: 8px;
	/* font-family: var(--petrona); */
	font-size: 1.75rem;
}

.show-date {
	display: block;
	margin-bottom: 12px;
	font-family: var(--phudu);
	font-weight: 300;
	font-size: 1.125rem;
}

.show-location {
	font-weight: 300;
}
 
/*
 * Footer
 */
#site-footer {
	padding-top: 48px;
}

.footer-links .container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	padding-top: 32px;
	padding-bottom: 64px;
}

.footer-links a {
	text-align: center;
	font-family: var(--phudu);
	font-size: 2rem;
	color: rgba(255, 255, 255, 0.7);
}

.footer-links .footer-link-head {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	font-size: 1.5rem;
	color: var(--meskr-white);
}
 
.footer-logo {
	margin-bottom: -5%;
}

.footer-logo img {
	width: 100%;
}

.colophon {
	position: relative;
	padding-top: 30px;
	padding-bottom: 30px;
	background-color: #1b1b1b;
	color: #fff;
}

.colophon .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.colophon a {
	color: #fff;
	text-decoration: underline;
}

@media ( max-width: 768px ) {
	.footer-links .container {
		grid-template-columns: repeat(1, 1fr);
	}

	.colophon .container {
		flex-direction: column;
		gap: 8px;
	}
}