@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

body, li, a, button {
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	color: #212121;
	font-weight: 500;

	text-decoration: none;
	list-style: none;
}

html { 
	overflow-y: scroll;
	overflow-x: hidden; 
}


body {
	margin-top: 100px;
}

.gold-text {
	color: #fdd049;
}

.italic-text {
	font-style: italic;
}

.nav-bar {
	display: flex;
	position: fixed;
	top: 0;
	justify-content: space-between;
	align-items: center;
	padding: 15px 10%;
	width: 100%;
	height: 10%;
	list-style: none;
	z-index: 1000;

	background-color: #fdd049;
	box-shadow: 0px 5px 5px #dedede;
}

.nav-logo img {
	width: 175px;
}

.nav-logo {
	height: 37.8px;
}

.nav-pages-mobile {
	position: fixed;
	bottom: 0px;
	width: 100%;
	background-color: #212121;
	z-index: 999;
}

.nav-pages-mobile-list {
	display: flex;
	justify-content: space-evenly;
}

.nav-pages-links-mobile {
	width: 100%;
	text-align: center;
	cursor: pointer;
	padding: 10px;
}

.nav-pages-links-mobile a {
	font-weight: 400;
	color: #fdd049;
	font-size: 13px;
}

.nav-pages-links-mobile-active {
	border-bottom: 3px solid #fdd049;
}

/*
	Special styling for navbar for screens less than 960px in width (tablets and phones)
*/
@media all and (max-width: 960px) {
	.nav-bar {
		padding: 10px 2%;
		height: 10%;
	}
	.nav-logo img {
		width: 125px;
	}
	.nav-logo {
		height: 27px;
	}
	.nav-pages-desktop {
		display: none;
	}
	.log-in-button, .sign-up-button {
		font-size: 12px;
		padding: 7px 12px;
	}
	.sign-up-button {
		margin-right: 0px !important;
		padding-right: 3px;
	}
}

.nav-pages-links-desktop {
	display: inline-block;
	padding: 0px 20px;
}

.nav-pages-links-desktop a {
	padding: 23px 5px 23px 5px;
	transition: all 300ms ease 0s;
}

.nav-pages-links-desktop a:hover {
	border-bottom: 4px solid #212121;
}

.nav-account-action {
	cursor: pointer;
	transition: all 300ms ease 0s;

	background-color: #fdd049;
}

.sign-up-button {
	margin-right: 10px;
	border: none;
}

.log-in-button {
	padding: 9px 25px;
	border: 2px solid #212121;
	border-radius: 10px;
	background-color: #212121;
	color: #f7f7f7;
}

.sign-up-button:hover {
	color: #333333;
}

.log-in-button:hover {
	background-color: #333333;
}

.log-in-dropdown {
	position: fixed;
	right: 10%;
	top: 10%;
	display: none;

	width: 200px;
	padding: 15px;
	text-align: center;
	border: 2px solid #212121;
	border-radius: 12px;
	box-shadow: -2px 2px 2px #aaa;
	background-color: #f7f7f7;
}

.account-button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	margin: 5px;
}

.account-dropdown {
	position: fixed;
	right: 10%;
	top: 10%;
	display: none;

	padding: 1px;
	padding-top: 8px;
	padding-bottom: 8px;

	border: 2px solid #212121;
	border-radius: 12px;
	box-shadow: -2px 2px 2px #aaa;
	background-color: #f7f7f7;
}

@media all and (max-width: 960px) {
	.account-dropdown {
		right: 2%;
	}
}

.account-dropdown-option {
	display: block;
	padding: 10px;
	padding-right: 100px;
}

.account-dropdown-log-out {
	color: #EC5656;
}

.account-dropdown-option:hover {
	background-color: #eee;
}

.circle-user-icon {
	font-size: 35px;
	margin-right: 12px;
}

.message-icon {
	font-size: 30px;
}

.show-dropdown {
	display: block;
}


/*

	HOME PAGE STYLES

*/

.main-search-bar-container {
	text-align: center;
	padding-bottom: 30px;
	padding-top: 10px;
	width: 50%;
	margin: auto;
	display: flex;
	flex-direction: row;
}

.main-search-bar-icon {
	position: absolute;
	padding-left: 10px;
	padding-top: 14px;
}

.main-search-bar {
	width: 80%;
	padding: 10px;
	padding-left: 35px;
	border: 2px solid #212121;
	border-radius: 15px 0px 0px 15px;
	border-right-width: 1px;
}

.main-search-bar-location-icon {
	position: absolute;
	margin-left: 41%;
	padding-top: 14px;	
}

.main-search-bar-location {
	width: 20%;
	border-radius: 0px 15px 15px 0px;
	padding: 10px;
	padding-left: 35px;
	border-left-width: 1px;
}

@media all and (max-width: 960px) {
	.main-search-bar-container {
		width: 95%;
	}
	.main-search-bar-location-icon {
		margin-left: 73%;
	}
	.main-search-bar {
		width: 75%;
	}
	.main-search-bar-location {
		width: 25%;
		padding-left: 30px;
	}
}

.home-tag-line {
	color: #f7f7f7;
	background-color: #212121;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 30px;
}

.home-splash-image-container {
	display: flex;
	justify-content: space-evenly;
	padding-bottom: 20px;
}

.home-splash-image {
	width: 30%;
}

h3, h5 {
	text-align: center;
	margin-top: 20px;
}


/*

	SIGNUP PAGE STYLES

*/

input {
	font-family: "Poppins", sans-serif;
	padding: 8px;
	background-color: #f7f7f7;
	border: 2px solid #212121;
	border-radius: 7px;

	transition: all 300ms ease 0s;
}

.log-in-dropdown-input {
	width: 90%;
	margin-bottom: 6px;

}

input:focus {
	outline-color: #fdd049;
}

#log-in-dropdown-title {
	margin-bottom: 10px;
}

#log-in-dropdown-button {
	margin-top: 5px;
	border: 2px solid #fdd049;
	background-color: #fdd049;
	padding: 7px 20px 7px 20px;
	border-radius: 7px;
	cursor: pointer;

	transition: all 300ms ease 0s;
}

#log-in-dropdown-button:hover {
	border: 2px solid #212121;
}

.sign-up {
	text-align: center;
	margin-top: 100px;
}

.sign-up-form-title {
	margin-top: 120px;
}

.sign-up-form {
	margin-top: 30px;
}

.form-input {
	margin-bottom: 10px;
	width: 25%;
	min-width: 225px;
}

#zip-code-input {
	width: 10%;
	min-width: 100px;
}

.form-button {
	width: 25%;
	min-width: 225px;
	padding: 9px 25px;
	border: 2px solid #fdd049;
	border-radius: 10px;
	background-color: #fdd049;
	color: #212121;
	cursor: pointer;

	transition: all 300ms ease 0s;
}

.form-button:hover {
	box-shadow: 1px 1px 5px #aaa;
}

.already-have-account-dialog {
	margin-top: 2%;
}

.link {
	color: #fdd049;
}

.spacer {
	margin-top: 30%;
}

.gig-card {
	margin-left: 20%;

	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 25%;
	height: 260px;
	min-width: 275px;
	border: 2px solid #212121;
	box-shadow: -2px 2px 6px #bbb;
	border-radius: 10px;
	padding: 7px;
	cursor: pointer;
	background-color: transparent;
	perspective: 1000px;
}

.gig-card-inner {
	position: relative;
	width: 100%;
	height: 100%;

	transition: transform 0.8s;
  	transform-style: preserve-3d;
}

.gig-card:hover .gig-card-inner {
	transform: rotateY(180deg);
}

.gig-card-front, .gig-card-back {
  	position: absolute;
  	width: 100%;
  	height: 100%;
	-webkit-backface-visibility: hidden; /* Safari */
	backface-visibility: hidden;
}

.gig-card-back {
	transform: rotateY(180deg);
}

.gig-card-info {
	display: flex;
	justify-content: space-between;
}

.gig-card-thumbnail {
	width: 100%;
}

.gig-card-title {
	text-align: left;
}

.gig-card-pay {
	font-weight: 500;
}

.gig-card-pay-type {
	color: #21212180;
	font-size: 10px;
}

.gig-card-zip {
	font-weight: 500;
}

.gig-card-date-posted {
	font-size: 12px;
	font-weight: 400;
	font-style: italic;
}


/*

	CREATE PROFILE FORM STYLES

*/

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

.create-profile-form {
	margin-top: 50px;
}

.textarea-input {
	font-family: "Poppins", sans-serif;
	resize: none;
	padding: 5px;
	border: 2px solid #212121;
	border-radius: 7px;

	transition: all 300ms ease 0s;
}

.textarea-input:focus {
	outline-color: #fdd049;
}

.char-counter {
	color: #21212180;
	font-size: 8px;
	transform: translateX(125px);
}

.zip-code-dialog {
	margin-top: 25px;
	margin-bottom: 50px;
}

/*

	PROFILE  PAGES STYLES

*/

.container {
	margin: auto;
	width: 50%;
	margin-bottom: 100px;
}

.page-title {
	margin-bottom: 35px;
}

@media all and (max-width: 960px) {
	.container {
		width: 95%;
	}
}

.user-profile {
	text-align: center;
	width: 100%;
	height: 100%;

	display: flex;
	align-items: center;
	flex-direction: column;
	flex-wrap: wrap;
}

.profile-section-1 {
	display: flex;
	flex-direction: row;
	align-items: center;

	margin-bottom: 20px;
}

.profile-subsection-1 {
	padding-left: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.user-profile-pic {
	width: 150px;
}

.user-profile-real-name {
	margin: 0;
	padding: 0;

	font-weight: 500;
	font-size: 24px;
}

.user-profile-username {
	margin: 0;
	padding: 0;

	color: #212121cc;
	font-weight: 500;
	font-size: 14px;
}

.user-profile-account-created {
	margin: 0;
	margin-top: 10px;
	padding: 0;

	color: #212121cc;
	font-weight: 400;
	font-size: 12px;
	font-style: italic;
}

.user-profile-last-active {
	margin: 0;
	padding: 0;

	color: #212121cc;
	font-weight: 400;
	font-size: 12px;
	font-style: italic;
}

.user-profile-location {
	margin-top: 5px;
	font-size: 14px;
}

.user-profile-location-php {
	padding-left: 5px;
	font-size: 13px;
	font-weight: 500;
}

.profile-section-2 {
	width: 75%;
}

.user-profile-title {
	color: #212121cc;
	font-weight: 400;
}

.profile-section-3 {
	width: 75%;
}

.user-profile-desc {
	color: #212121cc;
	font-weight: 400;
}

.profile-section-4 {
	width: 75%;
	margin-top: 40px;
}

.user-profile-buzz-words-title {
	margin-bottom: 10px;
}

.buzz-word {
	display: inline-block;

	background-color: #212121;
	color: #f7f7f7;
	padding: 12px 20px;
	font-size: 16px;
	font-weight: 500;
	border-radius: 50px;
	margin: 3px;
}

.edit-profile-button {
	margin-top: 40px;
}