/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BASE */
body {
    font-family: "Inter", sans-serif;
    background: #f4efe7;
    color: #1f1a17;
    line-height: 1.6;
}

.visually-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* HEADER */
.header {
    padding: 30px 40px;
}

.logo {
    width: 260px;
    opacity: 0.9;
}

/* HERO */
.hero {
    display: flex;
    justify-content: center;
    padding: 40px 20px 40px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* COPERTINA */
.cover-hero {
    width: 420px;
    border-radius: 6px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cover-hero:hover {
    transform: scale(1.02);
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

/* LOGO ALBUM */
.album-logo {
    width: 260px;
    display: block;
    margin: 0 auto 6px auto;
}

/* ANNO */
.year {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8b6a4a;
    text-align: center;
    margin-top: 2px;
}

/* CTA */
.cta-section {
    text-align: center;
    margin: 20px 0 40px;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: #1f1a17;
    color: #f4efe7;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    border-radius: 4px;
    transition: opacity 0.25s ease;
}

.cta-button:hover {
    opacity: 0.75;
}

/* VIDEO */
.video-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 20px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 6px;
}

.video-description {
    text-align: center;
    margin-top: 14px;
    font-size: 1rem;
    color: #6b5a4e;
}

/* TRACKLIST */
.tracklist-section {
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
}

.tracklist {
    display: inline-block;
    min-width: 520px;
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.9;
}

.tracklist li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Playfair Display", serif;
    margin-bottom: 12px;
}

.left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.num {
    font-weight: 600;
}

/* SVG TITOLI TRACKLIST — BASE */
.track-title-svg {
    height: 26px;
    width: auto;
    display: block;
}

/* SCALING PERSONALIZZATO — SOLO TRACCE 2, 4, 5, 10 */
.tracklist li:nth-child(2) .track-title-svg {   /* Non mi importa più */
    height: 46px;
}

.tracklist li:nth-child(4) .track-title-svg {   /* Sandro */
    height: 36px;
}

.tracklist li:nth-child(5) .track-title-svg {   /* Cuore Buttato */
    height: 38px;
}

.tracklist li:nth-child(10) .track-title-svg {  /* Peace My Lover */
    height: 42px;
}

/* DURATA */
.time {
    color: #8b6a4a;
    font-weight: 500;
    white-space: nowrap;
}

/* PRESS — versione con citazioni */
.press-section {
    max-width: 900px;
    margin: 60px auto 20px;
    text-align: center;
    padding: 0 20px;
}

.press-title {
    font-size: 1.3rem;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    color: #1f1a17;
}

.press-item {
    margin-bottom: 32px;
}

.press-item blockquote {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    color: #6b5a4e;
    margin-bottom: 8px;
    font-style: italic;
}

.press-item a {
    color: #1f1a17;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.03em;
    transition: opacity 0.25s ease;
	cursor: pointer;
}

.press-item a:hover {
    opacity: 0.6;
	text-decoration: underline;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 50px 20px;
    margin-top: 80px;
    color: #6b5a4e;
}

.social {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 12px;
}

.icon {
    width: 28px;
    height: 28px;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.icon:hover {
    opacity: 0.55;
}

/* MOBILE */
@media (max-width: 768px) {

    .logo {
        width: 220px;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    	    footer {
        background: #efe8dd;
        padding-top: 60px;
        padding-bottom: 60px;
        border-radius: 6px;
		margin-top: 0;
    }
	
	    .press-section {
        background: #f2ece3;
        padding-top: 40px;
        padding-bottom: 40px;
        border-radius: 6px;
		margin-bottom: 0;
    }
	
    .press-item a {
        text-decoration: underline;
        text-decoration-thickness: 0.5px;
        text-underline-offset: 3px;
    }


    .cover-hero {
        width: 85%;
        max-width: 320px;
    }

    .album-logo {
        width: 220px;
        margin: 0 auto 4px auto;
    }

    .year {
        font-size: 0.85rem;
    }

    .tracklist {
        width: 90%;
        min-width: unset;
        font-size: 1.05rem;
    }

    .track-title-svg {
        height: 22px;
    }

    /* VERSIONE MOBILE — SOLO TRACCE 2, 4, 5, 10 */
    .tracklist li:nth-child(2) .track-title-svg {
        height: 38px;
    }

    .tracklist li:nth-child(4) .track-title-svg {
        height: 30px;
    }

    .tracklist li:nth-child(5) .track-title-svg {
        height: 32px;
    }

    .tracklist li:nth-child(10) .track-title-svg {
        height: 36px;
		
}
