/* Root & Global --------------------------------------------------------- */
:root {
	--bg: #F6F4ED;
	--text: #111;
	--accent: #FF6B6B;
	--page-pad: clamp(1.25rem, 4vw, 3rem);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: 'Inter', sans-serif;
	color: var(--text);
	background-color: var(--bg);
}

body > .container-fluid {
	padding-left: var(--page-pad);
	padding-right: var(--page-pad);
}

/* Loading Screen --------------------------------------------------------- */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--bg);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 1;
	transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
	visibility: visible;
}

.loading-screen.hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.loading-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2rem;
}

.loading-logo {
	max-height: 80px;
	animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.6;
		transform: scale(0.95);
	}
}


.hidden {
	display: none !important;
}

a.underline {
	text-decoration: none;
	color: var(--text);
	font-weight: 500;
	padding: 0 0 2px 0;
	background: none;
	border: none;
	border-bottom: solid 2px currentColor;
}

/* Header & Primary Navigation ------------------------------------------ */
header {
	padding: 2rem 0;
	align-items: center !important;
}

.brand-icon {
	width: clamp(48px, 5vw, 64px);
	height: clamp(48px, 5vw, 64px);
}

img.logo-mini {
	max-height: 50px;
}

.menu-link {
	font-size: 1.1rem;
	text-decoration: none;
	color: var(--text);
	font-weight: 500;
	padding: 0 0 4px 0;
	background: none;
	border: none;
}

.menu-link:hover {
	border-bottom: solid 2px currentColor;
	padding: 0 0 2px 0;
	cursor: pointer;
}

/* Hero / Player -------------------------------------------------------- */
.hero {
	min-height: calc(100vh - 200px);
	display: flex;
	align-items: center;
	justify-content: center;
}

img.logo {
	padding-right: 50px;
	transform: rotate(-1deg);
}

.status-label {
	font-size: clamp(1.1rem, 2vw, 1.5rem);
	font-weight: 800;
	color: var(--accent);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.status-dot {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--accent);
	display: inline-block;
	animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
	0%, 100% {
	  opacity: 1;
	  transform: scale(1);
	}
	50% {
	  opacity: 0.35;
	  transform: scale(0.85);
	}
}

.track-title {
	font-size: clamp(1.1rem, 2vw, 1.5rem);
	font-weight: 800;
}

.play-btn {
	width: 100%;
	background: #000;
	border-radius: 4px;
	font-family: 'Inter';
	font-weight: 600;
	font-size: 24px;
	color: #FFF;
	text-decoration: none;
	text-align: center;
	padding: 10px 0;
}

.play-btn:hover {
	cursor: pointer;
}

/* Offcanvas Menu ------------------------------------------------------- */
.menu-panel {
	background: var(--bg);
	color: var(--text);
	--bs-offcanvas-width: min(100vw, 440px);
}

.menu-panel .offcanvas-header {
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding: 2rem var(--page-pad) 0;
	align-items: center !important;
}

.menu-panel .offcanvas-body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.menu-panel .offcanvas-header .logo-mini {
	display: block;
}

.menu-close-link {
	font-size: 1.1rem;
	text-decoration: none;
	color: var(--text);
	font-weight: 500;
	padding: 0 0 4px 0;
	background: none;
	border: none;
}

.menu-close-link:hover {
	border-bottom: solid 2px currentColor;
	padding: 0 0 2px 0;
	cursor: pointer;
}

.menu-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu-list li {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-list li:last-child {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-list a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
	font-size: 2rem;
	font-weight: 500;
	color: var(--text);
	text-decoration: none;
}

.menu-list a:hover {
	color: var(--accent);
}

.menu-list a span {
	font-size: 1.8rem;
}

/* Buttons & Links ------------------------------------------------------ */
.kit-btn {
	border: 1px solid #000;
	border-radius: 4px;
	background: transparent;
	color: var(--text);
	font-size: larger;
	font-weight: 400;
	padding: 1rem 3rem;
	width: fit-content;
	white-space: nowrap;
}

/* Carousel ------------------------------------------------------------- */
.carousel {
	margin-top: 2rem;
}

.carousel-inner {
	border-radius: 4px;
	overflow: hidden;
}

.carousel-item img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.carousel-indicators {
	margin-bottom: 1rem;
}

.carousel-indicators [type="button"] {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.3);
	border: none;
	margin: 0 4px;
}

.carousel-indicators [type="button"].active {
	background-color: var(--text);
}

/* Media Queries -------------------------------------------------------- */
@media (min-width: 767px) {
	.track-title {
		max-width: 350px;
	}

	.menu-panel .offcanvas-header .logo-mini {
		opacity: 0;
	}
}

@media (min-width: 768px) {
	.menu-panel .offcanvas-header {
	  align-items: center;
	}
	.menu-panel .offcanvas-header .logo-mini {
	  opacity: 0;
	}
}

@media (max-width: 767px) {
	:root {
	  --page-pad: 1.25rem;
	}
	header {
	  padding-top: 1.5rem;
	  padding-bottom: 1rem;
	}
	img.logo {
	  padding-right: 0;
	}
	.menu-panel .offcanvas-header {
	  padding-top: 1.5rem;
	  padding-bottom: 0.5rem;
	}
	.hero {
	  min-height: calc(100vh - 120px);
	  align-items: flex-end;
	  justify-content: flex-end;
	  padding-bottom: 2rem;
	}
	.menu-list a {
	  font-size: 2.4rem;
	}
}