/* Main cursor */
* { cursor: url(images/cloud.gif), auto !important; }

/* Clickable stuff - DEFAULT cursor3 */
button, 
a, 
.icon, 
.openWindow, 
.window span[class], 
.window-buttons *,
#crtToggle {
    cursor: url(images/flower1.gif) 0 0, pointer !important;
}

#zoomImg.active {
    display: block !important;
}

/* ============================= */
/*        GLOBAL FONT            */
/* ============================= */
@font-face {
  font-family: "IBM plex mono", monospace;
  font-weight: normal;
  font-style: normal;
}

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}
body{line-height:1;font-family: "IBM plex mono", monospace;}

/* ============================= */
/* DESKTOP BACKGROUND            */
/* ============================= */
#desktop {
    font-family: "Silkscreen", sans-serif;
    position: fixed;
    height: 100%;
    width: 100%;
    background-image: url(images/bluesky.jpg);
    background-repeat: no-repeat;
    background-size: cover;

}


/* ============================= */
/* WINDOWS                       */
/* ============================= */
.window {
    position: absolute;
    border: 2px solid #000;
    background: #fff9ed;
    z-index: 1000;
}
.window.closed { display: none; }
.window.minimizedWindow { display: none; }

.window.fullSizeWindow {
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    bottom: 32px !important;
}
.fullSizeWindow .ui-resizable-handle { display: none; }



/* ============================= */
/* WINDOW TITLE BARS             */
/* ============================= */

.windowHeader {
    background-color: #A1DE99;
    text-align: right;
    border-bottom: 2px solid #000;
    padding: 2px;
    cursor: move;
    height: 28px;
    color: transparent;
}
.activeWindow .windowHeader {
    background-color: #6EA168;
    color: transparent;
}

.windowHeader > span {
    display: inline-block;
    cursor: pointer;
    border: 2px solid #80DAED;
    border-radius: 50%;
    background: #80DAED;
    margin-left: 4px;
    font-size: 10px;
    padding: 2px 10px;
    line-height: 10px;
    width: 5px;
    height: 19px;
    position: relative;
    overflow: hidden;
    color: transparent;
}
.windowHeader > span:hover {
    background-color: #6EA168;
    color: transparent;
}
.windowHeader > span.winclose:hover {
    background-image: url(images/red.gif);
    color: transparent;
}

.windowHeader > span > span {
    display: inline-block;
    height: 8px;
    width: 10px;
    position: absolute;
    top: 6px;
    left: 10px;
}

.winminimize > span { border-bottom: 3px solid #000; }
.winmaximize > span {
    border: 2px solid #000;
    border-top: 3px solid #000;
}
.winmaximize > span:nth-child(2) { display: none; }

.fullSizeWindow .winmaximize > span:nth-child(1) {
    margin: 2px 0 0 -4px;
}
.fullSizeWindow .winmaximize > span:nth-child(2) {
    display: inline-block;
    top: 3px;
    left: 12px;
}

/* ============================= */
/* WINDOW CONTENT                */
/* ============================= */
.wincontent {
    padding: 10px;
    min-width: 400px;
    min-height: 265px;
    border: 2px solid #000;
    margin: 2px;
    background: #fff9ed;
    color: #7F14C4;
}

/* Bigger default for specific windows */

#window0 .wincontent {
    min-width: 800px;
    min-height: 500px;
    width: 600px;
    height: 500px;
}

#window1 .wincontent {
    min-width: 600px;
    min-height: 600px;
    width: 600px;
    height: 600px;
}

#window2 .wincontent {
    min-width: 650px;
    min-height: 500px;
    width: 650px;
    height: 500px;
}

#window4 .wincontent {
    min-width: 900px;
    min-height: 500px;
    width: 900px;
    height: 500px;
}

/* ============================= */
/* TASKBAR                       */
/* ============================= */
#taskbar {
    position: absolute;
    width: 30%;
    height: 35px;
    bottom: 5px;
    left: 35%;
    right: 0;
    border-radius: 10px;
    background-image: url(images/wp15.gif);
    background-repeat: repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.taskbarPanel {
    display: inline-block;
    line-height: 22px;
    margin: 2px 0 0 10px;
    font-size: 18px;
    border-radius: 5px;
    font-family: "IBM plex mono", monospace;
    padding: 3px 10px;
    font-weight: bold;
    cursor: pointer;
}
.taskbarPanel.activeTab {
    background-image: url(images/gskbg.gif);
    color: #000;
}
.taskbarPanel.minimizedTab {
    background-image: url(images/moonglitter.gif);
    color: #fff9ed;
}
.taskbarPanel.minimizedTab:hover { background-image: url(images/purplestars.gif); }
.taskbarPanel.closed { display: none; }



@keyframes gentlePulse {
    0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
    50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.15); }
}

/* ============================= */
/* DESKTOP ICONS                 */
/* ============================= */
#icons {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    justify-content: flex-start;
    flex-wrap: wrap;
    display: inline-grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    gap: 50px;
    z-index: 10;
}

.icon {
    width: 64px;
    text-align: center;
    user-select: none;
}

.icon img {
    width: 47px;
    height: 47px;
    margin-bottom: 4px;
}

.icon span {
    color: black;
    font-size: 18px;
}


/*tooltip*/

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
  cursor: pointer;
}

.tooltiptext {
  visibility: hidden;
  width: 130px;
  background-color: black;
  color: #ffffff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: -5px;
  left: 105%;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}


/* ============================= */
/* PICTURES GALLERY              */
/* ============================= */
.pictures-section {
    margin-bottom: 50px;
    text-align: center;
}

.pictures-section h3 {
    margin-bottom: 20px;
    color: #c74995;
    font-size: 28px;
}

.pictures-grid {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 20px;
    padding: 20px;
    justify-items: center;
}

.pictures-grid img {
    width: 100%;
    max-width: 400px;
    height: 270px;
    box-shadow: 0 4px 8px rgba(28,24,82,0.15);
    object-fit: cover;
    image-rendering: pixelated;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: zoom-in;
}

.pictures-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(199,73,149,0.35);
    z-index: 10;
}

/* Glowing cute button for start */

.cute-glow-btn {
    margin: 0;
    position: relative;
    width: 30px;          
    height: 30px;         
    background-image: url(images/mushroom.gif);
    background-size: contain;
    background-color: transparent;
    border-color: transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
}

.cute-glow-btn:hover,
.cute-glow-btn:active,
.cute-glow-btn:focus {
    background-image: url(images/mushroom.gif);
    background-size: contain;
    background-color: transparent;
    scale: 2;
   image-rendering: pixelated;
   transition-duration: 0.5s;
   transition-property: scale;
}

.cute-glow-btn .glow-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;      
    background-image: url(images/mushroom.gif);
    background-size: contain;
    background-color: transparent;
    pointer-events: none;
    animation: gentlePulse 3s infinite ease-in-out;
}

.cute-btn {
  background-image: url(images/mushroom.gif);
  background-size: contain;
  background-color: transparent;
  padding: 6px 10px;
  border-radius: 5px;
  border-color: transparent;
  font-size: 14px;
  font-weight: bold;
  min-width: 32px;
  line-height: 1;
  image-rendering: pixelated;
  transition: 0.15s ease;
}

.cute-btn:hover {
  background: #d3f2ff;
  box-shadow:
      0 3px 0,
      0 0 16px rgba(124,198,245,0.75);
}

.cute-btn:active {
  transform: scale(0.92);
  box-shadow:
      0 1px 0,
      0 0 6px rgba(124,198,245,0.4);
}

/* Custom scrollbar for about window */
#window0 .wincontent {
    overflow-y: auto;
}

#window0 .wincontent::-webkit-scrollbar {
    width: 16px;
}

#window0 .wincontent::-webkit-scrollbar-track {
    background: #ffdff4;
    border-left: 2px solid #ffbde6;
}

#window0 .wincontent::-webkit-scrollbar-thumb {
    background: #c74995;
    border: 3px solid #fff9ed;
    border-radius: 10px;
}

#window0 .wincontent::-webkit-scrollbar-thumb:hover {
    background: #ff9adb;
    box-shadow: 0 0 12px rgba(255, 154, 219, 0.6);
}


/* Custom scrollbar for blinkies window */
#window2 .wincontent {
    overflow-y: auto;
}

#window2 .wincontent::-webkit-scrollbar {
    width: 16px;
}

#window2 .wincontent::-webkit-scrollbar-track {
    background: #ffdff4;
    border-left: 2px solid #ffbde6;
}

#window2 .wincontent::-webkit-scrollbar-thumb {
    background: #c74995;
    border: 3px solid #fff9ed;
    border-radius: 10px;
}

#window2 .wincontent::-webkit-scrollbar-thumb:hover {
    background: #ff9adb;
    box-shadow: 0 0 12px rgba(255, 154, 219, 0.6);
}


/* Custom scrollbar for gallery window */
#window5 .wincontent {
    overflow-y: auto;
}

#window5 .wincontent::-webkit-scrollbar {
    width: 16px;
}

#window5 .wincontent::-webkit-scrollbar-track {
    background: #ffdff4;
    border-left: 2px solid #ffbde6;
}

#window5 .wincontent::-webkit-scrollbar-thumb {
    background: #c74995;
    border: 3px solid #fff9ed;
    border-radius: 10px;
}

#window5 .wincontent::-webkit-scrollbar-thumb:hover {
    background: #ff9adb;
    box-shadow: 0 0 12px rgba(255, 154, 219, 0.6);
}

/* Custom scrollbar for blog window */
#window4 .wincontent {
    overflow-y: auto;
}

#window4 .wincontent::-webkit-scrollbar {
    width: 16px;
}

#window4 .wincontent::-webkit-scrollbar-track {
    background: #ffdff4;
    border-left: 2px solid #ffbde6;
}

#window4 .wincontent::-webkit-scrollbar-thumb {
    background: #c74995;
    border: 3px solid #fff9ed;
    border-radius: 10px;
}

#window4 .wincontent::-webkit-scrollbar-thumb:hover {
    background: #ff9adb;
    box-shadow: 0 0 12px rgba(255, 154, 219, 0.6);
}

/* WINDOW INITIAL POSITIONS */
#window0 { top: 60px; left: 200px; }
#window1 { top: 100px; left: 300px; }
#window2 { top: 40px; left: 400px; }
#window3 { top: 180px; left: 250px; }
#window4 { top: 120px; left: 450px; }
#window5 { top: 220px; left: 350px; }
#window6 { top: 80px; left: 550px; }

