/********************
  BASE STYLES
********************/

/* @font-face {
	font-family: "lola-regular";
	src: url("../fonts/fs_lola-regular-webfont.eot");
	src: url("../fonts/fs_lola-regular-webfont.eot?#iefix")
			format("embedded-opentype"),
		url("../fonts/fs_lola-regular-webfont.woff2") format("woff2"),
		url("../fonts/fs_lola-regular-webfont.woff") format("woff"),
		url("../fonts/fs_lola-regular-webfont.ttf") format("truetype"),
		url("../fonts/fs_lola-regular-webfont.svg#fs_lolaregular") format("svg");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "lola-bold";
	src: url("../fonts/fs_lola-bold-webfont.eot");
	src: url("../fonts/fs_lola-bold-webfont.eot?#iefix")
			format("embedded-opentype"),
		url("../fonts/fs_lola-bold-webfont.woff2") format("woff2"),
		url("../fonts/fs_lola-bold-webfont.woff") format("woff"),
		url("../fonts/fs_lola-bold-webfont.ttf") format("truetype"),
		url("../fonts/fs_lola-bold-webfont.svg#fs_lolaregular") format("svg");
	font-weight: normal;
	font-style: normal;
} */

html,
body {
	height: 100%;
	width: 100%;
	background: var(--bgi) no-repeat center center fixed;
	background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.88)),
		var(--bgi);
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	font-family: "Open Sans", sans-serif;
	color: #fff;
	font-size: 20px;
}

.content {
	text-align: center;
	height: 100%;
}

h1,
h2,
h3,
h4,
h5 {
	color: #fff;
	/* font-family: "lola-bold"; */
}

h1 {
	font-size: 72px;
}

h2 {
	font-size: 36px;
	/* color: #00a4dd; */
}

h3 {
	font-size: 30px;
	/* color: #ffc82f; */
}

.header {
	text-align: center;
	padding: 2rem 0;
}

.footer {
	text-align: center;
	padding: 0 0 2rem;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.link-item {
	flex: 1 0 50%;
	padding: 0.25rem;
}

.btn {
	border-radius: 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 1rem;
	background-color: rgba(0, 0, 0, 0.5);
	transition: background-color 0.3s, color 0.3s;
	font-size: 0.75rem;
}

.btn-primary {
	--bs-btn-bg: #00a4dd;
	--bs-btn-border-color: #00a4dd;
	--bs-btn-hover-bg: #008bbd;
	--bs-btn-hover-border-color: #008bbd;
}

.grid-container {
	padding: 0 1rem;
}

.album-item {
	position: relative;
	/* cursor: pointer; */
	transition: transform 0.3s;
	overflow: hidden;
}

/* .album-item:hover {
	transform: scale(1.02);
} */

.album-item img {
	width: 100%;
	height: auto;
	display: block;
}

.album-border {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 5px solid;
	pointer-events: none;
}

.number-badge {
	position: absolute;
	top: 5px;
	right: 5px;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background-color: inherit;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 0.9rem;
}

.green-border {
	border-color: #4caf50;
}
.blue-border {
	border-color: #2196f3;
}
.orange-border {
	border-color: #ff9800;
}
.purple-border {
	border-color: #9c27b0;
}
.pink-border {
	border-color: #e91e63;
}
.teal-border {
	border-color: #009688;
}

.green-badge {
	background-color: #4caf50;
}
.blue-badge {
	background-color: #2196f3;
}
.orange-badge {
	background-color: #ff9800;
}
.purple-badge {
	background-color: #9c27b0;
}
.pink-badge {
	background-color: #e91e63;
}
.teal-badge {
	background-color: #009688;
}

.link-bar {
	margin: 1rem 0;
	padding: 1rem;
	border-radius: 30px;
	display: flex;
	align-items: center;
	color: white;
	text-decoration: none;
	transition: opacity 0.3s;
}

.link-bar:hover {
	opacity: 0.9;
	color: white;
}

.link-bar img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 1rem;
	object-fit: cover;
}

.link-bar-text {
	font-size: 1.2rem;
	font-weight: bold;
}

.teal-bg {
	background-color: #009688;
}
.pink-bg {
	background-color: #e91e63;
}
.purple-bg {
	background-color: #9c27b0;
}

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin: 1rem 0;
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid white;
	border-radius: 10px;
}

/* Modal Styles */
.modal-content {
	background-color: #222;
	color: #fff;
	border-radius: 10px;
	border: none;
}

.modal-header {
	border-bottom: 1px solid #444;
	padding: 1.5rem;
}

.modal-footer {
	border-top: 1px solid #444;
	padding: 1.5rem;
}

.modal-body {
	padding: 2rem;
}

.btn-close {
	filter: invert(1) grayscale(100%) brightness(200%);
}

.album-modal-title {
	font-weight: bold;
	font-size: 1.8rem;
}

.album-modal-subtitle {
	font-size: 1.2rem;
	opacity: 0.8;
	margin-bottom: 1.5rem;
}

.album-modal-description {
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.album-modal-links {
	margin-top: 1.5rem;
}

.album-modal-link {
	display: block;
	padding: 0.8rem 1.2rem;
	margin-bottom: 0.8rem;
	border-radius: 5px;
	text-decoration: none;
	color: white;
	font-weight: bold;
	transition: opacity 0.3s;
}

.album-modal-link:hover {
	opacity: 0.9;
	color: white;
}

.album-modal-link i {
	margin-right: 0.5rem;
}

.album-modal-image {
	width: 100%;
	height: auto;
	border-radius: 5px;
	margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
	.header h1 {
		font-size: 60px;
	}

	.header h2 {
		font-size: 22px;
	}

	.album-modal-title {
		font-size: 1.5rem;
	}
}
