@font-face {
    font-family: 'pricedownd';
    src: url('PRICEDOWN BL.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'stencild';
    src: url('StencilStd.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'sf';
    src: url('SF Hollywood Hills.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'fox';
    src: url('20TH_CENTURY.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.unselectable {
	user-select: none;
	/* Modern browsers */
	-webkit-user-select: none;
	/* Safari and older Chrome/Edge */
	caret-color: transparent;
}

.header {
  position: relative; /* Acts as the anchor for the absolute child */
  height: 100px;
}

.logo {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	height: auto;
	object-fit: cover;
	user-select: none;
}
@media (max-width: 768px) {
	.logo {
		width: 100% !important;
		height: auto !important;
		background-size: cover;
	}
}

.search-container {
	
    position: absolute; /* or fixed/relative */
    top: 130px;
    right: 1050px;
    z-index: 1000;
}

.search-form {
    display: flex;
    gap: 2px;
}
.search-form input[type="text"] {
    font-family: 'impact';
    font-size: 15px;
    font-weight: 400;
    color: #333;
}
.search-form button {
    font-family: stencild;
    font-size: 14px;
    font-weight: bold;
}

.search-container form {
    display: flex;
    width: 100%;
	max-width: 500px; 
	right: 50px;
	z-index: 1000;
}


@media (max-width: 768px) {
	.search-container {
	transform: scale(.60);
	justify-content: center;

	  top: 0%;
	  right: 10%;
	  width: 80%;
	}
	.search-form button {
		font-family: stencild;
		font-size: 12px;
		font-weight: bold;
	}
	.search-container input {
		width: 100%;
		
	  }
  }

@media screen and (max-width: 600px) {
	body {
		font-size: 5px;
	}
}
header {
	position: sticky;
	top: 0;
	z-index: 1000;
	/* Keeps it above other elements */
}
/* Styles applied when the screen is 768px wide or less */


@media screen and (max-width: 768px) {
	.header {
		width: 100%;
		height: 60px;
	}
}

h1 {
	padding-bottom: 4px;
}
h1 {
	font-family: 'sf';
	color: goldenrod;
	-webkit-text-stroke: 2px black;
	font-size: clamp(2rem, 5vw, 2.7rem);
	text-align: center;
}

}

nav {
	width: 100%;



}

nav ul {
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2em;
	/* Use em or rem for scaling gaps */
	list-style: none;
	padding: 0;
	/* Scales between 1.2rem and 2rem based on screen width */
	font-size: clamp(1.2rem, 4vw, 2rem);
	font-family: pricedownd;
	color: gold;
}
@media only screen and (max-width: 768px) {
	ul {
		font-size: 2rem !important;
		/* Smaller size for mobile */
	}
	ul {
		font-size: 1.5rem !important;
	}
}

nav a {
	text-decoration: none;
	color: var(--text-color)
}
nav a:hover {
	color: red;
}
header, section {
	margin: -0.7em auto;

	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.384) 80%, black 100%);
	border-radius: 0em;
	align-items: center;
	margin-bottom: 80px;
	width: 100%;
	height: auto;
	padding: 0px 2;
}
@media (max-width: 768px) {
	.header {
		height: auto;
		/* Allow height to adjust to content */
		font-size: 24px;
		/* Scale down the text for smaller screens */
		padding: 10px;
		margin-bottom: 10px;
	}
}

body {
	padding: 2em;
	background-color: var(--base-color);
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.poster-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
	pointer-events: none; /* Container is not clickable */
}

.posterstroke {
	border: 2px solid black;
	width: 17%;
    pointer-events: auto;
}
@media (max-width: 768px) {
	.posterstroke {
	  width: 80%; /* Adjust to desired width, e.g., 80% to 100% */
	}
  }
@media (max-width: 768px) {
	.poster-container {
		justify-content: center;
		}
		
		
}
#soundLink img {
	transition: transform 0.1s ease-in-out;
	/* Smooth transition */
	cursor: pointer;
}
/* Class to be added by JS to 'push' the image */

#soundLink img.pushed {
	transform: scale(0.9);
	/* Scale down for click effect */
}
#soundLink img {
	transition: transform 0.1s ease-in-out;
	/* Smooth transition */
	cursor: pointer;
}
/* Class to be added by JS to 'push' the image */

#soundLink img.pushed {
	transform: scale(0.9);
	/* Scale down for click effect */
}
.image-container {
	position: relative;
	max-width: 100%;
	/* Stops it from growing past 500px */
	margin: auto;
	/* Centers the container */
	display: inline-block;
	margin-bottom: 80px;
}
.image-style {
	transition: transform 0.5s ease-in-out;
}
.push-effect {
	transform: scale(1.1) translateX(10px);
}
#hornImg {
	max-width: 100%;
	/* Image will never be wider than its parent */
	height: auto;
	/* Maintains aspect ratio */
	display: block;
	/* Removes unwanted bottom whitespace */
}
.hover-text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	font-family: stencild;
	font-size: 70px;
	/* Big for desktop */
	transition: opacity 0.3s ease;
	pointer-events: none;
}
.image-container:hover .hover-text {
	opacity: 1;
}

@media (max-width: 600px) {
	.hover-text {
		font-size: 40px;
		/* Shrinks text so it fits on small screens */
	}
	.push-effect {
		transform: scale(1.05) translateX(5px);
		
	}
}





  
 