/* =====================================
   OMVRELOVO STYLE TEMPLATE
   DIY / COLLAGE / 90s WEB
===================================== */

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

body {
    background-color: #050505;

    background-image:
        linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.82)),
        url("../images/blog_texture.png");

    background-size: 200px;

    background-repeat: repeat;

    background-attachment: fixed;

    color: #f1f1f1;

    font-family: Courier New, monospace;

    overflow-x: hidden;
}

/* background noise */
.noise {
    position: fixed;
    inset: 0;
    opacity: 0.08;
    pointer-events: none;
    background-image:
        repeating-radial-gradient(circle at 0 0,
        transparent 0,
        #ffffff 1px,
        transparent 2px);
}

.topbar {
    width: 100%;
    max-width: 100%;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #444;
}

.logo {
    font-size: 4rem;
    letter-spacing: 4px;
    transform: rotate(-2deg);
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

nav a:hover {
    border-color: white;
}

.layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    padding: 40px;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.profile,
.polaroid {
    width: 100%;
    border: 2px solid #ddd;
    /* filter: grayscale(100%) contrast(110%); */
}

.polaroid {
    transform: rotate(-4deg);
    width: 70%;
}

.paper {
    background: #d9d1c4;
    color: black;
    padding: 20px;
    border-radius: 2px;
    box-shadow: 0 0 0 2px #777;
    transform: rotate(-1deg);
}

.paper h2,
.paper h3 {
    margin-bottom: 15px;
}

.updates ul {
    padding-left: 18px;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-title {
    margin-bottom: 20px;
    font-size: 2rem;
    letter-spacing: 2px;
}

.bandcamp-wrapper{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
  margin-top:20px;
  margin-bottom:20px;
}

.release-block {
    display: flex;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: flex-start;
}

.release-image {
    width: 100%;
    border: 3px solid #ddd;
    /* filter: grayscale(100%) contrast(110%); */
}

.release-info {
    transform: rotate(2deg);
}

.release-links {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.release-links a,
.blog-post a {
    color: black;
    font-weight: bold;
}

.blog-post {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.blog-post img {
    width: 250px;
    border: 2px solid black;
}

.taskbar {
    position: sticky;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-around;
    gap: 10px;
    padding: 20px;
    border-top: 1px solid #444;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(4px);
}

.taskbar a {
    display: flex;
    align-items:center;
    color: white;
    text-decoration: none;
    transition: 0.2s;
    gap:10px;
}

.taskbar a:hover {
    transform: translateY(-2px);
    opacity: 0.7;
}

.taskbar img{
    width:28px;
    height:28px;
    opacity:0.95;
    filter:contrast(120%);
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .layout {
        grid-template-columns: 1fr;
    }

    .release-block {
        grid-template-columns: 1fr;
    }

    .blog-post {
        flex-direction: column;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .topbar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .logo {
        font-size: 2.8rem;
    }

    .taskbar {
        flex-wrap: wrap;
    }

}
