body {
	background-color: #0C0C0B;
	padding: 0;
	margin: 0;
}

.body-container {
	padding:0 10%;
}

@media (max-width: 1024px), screen and (orientation: portrait) {
	.body-container {
		padding: 0 5%;
	}	
}

@media (max-width: 768px), screen and (orientation: portrait) {
	.body-container {
		padding: 0 16px;
	}	
}





/* TYPOGRAPHY */
h1 {
	font-family: "Afacad", sans-serif;
	font-weight: 700;
	font-size: 5rem;
	line-height: 5rem;
	letter-spacing: .06rem;
	color: #d5d5d5;
	text-align: center;
	text-shadow: 8px 8px 0 rgba(12, 12, 11, 0.7);
	margin: 0;
}

.h1-hero {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 75%;
}

h2 {
	font-family: "Afacad", sans-serif;
	font-weight: 700;
	font-size: 3rem;
	line-height: 3rem;
	letter-spacing: .06rem;
	color: #d5d5d5;
	text-align: center;
	padding-bottom: .5rem;
	margin: 0;
}

p, ul, li {
	font-family: "Afacad", sans-serif;
	font-weight: 400;
	font-size: 1.5rem;
	line-height: 2.5rem;
	letter-spacing: .06rem;
	color: #a0a0a0;
	text-align: center;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

p {
	padding-bottom: 2rem;
}

p.paragraph {
	text-align: left;
}

p.copyright {
	font-family: "Afacad", sans-serif;
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1rem;
	color: #666;
	text-align: center;
	margin: 0;
	padding-bottom: 2rem;	
}

p.sub {
	padding-bottom: 1rem;
	line-height: 1.5rem;
}

@media (max-width: 768px), screen and (orientation: portrait) {
	h1 {
		font-size: 2.25rem;
		line-height: 2.25rem;
		text-shadow: 4px 4px 0 rgba(12, 12, 11, 0.7);
	}

	.h1-hero {
		width: 90%;
	}

	h2 {
		font-size: 2.25rem;
		line-height: 2.25rem;
	}

	p, ul, li {
		font-size: 1.125rem;
		line-height: 2rem;
	}

	p {
		padding-bottom: 1rem;
	}

	p.copyright {
		font-size: 0.75rem;
		padding-bottom: 2rem;	
	}
}





/* HEADER */
header {
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
}

.home-header {
	height: 192px;
}

.portfolio-header {
	height: 120px;
}

.logo {
	margin: 0 auto;
}

.logo-home {
	width: 217px;
}

.logo-portfolio {
	width: 157px;
}

.social-btn-container {
	position: absolute;
}

.back-btn-container {
	position: absolute;
}

.social-btn {
	width: 44px;
	height: 44px;
	margin-right: 12px;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	display: inline-block;
}

.back-btn {
	padding: 8px 16px 8px 0;
}

.back-arrow {
	margin-right: 8px;
}

.social-btn:hover, .back-btn:hover, .close-btn:hover {
	box-shadow: 8px 8px 0 rgba(205, 169, 41, 0.15);
	transition: box-shadow 0.2s ease-in-out;
}

.social-icon {
	padding: 8px 0 0 8px;
}

.tt-footer {
	background-image: url("../images/tt-footer.svg");
}

.yt-footer {
	background-image: url("../images/yt-footer.svg");
}

.ig-footer {
	background-image: url("../images/ig-footer.svg");
}

.header-btn {
	position: absolute;
	right: 10%;
}

@media (max-width: 1024px), screen and (orientation: portrait) {
	.header-btn {
		right: 5%;
	}

	.logo-home {
		width: 160px;
	}
}

@media (max-width: 768px), screen and (orientation: portrait) {
	.home-header {
		height: 86px;
	}

	.portfolio-header {
		height: 86px;
	}

	.logo {
		width: 97px;
	}

	.social-btn.hide {
		display: none;
	}

	.header-btn.hide {
		display: none;
	}

	.header-btn {
		right: 16px;
	}

	.social-btn {
		width: 40px;
		height: 40px;
		margin-right: 4px;
	}

	.social-icon {
		width: 16px;
		height: 16px;
		padding: 12px 0 0 12px;
	}
}




/* STICKY FOOTER */
.stickyfooter-container {
	position: fixed;
	z-index: 4;
	width: 100%;
	height: 96px;
	margin: 0 auto;
	display: none;
	align-items: center;
	left: 0;
	bottom: 0;
	background-color: #0c0c0b;
}

.social-btn-container-stickyfooter {
	position: absolute;
	left: 10%;
}

@media (max-width: 768px), screen and (orientation: portrait) {
	.stickyfooter-container {
		display: flex;
		height: 64px;
	}

	.social-btn-container-stickyfooter {
		left: 16px;
	}
}




/* BUTTONS */
.cta, input[type="submit"], button {
	width:176px;
	height:56px;
	background-color: #CDA929;
	margin: 0 auto;
	font-family: "Afacad", sans-serif;
	font-size: 1.5rem;
	line-height: 3.4rem;
	color: #0c0c0b;
	font-weight: 700;
	text-align: center;
	border: none;
}

.cta.center {
	display: block;
}

.cta:hover, input[type="submit"]:hover, button:hover {
	background-color: #E0BC3D;
	box-shadow: 8px 8px 0 rgba(205, 169, 41, 0.2);
	transition: box-shadow 0.2s ease-in-out;
	cursor: pointer;
}

a {
	cursor: pointer;
	border: none;
	text-decoration: none;
	font-family: "Afacad", sans-serif;
	font-weight: 700;
	font-size: 1.5rem;
	color: #d5d5d5;
}

@media (max-width: 768px), screen and (orientation: portrait) {
	.cta {
		width: 136px;
		height: 40px;
		font-size: 1rem;
		line-height: 2.5rem;
	}

	a {
		font-size: 1rem;
	}
}





/* FLEX GRID */
#artwork {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
}

#artwork-fullwidth {
	width: 100%;
	aspect-ratio: 2/1;
	object-fit: cover;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 24px;
  margin-bottom: 24px;
}

.grid-compressed {
  grid-template-columns: repeat(2, 1fr);
  display: grid;
  grid-gap: 24px;
}

.box {
	color: white;
	text-align: center;
	background-size: cover;
}

.full {
	grid-column: span 12;
	aspect-ratio: 2/1;
}

.half {
	grid-column: span 6;
	aspect-ratio: 1/1;
}

.half-contact {
	grid-column: span 6;
}

.third {
	grid-column: span 4;
	aspect-ratio: 1/1;
}

.quarter {
	grid-column: span 1;
	aspect-ratio: 1/1;
}

a.image-link-container {
	height: 100%;
    width: 100%;
    display: block;
}

@media (max-width: 768px), screen and (orientation: portrait) {
	#artwork-fullwidth {
		aspect-ratio: 1/1;
	}

	.grid {
		grid-gap: 16px;
		margin-bottom: 16px;
	}

	.grid-compressed {
		grid-gap: 16px;
	}

	.full {
		grid-column: span 12;
		aspect-ratio: 1/1;
	}

	.half {
		grid-column: span 12;
	}

	.half-contact {
		grid-column: span 12;
	}

	.third {
		grid-column: span 12;
	}

	.quarter {
		grid-column: span 1;
	}
}





/* TEXT SECTIONS */
.text-container {
	max-width: 960px;
	padding: 96px 0;
	margin: 0 auto;
}

.text-container-top {
	padding: 0 0 24px 0;
	margin: 0 auto;
}

.text-container-mid {
	padding: 96px 0 24px 0;
	margin: 0 auto;
}

@media (max-width: 768px), screen and (orientation: portrait) {
	.text-container {
		padding: 64px 0;
	}

	.text-container-top {
	padding: 48px 0 8px 0;
	margin: 0 auto;
}

.text-container-mid {
	padding: 48px 0 8px 0;
	margin: 0 auto;
}
}




/* HOME IMAGES */
.image-hover:hover {
	-ms-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -webkit-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03);
    box-shadow: 0 0 48px black;
    -webkit-transition: all .15s;
    -moz-transition: all .15s;
    -o-transition: all .15s;
    transition: all .15s;
}




/* PORTFOLIO HERO */

.portfolio-hero {
	width: 100dvw;
	aspect-ratio: 21/9;
	background-size: cover;
	background-position: center;
	margin-left: calc(50% - 50dvw);
	margin-bottom: 96px;
	position: relative;
	text-align: center;
	background-color: #0c0c0b;
}

#artwork-hero {
	width: 100%;
	aspect-ratio: 21/9;
	object-fit: cover;
	opacity: .5;
}

@media (max-width: 768px), screen and (orientation: portrait) {
	.portfolio-hero {
		aspect-ratio: 5/7;
		margin-bottom: 16px;
	}

	#artwork-hero {
		aspect-ratio: 5/7;
	}
}




/* FOOTER */
.footer {
	width: 100%;
	display: flex;
}

.social-btn-container-footer {
	margin: 0 auto 8px auto;
}




/* CONTACT FORM */

.form-container {
	padding: 32px 24px;
	background-color: #181818;
	margin: 32px 0;
	border-radius: 6px;
	box-shadow: 0 8px 32px black;
}

.contact-text-container {
	margin-top: 104px;
}

p.contact, h2.contact {
	text-align: left;
}

p.contact {
	max-width: 80%;
}

label {
	font-family: 'Afacad', sans-serif;
	font-size: 1.375rem;
	font-weight: 500;
	color: #d5d5d5;
}

input[type=text], [type=email], select, textarea {
	width: 100%;
	padding: 12px;
	background-color: #1f1f1f;
 	border: 2px solid #444;
	box-sizing: border-box;
	margin-top: 6px;
	margin-bottom: 32px;
	resize: vertical;
	font-family: 'Afacad', sans-serif;
	font-size: 1.25rem;
	font-weight: 400;
	color: #888;
}

input:hover, select:hover, textarea:hover {
	background-color: #222;
	border: 2px solid #444;
	color: #999;
	box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.75);
}

input:focus, select:focus, textarea:focus, input:valid, select:valid, textarea:valid {
	background-color: #d5d5d5;
	border: 2px solid #d5d5d5;
	outline: none;
	color: #000;
}

input:focus, select:focus, textarea:focus {
	box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.75);
	font-weight: 500;
}

input[type=submit]:hover {
  background-color: #E0BC3D;
}

.validation-box {
	background-color: #E86161;
	top: -32px;
	position: relative;
	display: none;
}

.validation-arrow {
	position: absolute;
	right: 20px;
	top: -8px;
}

.validation-cross {
	position: absolute;
	width: 24px;
	height: 24px;
	right: 16px;
	top: -40px;
}

p.validation {
	font-size: 1.125rem;
	font-weight: 600;
	color: black;
	text-align: left;
	padding-left: 16px;
	padding-bottom: 0;
	border-top: 2px solid #973F3F;
	line-height: 1.875rem;
}

@media (max-width: 768px), screen and (orientation: portrait) {
	.contact-text-container {
		margin-top: 16px;
	}

	p.contact {
		max-width: 480px;
	}

	.form-container {
		padding: 24px 16px;
		margin: 0 0 48px 0;
	}

	label {
		font-size: 1.25rem;
	}

	input[type=text], [type=email], select, textarea {
		padding: 12px;
		margin-top: 4px;
		margin-bottom: 32px;
		font-size: 1.125rem;
	}
}