@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Silkscreen&display=swap');
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');


@font-face {
  font-family: 'Kleemax';
  src: url('fonts/KleemaxDEMO.ttf') format('truetype'),
       url('fonts/KleemaxDemo.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body.home{
  background-color: rgb(235, 230, 225);
  background-image: url(wallpape.jpg);
}

#page-container{
  display: flex;
  justify-content: center;
  padding: 20px;
  position: relative;
}

#main{
  display: flex;
  width: 1200px;
  align-items: flex-start;
}

#titlebox{
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(rgb(182, 170, 170), rgb(138, 138, 127));
  border-radius: 10px 60px 30px;
  border-width: 2px;
  border-color: rgb(138, 138, 127);
  border-style: solid;
  margin: 10px;
  width: 100%;
}

#titel{
  font-family: 'Kleemax', sans-serif;
  font-size: 3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #240411;
}

#menu{
  background-color: #b1aca6;
  width: 15%;
  height: 100vh;
  margin-top: 20px;
  position: relative;
}

.menulink{
  text-decoration: none;
  font-family: 'Press Start 2P', cursive;
  color: #240411;
  font-size: 1.2rem;
}

#sidebox {
  display: flex;
  flex-direction: column; /* Logo oben, Menü darunter */
  width: 15%;            /* gleiche Breite wie vorher #menu */
  height: 100vh;         /* volle Höhe */
  background-color: #b1aca6; /* Sidebar-Hintergrund */
  /*position: relative;*/
    border-left: 3px solid rgb(245, 244, 243);
  border-top: 3px solid rgb(245, 244, 243);
  border-right: 3px solid rgb(61, 58, 58);
  border-bottom: 3px solid rgb(61, 58, 58);
}
.menuitem{
  margin-left: 10px;
  margin-bottom: 30px; /**/
}

.logo{
  height: 179px; /* damit man es sieht, später Bild einfügen */
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  mix-blend-mode: multiply;
  max-height: 100%;
  width: auto;
}

.logou{
  max-height: 100px;
  width: auto;
  display: block;
}

#middlebox{
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
}

#mainbody{
  background-color: #c5bfb9;
  margin: 10px;
  width: 100%;
  height: 83.5vh;
  position: relative;
  border-left: 3px solid rgb(245, 244, 243);
  border-top: 3px solid rgb(245, 244, 243);
  border-right: 3px solid rgb(61, 58, 58);
  border-bottom: 3px solid rgb(61, 58, 58);
}
#corner-girl {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35%;
  max-width: 350px;  /* anpassen je nach gewünschter Größe */
  z-index: 10;   /* sorgt dafür, dass es über dem #mainbody liegt */
  transform: translate(40%, 20%); /* verschiebt es leicht nach außen, optional */
  background-color: transparent;
}

#sidegirl {
  transform: translate(-15%, 20%);
}

#cybergif{
  position: absolute;
  width: 270px;
  transform: translate(590%, -390%);
}

#pokegif{
  position: absolute;
  transform: translate(20%, -250%);
}

#blog-frame {
  width: 550px;          /* Breite des Rahmens */
  height: 510px;         /* Höhe des Rahmens */
  margin: 20px auto;     /* zentriert auf der Seite */
  background-image: url('mspaint.png'); /* dein Rahmenbild */
  background-size: cover; /* das Bild passt sich der Box an */
  background-repeat: no-repeat;
  padding: 40px;          /* Abstand, damit der Inhalt nicht an den Rahmen stößt */
  box-sizing: border-box; /* padding wird in width/height gerechnet */
  position: relative;
  overflow: hidden;       /* verhindert dass scrollbars den Rahmen verlassen */
  padding-left: 60px;
}

#blog-content {
  width: 108%;
  height: 99%;
  overflow-y: auto;      /* scrollbar aktiv bei zu viel Inhalt */
  padding: 10px;
  box-sizing: border-box;
  background-color: rgba(255,255,255,0.8); /* optional: leicht transparent für Lesbarkeit */
}

#blog-content::-webkit-scrollbar {
  width: 12px;
}

#blog-content::-webkit-scrollbar-track {
  background: #c5bfb9; /* Farbe passend zum Paint-Rahmen */
}

#blog-content::-webkit-scrollbar-thumb {
  background: #888; 
  border: 2px solid #b1aca6;
}

#headerbox{
  padding-left: 20px;
}

.pics{
  width:400px;
}




body.pokemons {
    background-image: url('pokepaper.jpg');
    background-repeat: repeat;
    color: #240411;
    font-family: Verdana;
    display: flex;
    justify-content: center;
  }

    .web {
    background-color: #c5bfb9;
    width: 1200px;
    margin: 20px;
    border: solid #c5bfb9 20px;
    border-radius: 8px;
  }
  
  #container {
    background-color: #c5bfb9;
    font-family: 'Press Start 2P', cursive;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 15px;
  }

  p {
    font-family: 'VT323';
    font-size: 25px;
  }

  h1, h2, h3, h4{
    font-family: 'Press Start 2P', cursive;
  }

  #text {
    margin-left: 20px;
  }

  .gif { /**/
    width: 100%;
    height: 400px;
  }

  #cardbox {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 gleich große Spalten */
    gap: 1rem;
    max-width: 960px;
    margin: 20px auto;
  }

  .card-slot {
    background-color: #fff;
    border: 2px #d66292;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 63 / 88;
    width: 100%; /* 100% der Spaltenbreite */
    position: relative;
    cursor: pointer;
  }

  
.card-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bild passt sich an, ohne Verzerrung */
    display: block;
    background-color: white;
    transition: opacity 0.3s ease;
  }

  .card-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(90, 60, 60);
    background-color: rgba(255, 187, 204, 0.534);
    padding: 10px;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    text-align: center;
    font-weight: bold;
    width: 80%;
    transition: opacity 0.3s ease;
  }

  .card-slot:hover img {
    opacity: 0.3; /* Karte verblasst */
  }
  
  .card-slot:hover .card-info {
    opacity: 1; /* Text wird sichtbar */
    pointer-events: auto;
  }

  #sidebox .logo img {
  max-height: 140px;
  width: auto;
  display: block;
}

/* Header-Logo auf der Pokemon-Seite (#container) */
#container .logo img {
  max-height: 80px;
  display: block;
  mix-blend-mode: multiply;

}

/**/
body.drawings{
    background-image: url('wallpape.jpg');
    background-repeat: repeat;
    color: #240411;
    font-family: Verdana;
    display: flex;
    justify-content: center;
  
}

#top{
  display: flex;
}

#log{
  width: 170px;
  mix-blend-mode: multiply;
}

#drawingbox{
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 10px;
  max-width: 1000px;
  margin: 20px auto;
}

.slot img{
  width: 100%;
  height: 100%;
  display: block;
   border-radius: 8px; /* abgerundete Ecken, optional */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#kofibox{
  display: flex;
}

#catlinkk{
  width: 100px;
  mix-blend-mode: multiply;
}

#inhalt{
  display: flex;
  gap: 100px;
}

#aboutme{
  background-image: url(paradise.jpg);
  background-size: cover;
  width: 230px;
  margin-left: 50px;
  border-left: 3px solid rgb(235, 228, 221);
  border-top: 3px solid rgb(235, 228, 221);
  border-right: 3px solid rgb(61, 58, 58);
  border-bottom: 3px solid rgb(61, 58, 58);
}

#feelinara{
  width: 200px;
  margin-left: 22px;
}

#longgif{
  background-image: url(lace.jpg);
  background-repeat: repeat-x;
  mix-blend-mode:screen;
  width: 1000px;
  height: 90px;
}