:root {
	--mainColor: #ff9800;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Fredericka the Great", cursive;
	line-height: 1.4;
}

a {
	text-decoration: none;
}

p {
	margin: 0.75rem 0;
}

/* Utility Classes */
.container {
	/* max-width: 1100px; */
	margin: auto;
	padding: 0 2rem;
	overflow: hidden;
}
.bg-light {
	background: #f4f4f4;
	color: #333333;
}
.bg-dark {
	color: #f4f4f4;
	background: #333333;
}

.bg-light-dark {
	background: #f4f4f4;
	color: black;
	font-weight: 500;
}

.bg-primary {
	background: var(--mainColor);
	color: white;
}

.text-center {
	text-align: center;
}

.text-primary {
	color: #93cb52;
}

.l-heading {
	font-size: 4rem;
	margin-bottom: 0.75rem;
	line-height: 1.1;
}

.m-heading {
	font-size: 2rem;
	margin-bottom: 0.75rem;
	line-height: 1.1;
}

.lead {
	font-size: 1.3rem;
	margin-bottom: 2rem;
}

.py-1 {
	padding: 1.5rem 0;
}
.py-2 {
	padding: 2rem 0;
}
.py-3 {
	padding: 3rem 0;
}
.p-1 {
	padding: 1.5rem;
}
.p-2 {
	padding: 2rem;
}
.p-3 {
	padding: 3rem;
}

.current {
	color: var(--mainColor);
}

.line {
	color: var(--mainColor);
}

.btn {
	display: inline-block;
	color: #ffffff;
	border: 3px solid;
	padding: 0.5rem 2rem;
	/* border: none; */
	border-radius: 5px;
}

.btn:hover {
	background: var(--mainColor);
}

.btn-primary {
	background-color: #333333;
	cursor: pointer;
}

.btn-primary:hover {
	background-color: #5e5b5b;
}

span {
	margin: 0 5px 0 10px;
}
.btn-dark {
	background: #ffffff;
	display: inline-block;
	color: #ffffff;
	border: 3px solid;
	padding: 0.5rem 2rem;
	/* border: none; */
	border-radius: 5px;
	animation: pulse 5s infinite;
	border-radius: 9px;
}

.btn-dark:hover {
	background: #333333;
	color: #ffffff;
}

@keyframes pulse {
	0% {
		background-color: #001f3f;
	}
	100% {
		background-color: #ff4136;
	}
}

.list {
	margin: 0.5rem 0;
	list-style: none;
}

.list li {
	padding: 0.5rem 0;
	border-bottom: #444444 dotted 1px;
}

.empty-space {
	padding: 20px;
	background-color: #444444;
}

/* Navbar  ########################################### */

#logo {
	align-self: center;
	margin-left: 15px;
	text-shadow: 0 0 10px #ffffff, 2px 2px 2px rgba(255, 255, 255, 0);
	cursor: default;
}

#navbar {
	display: flex;
	position: sticky;
	justify-content: space-between;
	z-index: 1;
	top: 0;
	background: #333333;
	color: #ffffff;
	padding: 1rem;
}

#navbar ul {
	display: flex;
	align-items: center;
	list-style-type: none;
}

#navbar ul li a {
	color: #ffffff;
	padding: 0.75rem;
	margin: 0 0.25rem;
}

#navbar ul li a:hover {
	background: var(--mainColor);
	border-radius: 5px;
}

/* Showcase */

#showcase {
	background: #333333 url("/img/new-showcase3.jpg") no-repeat center
		center/cover;
	height: 100vh;
	color: #ffffff;
}

#showcase .showcase-content {
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 0 2rem;
	/* Overlay */
	position: absolute;
	top: 83px;
	right: 0;
	bottom: 0;
	left: 0;
	/* background-color: rgba(0, 0, 0, 0.4); */
}

/* Section: What We Do */
#what {
	font-family: "Roboto Slab", serif;
}

#what .items {
	display: flex;
	padding: 1rem;
}

#what .items .item {
	flex: 1;
	padding: 1rem;
	text-align: center;
}

/* Section : Who We Are */

#who {
	display: flex;
}

#who div {
	flex: 1;
}

#who .who-img {
	background: url("/img/artist.jpg") no-repeat center;
	background-size: 450px;
	background-color: lightgrey;
}

/* Section : Contact */

#contact {
	display: flex;
}

#contact .map,
#contact .contact-form {
	color: #444444;
	font-weight: bold;
	flex: 1;
}

#contact .contact-form .form-group {
	margin: 0.75rem;
}
#contact .contact-form label {
	display: block;
}

#contact .contact-form input,
#contact .contact-form textarea {
	width: 100%;
	padding: 0.5rem;
}

/* Gallery ######################################### */

.gallery {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	flex-flow: row wrap;
	background-color: #0f0f0f;
	/* border: 1px dotted var(--mainColor); */
	justify-content: center;
	align-items: center;
}

.gallery .image img {
	/* width: 180px; */
	width: 380px;
	height: 400px;
	border-radius: 5px;
	border: 2px solid #f4f4f4;
	margin: 3vw 1.5vw;
	padding: 10px;
}

/* Before Section ################################################ */

.container .art-image {
	display: flex;
	justify-content: center;
}

.container .art-image img {
	/* height: 500px; */
	/* width: 800px; */
	height: 70vh;
	width: 60vw;
}

.container .main-section {
	text-align: left;
}

.container .main-section h1 {
	text-align: center;
}

.container .main-section p {
	width: 80%;
	padding-left: 100px;
	font-family: "Roboto Slab", serif;
}
.img-fluid {
	height: 100% !important;
}
