/*------------------------------------
	 FONTS
-------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;700;800;900&display=swap');

/*------------------------------------
	 VARIABLES
-------------------------------------*/

:root {
  --colorBlue: rgba(0, 196, 255, 1);
  --header-height: 125px;
}

/*------------------------------------
	 LAYOUT
-------------------------------------*/
html {
	background:black;
}

body {
  background: linear-gradient(
	140deg,
	black,
	#373737
  );
} 

.Montserrat {
	font-family: "Montserrat";
}

.flexSpacer {
  flex-grow:1;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari, Chrome, Opera */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Standard property */
  cursor: default;
}

.blueEmphasis {
	color: var(--colorBlue);
}

/* =========================================================
   HEADER
========================================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  padding: 0 30px;
  background: rgba(16, 16, 16, 0.85);
  backdrop-filter: blur(6px);
  z-index: 1000;
  border-bottom: 1px solid #222;
}

.headerLogo {
  width: 240px;
  display: flex;
  align-items: center;
}

/*------------------------------------
	 TOOLBAR
-------------------------------------*/

.toolbar {
	padding:0 40px;
	box-sizing:border-box;
	display:flex;
	align-items:center;
	justify-content:end;
	width:100%;
	height:100px;
	background-color:rgb(36, 132, 198, .09);
	position:fixed;
	top:0;
	left:0;
}

.toolbarItem {
	cursor:pointer;
	width:auto;
	margin-left:15px;
	padding:0 5px;
	box-sizing:border-box;
	height:40px;
	line-height:40px;
	text-align:center;
	color:white;
	font-weight:400;	
}

.toolbarItem:Hover {
	color: var(--colorBlue);
}

.pillItem {
	cursor:pointer;
	width:auto;
	margin-left:20px;
	box-sizing:border-box;
	height:40px;
	line-height:40px;
	text-align:center;
	background-color:ghostwhite;
	color:black;
	padding:0 15px;
	border-radius:25px;
	font-weight:500;
	border:solid thin transparent;
}

.pillItem:Hover {
	color: var(--colorBlue);
	background-color:rgb(0,0,0,.1);
	border:solid thin white;
}

/*------------------------------------
	 SPLASH LOGO
-------------------------------------*/

.logoWrapper {
	display:flex;
	flex-direction:column;
	width:100%;
	min-width:1000px;
	height:650px;
	min-height:201px;
	justify-content:center;
	align-items:center;
	border-bottom: 1px solid #222;
}

.logo {
    margin-top:100px;
	width:600px;
	height:250px;	
	background-image:url('/assets/images/displaylist_long.png');
	background-repeat:no-repeat;
	background-size:contain;	
}

.sub {
	font-family: "Montserrat";
	font-weight:600;
	letter-spacing:.05em;
	width:auto;
	text-align:center;	
	margin-top:30px;
	font-size:1.2em;
	color:white;
}
/*------------------------------------
	 SPLASH CONTENT
-------------------------------------*/
.playlistSplash {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items:center;
  gap: 32px;
  padding: 40px 20px;
  box-sizing:border-box;
}

/* =========================================================
   MAIN SPLASH CARD
========================================================= */

.splashCard {
  width:90%;

  padding: 32px;
  margin: 0 auto;

  background: linear-gradient(
	160deg,
	#212121,
	#373737
  );

  border-radius: 14px;
  border: 1px solid #2a2a2a;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);

  text-align: center;
}

.splashCard h2 {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.splashCard p {
  margin: 0;
  font-size: 1rem;
  color: #aaa;
}

/* =========================================================
   SPLASH GRID LAYOUT
========================================================= */

.splashGrid {
  display: flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 32px;
  width:100%;
}

/* =========================================================
   ROW TYPES
========================================================= */

/* Full-width rows */
.splashRow.full {
  grid-column: 1 / -1;
  height: 175px;
  width:100%;
}

.halfWrapper {
    width:100%;
	display:flex;
	flex-flow:row wrap;
	justify-content:center;
	gap: 25px;
}

/* Half-width rows */
.splashRow.half {
  display:flex;
  width:100%;
  max-width:890px;
  min-width: 500px;
  aspect-ratio: 860 / 459;
}

/* =========================================================
   CARD STYLING (example)
========================================================= */

.splashRow {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 24px;
  box-sizing:border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* =========================================================
   SPLASH HINT
========================================================= */

.splashHint {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #888;
}

/* =========================================================
   FEATURED PLAYLISTS SECTION
========================================================= */

.featuredPlaylists {
  display:flex;
  flex-flow:column nowrap;
  justify-content:center;
  align-items:center;
  max-width: 1000px;
  margin: 0 auto;
}

.featuredPlaylists h3 {
  margin-bottom: 16px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #ddd;
  text-align: center;
}

/* =========================================================
   FEATURED PLAYLIST GRID
========================================================= */

.featuredGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  width:100%;
  justify-content:center;
  align-items:center;
}

/* =========================================================
   FEATURED PLAYLIST CARD
========================================================= */

.featuredPlaylistCard {
  padding: 18px;
  border-radius: 12px;

  background: #181818;
  border: 1px solid #2a2a2a;

  cursor: pointer;
  transition:
	transform 0.15s ease,
	border-color 0.15s ease,
	background 0.15s ease;
}

.featuredPlaylistCard strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}

.featuredPlaylistCard .mutedText {
  font-size: 0.85rem;
  line-height: 1.3;
}

.featuredPlaylistCard:hover {
  transform: translateY(-3px);
  background: #202020;
  border-color: #4da3ff;
}

/* =========================================================
   EMPTY STATE FALLBACK
========================================================= */

.featuredGrid:empty::after {
  content: "No curated playlists available.";
  display: block;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  padding: 20px 0;
}
