/* assets/css/style.css */

.custom-banner {
	/* Change 'cover' to 'contain' to prevent cropping */
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #ffffff !important; /* Adds a fallback color for any empty side space */
	width: 100%;
	/* This maintains the container at the image's native ratio */
	aspect-ratio: 1920 / 450;
	height: auto;
}
.spotify-embed-wrapper {
  position: relative;
  height: 450px;
  aspect-ratio: 1 / 1; /* keeps cover square */
  border-radius: 12px;
  overflow: hidden;

  /* Fallback artwork */
  background-image: url("/assets/img/IMG_8611_Dispersion3_1400.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Optional polish */
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.spotify-embed-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}
#cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #333;
	color: #fff;
	padding: 15px;
	text-align: center;
	font-family: sans-serif;
	display: none; /* Hidden by default until JS check */
	z-index: 1000;
}

	#cookie-banner button {
		margin-left: 15px;
		padding: 8px 15px;
		cursor: pointer;
		border: none;
		border-radius: 4px;
	}

.accept-btn {
	background: #4CAF50;
	color: white;
}

.opt-out-btn {
	background: #f44336;
	color: white;
}
.page-title {
	/* Ensures the image covers the entire area */
	background-size: cover;
	/* Keeps the focus of the image in the center */
	background-position: center;
	/* Prevents the image from tiling */
	background-repeat: no-repeat;
	/* Gives the container a minimum height so the image is visible */
	min-height: 450px;
	/* Optional: Fixed background for a parallax effect */
	/* background-attachment: fixed; */
}
