* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif, "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji";
    color: #fff;
    background: url('assets/bgnelio.jpg') repeat;
    background-size: 600px;
}

/* tumma overlay koko sivulle */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

/* HERO */
.hero {
    height: clamp(400px, 60vh, 800px);
    background: url('assets/hero.jpg') center 45% / cover no-repeat;
	position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .hero {
        height: 35vh;
        background-position: center 90%;
    }
}


.hero-overlay {
    text-align: center;
    background: rgba(0,0,0,0.5);
    padding: 20px 40px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 60px;
    letter-spacing: 4px;
}

.tag {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 16px;
    background: purple;
    border-radius: 20px;
}

.artist-logo {
    text-align: center;
    padding: 40px 20px;
}

.artist-logo img {
    max-width: 240px;
    width: 100%;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

/* SIDEBAR */
.sidebar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.logo-bottom img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.logo-bottom {
    margin-top: 20px;
    text-align: left;
}

.links a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.links i {
    font-size: 22px;
}

.links a:hover {
    color: #a855f7;
}

@media (max-width: 768px) {

    .sidebar {
        align-items: center;
        text-align: center;
    }

    .links {
        align-items: center;
		margin-top: 10px;
    }

    .links a {
        justify-content: center;
    }

    .logo-bottom {
        text-align: center;
    }

.artist-logo {
        padding: 25px 20px 10px;
    }

    .grid {
        padding-top: 10px;
    }

}



/* CONTENT */
.content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.flag {
    width: 22px;
    height: auto;
    vertical-align: middle;
    margin-left: 5px;
}

/* MOBILE */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        border-right: none;
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
    }
}


/*CONTENT*/
.content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.content h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #ccc;
    letter-spacing: 1px;
}

.content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #ddd;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.producer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    text-align: center;
}

.producer a {
    color: #aaa;
    text-decoration: none;
}

.producer a:hover {
    color: purple;
}