/* Default styles */
:root {
    --custom-text-orange: #7DCE13;
}

.font-family-display {
    font-family: "Comfortaa", cursive;
}

.text-primary-custom {
    color: var(--custom-text-orange);
}

.pt-6 {
	padding-top: 4rem;
}

body {
    font-family: "Lato", sans-serif;
    color: black;
    background-color: white;
}

/* Navigation */
nav .font-family-display {
    text-shadow: 4px 4px 10px black;
}

.navbar-brand img {
    width: 20px;
    height: 20px;
}

.navbar-toggler {
    border-color: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link {
	color: black;
}

.navbar-dark .nav-link {
	color: white;
}

.navbar-nav .nav-link.active {
	color: var(--custom-text-orange);
}

/* Header */
.header-content {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    color: white;
    text-shadow: 4px 4px 10px black;
}

.header-content::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.4);
}

/* Content */
.social-button {
    width: 2rem;
    height: 2rem;
    color: #fff;
    font-size: 1rem;
    border: 1px solid #fff;
    background-color: transparent;
    border-radius: 50%;
    padding: 0 0.5rem;
    text-decoration: none;
}

.social-button:hover {
    background-color: #fff;
    color: #555;
}

.social-facebook {
    padding: 0 0.6rem;
}

/* Background */
.bg-cover {
    display: block;
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

    background-image: url("images/bg-cover.jpg");
    background-position: center;
    background-repeat: no-repeat;
  	/*background-attachment: fixed;*/
    background-size: cover;
    background-color: black;
}

/* Main */
main .divider {
	width: 60px;
	height: 3px;
	background-color: var(--custom-text-orange);
}

/* Footer */
footer {
	background-color: rgb(28, 28, 28);
}

footer a {
	color: white;
	text-decoration: none;
}

footer a:hover {
	color: var(--custom-text-orange);
}
