body {
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
	background: #1a0f0a;
	color: #f8f5f0;
	text-align: center;
}

h1,
h2,
h3 {
	font-family: 'Rye', cursive;
	letter-spacing: 2px;
	color: #FFD166;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero {
	background: url('img/angelo3.JPEG') center/cover no-repeat;
	height: 500px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.hero::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
}

.hero h1 {
	position: relative;
	font-size: 60px;
	color: #FFD166;
	z-index: 2;
	text-transform: uppercase;
}

.container {
	max-width: 1000px;
	margin: auto;
	padding: 20px;
}

.single-cover {
	margin-top: 30px;
}

.single-cover img {
	width: 250px;
	border: 5px solid #FFD166;
	border-radius: 15px;
	box-shadow: 0 0 15px rgba(255, 215, 102, 0.5);
}

.single-title {
	font-size: 50px;
	margin-bottom: 15px;
}

.music-platforms a {
	font-size: 40px;
	margin: 0 20px;
	text-decoration: none;
}

.fa-spotify {
	color: #1DB954;
}

.fa-apple {
	color: #A3AAAE;
}

.fa-deezer {
	color: #EF476F;
}

.bio {
	margin: 50px 0;
	line-height: 1.8;
	background: rgba(255, 255, 255, 0.05);
	padding: 30px;
	border-radius: 15px;
}

.photos h2 {
	margin-bottom: 20px;
}

.slider {
	width: 100%;
	max-width: 900px;
	/* o qualsiasi larghezza fissa tu voglia */
	margin: auto;
	overflow: hidden;
	border: 4px solid #FFD166;
	border-radius: 15px;
}

.slides {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.slides img {
	flex: 0 0 100%;
	width: 100%;
	height: auto;
	/* altezza dinamica */
	object-fit: contain;
	/* mostra la foto intera */
	object-position: center;
	background: #000;
	/* bande nere dove serve */
	border-radius: 10px;
}


.prev,
.next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.6);
	border: none;
	color: #FFD166;
	font-size: 24px;
	padding: 12px;
	cursor: pointer;
}

.prev {
	left: 10px;
}

.next {
	right: 10px;
}

.album-covers {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 25px;
	margin: 30px 0;
}

.album-cover {
	width: 200px;
	border: 5px solid #FFD166;
	border-radius: 12px;
	box-shadow: 0 0 10px rgba(255, 215, 102, 0.6);
}

.accordion {
	background: #5a2e0d;
	color: #fff;
	cursor: pointer;
	padding: 15px;
	width: 80%;
	margin: 15px auto;
	border: none;
	border-radius: 10px;
	font-family: 'Rye', cursive;
	font-size: 20px;
	transition: 0.3s;
}

.accordion:hover,
.accordion.active {
	background: #7c3e14;
}

.panel {
	display: none;
	padding: 20px;
	margin: 0 auto 25px;
	background: #2d1a10;
	border-left: 4px solid #FFD166;
	border-radius: 10px;
	width: 80%;
	line-height: 1.6;
}

.panel h2 {
	color: #FFD166;
	margin-bottom: 15px;
}

footer {
	background: #111;
	padding: 30px;
	margin-top: 40px;
	color: #bbb;
}

footer a {
	color: #FFD166;
	text-decoration: none;
}

.fa-instagram {
	color: #E1306C;
}

.custom-player {
	display: flex;
	align-items: center;
	gap: 15px;
}

.play-btn {
	background: #FFD166;
	border: none;
	color: #1a0f0a;
	font-size: 18px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
}

.progress-container {
	flex: 1;
	height: 6px;
	background: #444;
	border-radius: 5px;
	overflow: hidden;
	position: relative;
}

.progress-bar {
	width: 0%;
	height: 100%;
	background: #FFD166;
	transition: width 0.1s linear;
}

.time {
	font-size: 14px;
	color: #bbb;
	min-width: 70px;
}

.audio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	max-width: 900px;
	/* larghezza massima per desktop */
	margin: 40px auto;
	/* centra la griglia e crea spazio sopra e sotto */
	padding: 0 20px;
	/* margine interno sui lati per mobile */
}

/* Navbar Western Style */
.navbar {
	position: relative;
	/* non fissa, scorre con la pagina */
	width: 100%;
	background: #3e1f09;
	border-bottom: 4px solid #FFD166;
	padding: 10px 0;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
	font-family: 'Rye', cursive;
	z-index: 1000;
}


.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 90%;
	margin: auto;
	padding: 15px;
}

.nav-logo {
	color: #FFD166;
	font-size: 24px;
	text-decoration: none;
	text-shadow: 2px 2px 5px #000;
}

.nav-links {
	display: flex;
	gap: 15px;
}

.nav-links a {
	color: #f8f5f0;
	text-decoration: none;
	font-size: 18px;
	transition: 0.3s;
}

.nav-links a:hover {
	color: #FFD166;
	text-shadow: 1px 1px 5px #000;
}

/* Hamburger button */
.menu-toggle {
	background: none;
	border: none;
	color: #FFD166;
	font-size: 26px;
	cursor: pointer;
	display: none;
}


/* Scroll dolce */
html {
	scroll-behavior: smooth;
}

/* --- Responsive --- */
@media (max-width: 768px) {
	.menu-toggle {
		display: block;
	}

	.nav-links {
		display: none;
		flex-direction: column;
		background: #3e1f09;
		position: absolute;
		top: 65px;
		left: 0;
		width: 100%;
		border-top: 2px solid #FFD166;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
		padding: 10px 0;
	}

	.nav-links a {
		padding: 12px;
		text-align: center;
		border-bottom: 1px solid rgba(255, 209, 102, 0.2);
		font-size: 20px;
	}

	.nav-links a:last-child {
		border-bottom: none;
	}

	.nav-links.show {
		display: flex;
	}
}


/* Countdown Section */
/* Countdown Section */
.countdown-section {
	margin: 60px auto 30px;
	padding: 30px;
	max-width: 700px;
	background: rgba(255, 209, 102, 0.08);
	border: 2px solid #FFD166;
	border-radius: 15px;
	box-shadow: 0 0 15px rgba(255, 209, 102, 0.3);
	text-align: center;
	font-family: 'Rye', cursive;
}

.countdown-section h2 {
	color: #FFD166;
	font-size: 32px;
	margin-bottom: 10px;
	text-shadow: 2px 2px 4px #000;
}

.countdown-section h3 {
	color: #f8f5f0;
	font-weight: 300;
	margin-bottom: 25px;
	text-shadow: 1px 1px 3px #000;
}

#countdown {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	/* Tutti in linea */
	gap: 15px;
	overflow-x: auto;
	/* fallback per schermi minuscoli */
	scrollbar-width: none;
	/* nasconde scrollbar */
}

#countdown::-webkit-scrollbar {
	display: none;
}

#countdown div {
	flex: 1 1 70px;
	/* box adattabili */
	background: #3e1f09;
	border-radius: 10px;
	padding: 15px 10px;
	min-width: 70px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.6), inset 0 0 5px rgba(255, 209, 102, 0.3);
	border: 1px solid rgba(255, 209, 102, 0.4);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#countdown div:hover {
	transform: scale(1.05);
	box-shadow: 0 0 20px rgba(255, 209, 102, 0.6);
}

#countdown span {
	display: block;
	font-size: 36px;
	color: #FFD166;
	text-shadow: 2px 2px 5px #000;
}

#countdown small {
	font-size: 14px;
	color: #f8f5f0;
	text-shadow: 1px 1px 2px #000;
}

/* Responsive fix iPhone */
@media (max-width: 480px) {
	#countdown {
		gap: 8px;
	}

	#countdown div {
		min-width: 60px;
		padding: 10px 8px;
	}

	#countdown span {
		font-size: 28px;
	}

	#countdown small {
		font-size: 12px;
	}
}


/* Evidenziare il nuovo singolo */
.featured-single {
    border: 4px solid #ff9900;      /* bordo colorato */
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35); /* ombra più marcata */
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Effetto hover per farlo “risaltare” */
.featured-single:hover {
    transform: scale(1.05);          /* leggero ingrandimento */
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

/* Opzionale: dare più spazio attorno */
.featured-single {
    margin: 30px 0;
}


.wanted-single {
    background: linear-gradient(135deg, #5a2e0d 0%, #3e1f09 100%);
    color: #f8f5e0;
    border: 6px dashed #f8f5e0;
    border-radius: 12px;
    padding: 40px 25px;
    max-width: 700px;
    margin: 50px auto;
    box-shadow: 0 0 25px rgba(0,0,0,0.7), inset 0 0 30px rgba(0,0,0,0.5);
    text-align: center;
    font-family: 'Rye', cursive;
    position: relative;
    letter-spacing: 1px;
}

/* leggero effetto di “vissuto” */
.wanted-single::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.05) 0,
        rgba(255, 255, 255, 0.05) 2px,
        transparent 2px,
        transparent 4px
    );
    opacity: 0.3;
    pointer-events: none;
}

.wanted-single h2 {
    color: #FFD166;
    font-size: 36px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

.wanted-single p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #f8f5e0;
    line-height: 1.6;
}

/* Contenuto sopra l’effetto */
.wanted-single > * {
    position: relative;
    z-index: 1;
}


.wanted-single h2 {
    font-size: 50px;
    color: #b22222; /* rosso sangue da wanted poster */
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.wanted-single h3 {
    font-size: 36px;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.wanted-single iframe:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 28px rgba(0,0,0,0.7);
}
