@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

:root{color: #fff !important
}

.ibm-plex-mono-thin {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 100;
  font-style: normal;
}

.ibm-plex-mono-extralight {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 200;
  font-style: normal;
}

.ibm-plex-mono-light {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 300;
  font-style: normal;
}

.ibm-plex-mono-regular {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

.ibm-plex-mono-medium {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-style: normal;
}

.ibm-plex-mono-semibold {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-style: normal;
}

.ibm-plex-mono-bold {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  font-style: normal;
}

.ibm-plex-mono-thin-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 100;
  font-style: italic;
}

.ibm-plex-mono-extralight-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 200;
  font-style: italic;
}

.ibm-plex-mono-light-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 300;
  font-style: italic;
}

.ibm-plex-mono-regular-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-style: italic;
}

.ibm-plex-mono-medium-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-style: italic;
}

.ibm-plex-mono-semibold-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-style: italic;
}

.ibm-plex-mono-bold-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  font-style: italic;
}
/* importing noncence */

body {
    background-color: #222;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/bg-patt.png');
    background-repeat: repeat;
    background-size: 150px 150px;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    opacity: 0.06;
    z-index: -1;
    animation: moveBackground 520s linear infinite;
}

@keyframes moveBackground {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% -100%;
    }
}

.greeting {
    /*asdasd */
}

/* Mobile-first responsive design */
/* first that it takes to FIX THE FUCKING BUG */
.hamburger-btn { display:none; }
.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    box-sizing: border-box;
}

.left-col,
.cent-col,
.right-col {
    padding: 15px;
    border: 1px solid #fff;
    box-sizing: border-box;
}

.left-col {
    order: 1;
}

.cent-col {
    order: 2;
    flex: 1;
}

.right-col {
    order: 3;
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive typography */
.greeting {
    font-size: 1.2rem;
    word-wrap: break-word;
}

/* Tablet view */
@media screen and (min-width: 768px) {
    .container {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .left-col {
        flex: 0 0 250px;
        order: 1;
    }
    
    .cent-col {
        flex: 1;
        order: 2;
        min-width: 0;
    }
    
    .right-col {
        flex: 0 0 200px;
        order: 3;
    }
}




.about-field {
  /* твоя картинка фона */
  --bg: url("/img/low-bg.png"); /* замени на свою */
  /* многослойный фон: сначала полупрозрачный градиент, потом картинка */
  background-image: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)), var(--bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  color: #fff;
  border-radius: 0px;
  border: 1.5px solid #80808055;
  padding: 16px;
  overflow: hidden; /* на всякий случай, но уже не критично */
}

.music-field {
  /* твоя картинка фона */
  --bg: url("/img/music-bg.png"); /* замени на свою */
  /* многослойный фон: сначала полупрозрачный градиент, потом картинка */
  background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,.45)), var(--bg);
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;

  color: #fff;
  border-radius: 0px;
  border: 1.5px solid #80808055;
  padding: 16px;
  overflow: hidden; /* на всякий случай, но уже не критично */
}

.thoughts-field {
  background-color: #222034;
  color: #fff;
  border-radius: 0px;
  border: 1.5px solid #80808055;
  padding: 16px;
  overflow: hidden; /* на всякий случай, но уже не критично */
}

/* контент */
.info-me {
  display: flex;
  gap: 12px;
  align-items: center;
}

.about-field img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 0px;
  flex: 0 0 auto;
}

/* необязательно, но красиво */
.about-field legend {
  padding: 0 .5rem;
  font-weight: 600;
  background: transparent; /* фон не нужен, градиент уже подложен */
}



/* Desktop view - EXACTLY as original */
@media screen and (min-width: 1200px) {
    .container {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        min-height: 95vh;
    }
    
    .left-col {
        flex: 1;
        padding: 20px;
        border: 3px solid #fff;
        margin-left: 200px;
        order: 1;
    }
    
    .cent-col {
        flex: 2;
        padding: 20px;
        border: 3px solid #fff;
        margin-left: 4px;
        order: 2;
    }
    
    .right-col {
        flex: 1;
        padding: 20px;
        border: 3px solid #fff;
        margin-left: 4px;
        margin-right: 200px;
        order: 3;
    }
}

body > div > div.left-col > ul > li > a{
  color: white;
  text-decoration: underline dashed #636363
}

.link {
    color: white;
    text-decoration: underline dashed #636363
}

fieldset {
    color: #f5f5dc;
    border-color: #f5f5dc80;
    margin-top: 10px;
}

/* Additional mobile optimizations */
@media screen and (max-width: 767px) {
    body {
        font-size: 14px;
    }
    
    .greeting {
        font-size: 1.1rem;
    }
    
    fieldset {
        margin: 5px 0;
    }
    
    .left-col ul {
        padding-left: 0;
    }
    
    /* Collapsible sidebar styles */
    .left-col {
        position: fixed;
        left: -100%;
        width: 250px;
        height: 100vh;
        background-color: #222;
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .left-col.sidebar-open {
        left: 0;
    }
    
    .hamburger-btn {
        position: fixed;
        top: 90%;
        left: 15px;
        z-index: 1001;
        /*background: none;*/
        border: none;
        cursor: pointer;
        padding: 10px;
        display: block;
        border: #fff 2px solid;
        background-color: #222222;
    }
    
    .hamburger-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #fff;
        margin: 5px 0;
        transition: 0.3s;
    }
    
    .hamburger-btn.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-btn.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .container {
        margin-left: 0;
    }
}

/* Status.cafe */
#statuscafe {
  padding: .5em;
}
#statuscafe-username {
  margin-bottom: .5em;
  background-color: #d95763;
  display: inline;
}
#statuscafe-content {
  margin: 0 1em 0.5em 1em;
}

#statuscafe-username > a{
  color: #fff;
  text-decoration: underline dashed #636363
}

/* Music */

#track-title{
  margin-top: 2px;
}

.musicplayer-container{
  color: #fff;
}

/*  TODO: Need fixing
/!* Responsive iframe for radio page *!/
.right-col iframe {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border: none;
}

/!* Ensure right column takes available space *!/
.right-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.right-col iframe {
  flex: 1;
  min-height: 300px;
}

*/
