/* Additional Custom Styling */
:root {
    --text-color-dark: #212529;
    --fn-primary-rgb: #8f155e;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    background: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.text-opacity-80 {
	opacity: 0.8;
}
.bg-darker {
    background: #000;
}
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/colorful.png') no-repeat center center/cover;
}
.slider-item {
    padding: 0 10px; /* Add space between slide items */
}
.headline span {
	background: linear-gradient(86.33deg, #093DF8 40.31%, #BC5FFC 74.39%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	/* text-fill-color: transparent; */
}
.search-container input {
    border-radius: 25px;
    padding: 10px 20px;
}
.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border: none;
	border-radius: 15px;
}
.card:hover {
    transform: translateY(-5px);
}
.cta-section {
    background: linear-gradient(rgba(181, 17, 132, 0.5), rgba(0, 0, 0, 0.5))
}
.footer {
    background: #1a1a1a;
    color: #d1d1d1;
    padding: 1rem 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

h2.section-title {
	font-size: calc(1rem + 1vw);
	line-height: calc(1rem + 2vw);
	font-weight: 400;
	text-align: center;
	margin-bottom: 1.5rem;
}
p {
	font-weight: 400;
	color: #000;
	opacity: 0.6;
}
.rounded-pill {
	border-radius: 53px;
	/* padding: 15px 30px; */
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.search-field {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 20px;
    display: none;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
}

.search-results ul {
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--text-color-dark);
}

.search-results ul li {
	padding: 10px;
	/* cursor: pointer; */
	border-bottom: 1px solid #f1f1f1;
	text-align: left;
	padding-left: 30px;
}
.search-results ul li a {
	text-decoration: none;
	color: inherit;
	margin-left: 20px;
}

.search-results ul li:last-child {
    border-bottom: none;
}

.search-results ul li:hover {
    background: #f9f9f9;
}

.search-results a.see-all {
    display: block;
    padding: 10px;
    text-align: center;
    background: #eee;
    color: var(--text-color-dark);
    text-decoration: none;
}
.score-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    transition: transform 0.3s ease;
}
  
.score-card:hover {
    transform: scale(1.05);
}
  
.thumbnail img {
    width: 100%;
    border-radius: 4px;
}
  
.details {
    text-align: center;
}
  
.category-tags .tag {
    display: inline-block;
    background-color: #f0f0f0;
    color: #555;
    padding: 2px 8px;
    border-radius: 4px;
    margin: 2px;
    font-size: 12px;
}
  
.action-buttons {
    display: flex;
    justify-content: space-evenly;
    margin-top: 10px;
}
  
.action-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
    font-size: 24px;
    transition: color 0.3s ease;
}
  
.action-btn:hover {
    color: #007bff;
}
.main-content {
    flex: 1;
}
p.composer-name {
    font-size: 15px;
}
.material-symbols-outlined.icon-lg {
	text-align: center;
	font-size: 110px;
}
.p-15 {
	padding: 15px;
}
.custom-card {
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}
.hero-section .container {
	transform: translateY(-50%);
	transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
	.hero-section .container {
		transform: translateY(-70%);
		transition: transform 0.3s ease-in-out;
	}
}
.hero-section.focused .container {
    transform: translateY(-80%);
    transition: transform 0.3s ease-in-out;
}
.hover-effect-underline:hover {
	text-decoration: none !important;
}
.modal-content.modal-border-radius-lg {
	border-radius: 20px;
}
.modal-border-radius-lg .modal-header{
	border-radius: 20px 20px 0 0;
	/* padding-bottom: 0; */
}
.modal-body .modal-title {
	margin-bottom: 20px;
	font-size: 1.5rem;
	text-align: center;
}

.border-none {
    border: none !important;
}
button.close {
	padding: 0;
	background-color: transparent;
	border: 0;
}
.close {
	float: right;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
	color: #000;
	text-shadow: none;
	opacity: .5;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	border-right: none;
	color: #fff;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
	background-color: var(--fn-primary);
	border: 1px solid var(--fn-primary);
	color: #fff;
}
.select2-container--default .select2-selection--multiple {
	background-color: #fff;
	border: 1px solid #cad0d9;
	border-radius: var(--fn-border-radius);
	min-height: calc(1.5em + 1.37rem + var(--fn-border-width)*2);
	padding: 5px;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: var(--fn-primary);
	color: white;
}
.select2-container--default .select2-selection--single {
	background-color: #fff;
	border: 1px solid #cad0d9;
	border-radius: var(--fn-border-radius);
	min-height: calc(1.5em + 1.37rem + var(--fn-border-width)*2);
	align-content: center;
	padding: 5px;
}
.select2-container .select2-search--inline .select2-search__field {
	height: 22px;
}
.badge.badge-info {
	border-radius: 100% !important;
	padding: 0;
	font-size: 1rem;
}

.header-title {
	font-size: 1rem;
	margin: 0 0 7px 0;
    line-height: 1.1;
}
.text-right {
    text-align: right !important;
}
.text-left {
    text-align: left !important;
}
.float-right {
    float: right !important;
}
.float-left {
    float: left !important;
}

.progress {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: .625rem;
	overflow: hidden;
	line-height: 0;
	font-size: .675rem;
	border-radius: .25rem;
    margin-top: 18px;
}
.progress-bar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	overflow: hidden;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	background-color: #71b6f9;
	-webkit-transition: width .6s ease;
	transition: width .6s ease;
}
.progress-sm {
	height: 5px !important;
}
.progress-bar-alt-success {
	background-color: rgba(16,196,105,.2);
}
.sr-only {
	border: 0;
	clip: rect(0,0,0,0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
    white-space: nowrap;
}
.card-box {
	padding: 1.5rem;
}
.card-box-title {
	font-size: 1rem;
	margin: 0 0 7px 0;
}
.card.min-height-162 {
	min-height: 162.2px;
}
.box-shadow-52 {
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em !important;
}
.box-shadow-29 {
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px !important;
}
.bg-body-secondary {
	--fn-bg-opacity: 1;
	background-color: rgb(249, 249, 249) !important;
}

.no-results {
	color: #4d4c4c;
	min-height: 50px;
	padding: 18px;
	text-align: left;
}
.h-100vh {
	height: 100vh !important;
}
.text-justify {
	text-align: justify !important;
}
.dropify-wrapper {
	border-radius: 0.5rem;
}
.dropify-wrapper .dropify-message span.file-icon {
	font-size: 1.5rem;
}
.footer-link {
	text-decoration: none;
	color: var(--fn-dark-text-emphasis);
	margin-right: 10px;
	font-size: 1rem;
}
@media screen and (max-width: 798px) {
	.footer-link {
		font-size: 0.8rem;
	}
}
/* #navbarNav > div .navbar-nav a.nav-link {
	position: relative;
}
#navbarNav > div .navbar-nav a.nav-link:hover {
	background-color: transparent !important;
}

#navbarNav > div .navbar-nav a.nav-link.active {
	background-color: transparent !important;
}
#navbarNav > div .navbar-nav a.nav-link::after {
	content: '';
	position: absolute;
	left: 42%;
	bottom: 0px;
	width: 0%;
	height: 3px;
	background-color: #ba1879;
	transform: translateX(-50%);
	transition: width 0.3s ease;
}
#navbarNav > div .navbar-nav a.nav-link.active::after  {
	width: 35%;
}
#navbarNav > div .navbar-nav a.nav-link:hover::after {
	width: 35%;
} */
