* {
  box-sizing: border-box;
  cursor: url("https://cur.cursors-4u.net/others/oth-4/oth305.cur"), auto !important;
}

/* -------------------------------------------------- RESIZE CURSORS */

/* Top / bottom */
.window-resize.top,
.window-resize.bottom {
  cursor: ns-resize !important;
}

/* Left / right */
.window-resize.left,
.window-resize.right {
  cursor: ew-resize !important;
}

/* Corners */
.window-resize.top-left,
.window-resize.bottom-right {
  cursor: nwse-resize !important;
}

.window-resize.top-right,
.window-resize.bottom-left {
  cursor: nesw-resize !important;
}

@font-face {
    font-family: "BalsamiqSans";
    src: url("https://imp.neocities.org/layouts/spacehey/sickly-sweet/BalsamiqSans-Regular.ttf");
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: url("https://i.pinimg.com/1200x/ca/d3/cc/cad3cc3a23114c5a85496c05d3820cb0.jpg") no-repeat center center fixed;
    background-size: cover;
    word-wrap: break-word;
    font-size: 14px;
    line-height: 1.6;
    font-family: "BalsamiqSans", Georgia, serif;
    margin: 0;
    overflow: hidden;
    color: #4a1a2e;
}


u {
  color: #70243f;
  text-decoration: none;
  border-bottom: 2px dotted #70243f;
}

iframe {
	border: none;
}

.windowcontent::-webkit-scrollbar {
  width: 6px;
}

.windowcontent::-webkit-scrollbar-track {
  background: rgba(255, 220, 235, 0.25);
}

.windowcontent::-webkit-scrollbar-thumb {
  background: rgba(255, 150, 190, 0.55);
  border-radius: 10px;
}

.windowcontent::-webkit-scrollbar-thumb:hover {
  background: rgba(200, 80, 120, 0.7);
}


/* -------------------------------------------------- DESKTOP */

#desktop {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* -------------------------------------------------- TOP BAR */

.top-bar {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  width: min(760px, calc(100vw - 40px));
  height: 54px;
  padding: 0 22px;

  z-index: 100;

  background: rgba(255, 247, 250, 0.74);

  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 14px;

  box-shadow:
    0 14px 38px rgba(50, 12, 28, 0.16),
    0 2px 8px rgba(50, 12, 28, 0.08);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.top-bar p {
  margin: 0;

  font-family: "BalsamiqSans", Georgia, serif;
  line-height: 1;

  color: #70243f;
}

.top-bar .bar-brand {
  justify-self: start;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.top-bar .bar-subtitle {
  justify-self: center;

  padding: 9px 28px;

  border-left: 1px solid rgba(112, 36, 63, 0.14);
  border-right: 1px solid rgba(112, 36, 63, 0.14);

  color: #8b4961;

  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#time {
  justify-self: end;

  color: rgba(112, 36, 63, 0.62);

  font-size: 10px;
  letter-spacing: 0.08em;
}


/* smaller screens */

@media (max-width: 600px) {
  .top-bar {
    top: 12px;
    width: calc(100vw - 24px);
    height: 50px;
    padding: 0 14px;
  }

  .top-bar .bar-subtitle {
    padding: 8px 14px;
    font-size: 9px;
  }

  .top-bar .bar-brand {
    font-size: 9px;
  }

  #time {
    font-size: 8px;
  }
}

/* -------------------------------------------------- DESKTOP APPS */

#desktopApps {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    gap: 0;
}

.app, .folder {
    margin: 18px 0;
    text-align: center;
    width: fit-content;
    cursor: pointer;
    transition: transform 0.18s ease, filter 0.18s ease;
}

.app:hover, .folder:hover {
    transform: translateY(-2px);
}

.app p, .folder p {
    margin: 5px 0 0 0;
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.06em;
    text-shadow: 0 1px 6px rgba(0,0,0,0.7), 0 0 20px rgba(0,0,0,0.5);
    font-family: "BalsamiqSans", Georgia, serif;
}

.openwindow {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: 1.5px solid rgba(255, 175, 204, 0.5);
    box-shadow:
        0 4px 18px rgba(0,0,0,0.35),
        0 0 0 1px rgba(255,255,255,0.08) inset;
    display: block;
    object-fit: cover;
    transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

.openwindow:hover {
    border-color: rgba(255, 175, 204, 0.9);
    box-shadow:
        0 6px 28px rgba(0,0,0,0.45),
        0 0 0 1px rgba(255,255,255,0.12) inset,
        0 0 16px rgba(255, 160, 200, 0.25);
}


/* -------------------------------------------------- WINDOWS */

.window-resize {
  position: absolute;
  z-index: 999;
}

.window-resize.top {
  top: -4px;
  left: 10px;
  right: 10px;
  height: 8px;
  cursor: ns-resize;
}

.window-resize.bottom {
  bottom: -4px;
  left: 10px;
  right: 10px;
  height: 8px;
  cursor: ns-resize;
}

.window-resize.left {
  top: 10px;
  bottom: 10px;
  left: -4px;
  width: 8px;
  cursor: ew-resize;
}

.window-resize.right {
  top: 10px;
  bottom: 10px;
  right: -4px;
  width: 8px;
  cursor: ew-resize;
}

/* Corners */
.window-resize.top-left {
  top: -5px;
  left: -5px;
  width: 12px;
  height: 12px;
  cursor: nwse-resize;
}

.window-resize.top-right {
  top: -5px;
  right: -5px;
  width: 12px;
  height: 12px;
  cursor: nesw-resize;
}

.window-resize.bottom-left {
  bottom: -5px;
  left: -5px;
  width: 12px;
  height: 12px;
  cursor: nesw-resize;
}

.window-resize.bottom-right {
  bottom: -5px;
  right: -5px;
  width: 12px;
  height: 12px;
  cursor: nwse-resize;
}

/* -------------------------------------------------- WINDOWS */

.window {
    position: absolute;
    display: none;
    flex-direction: column;
    border-radius: 18px;
    top: calc(50% - 180px);
    left: calc(50% - 200px);
    width: 420px;
    z-index: 200;
    border: 1px solid rgba(255, 175, 204, 0.45);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255,255,255,0.06) inset;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    background: rgba(255, 245, 249, 0.14);
	min-height: 344px;
}

.windowheader {
    width: 100%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 12px 44px;
    background: rgba(255, 220, 235, 0.22);
    border-bottom: 1px solid rgba(255, 175, 204, 0.3);
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.windowheader p {
    margin: 0;
    font-size: 13px;
    font-family: "BalsamiqSans", Georgia, serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4a1a2e;
}

/* The three dots decorative header accent */
.windowheader::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 150, 190, 0.7);
    box-shadow: 12px 0 0 rgba(255, 200, 220, 0.6), 24px 0 0 rgba(255, 230, 240, 0.5);
}

.closewindow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(255, 150, 190, 0.5);
    background: rgba(255, 200, 220, 0.25);
    color: #872A4E;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    font-family: "BalsamiqSans", Georgia, serif;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.closewindow:hover {
    background: rgba(255, 150, 190, 0.4);
    border-color: rgba(200, 80, 120, 0.6);
}

.fullscreenwindow {
    position: absolute;

    right: 42px;
    top: 50%;

    transform: translateY(-50%);

    width: 22px;
    height: 22px;

    border-radius: 50%;

    border: 1px solid rgba(255, 150, 190, 0.5);

    background: rgba(255, 200, 220, 0.25);

    color: #872A4E;

    font-size: 11px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    line-height: 1;
    padding: 0;

    font-family: "BalsamiqSans", Georgia, serif;

    transition:
        background 0.15s ease,
        border-color 0.15s ease;
}

.fullscreenwindow:hover {
    background: rgba(255, 150, 190, 0.4);
    border-color: rgba(200, 80, 120, 0.6);
}

.window-fullscreen {
    width: 100vw !important;
    height: 100vh !important;

    left: 0 !important;
    top: 0 !important;

    max-width: 100vw !important;
    max-height: 100vh !important;

    border-radius: 0 !important;
}

.window-fullscreen .windowheader {
    border-radius: 0;
}

.window-fullscreen .windowcontent {
    border-radius: 0;
}

.windowcontent {
	position: relative;
    flex: 1 1 0;
    min-width: 0;
    min-height: 300px;
    background: rgba(255, 250, 253, 0.88);
    margin: 0;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    padding: 22px 24px;
    color: #3a1020;
    font-size: 13px;
    line-height: 1.7;
	overflow-x: hidden;
  	overflow-y: auto;

  	overflow-wrap: anywhere;
  	word-break: break-word;
}

.windowcontent > * {
  max-width: 100%;
  min-width: 0;
}

.windowcontent p,
.windowcontent div,
.windowcontent section,
.windowcontent article,
.windowcontent ul,
.windowcontent ol,
.windowcontent table {
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.windowcontent img {
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    display: block;
    margin-top: 10px;
}

.windowiframe {
	min-height: 100%;
}
/* -------------------------------------------------- HEADINGS */

h1 {
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 14px;
    margin: 0 0 14px 0;
    background: rgba(255, 220, 235, 0.5);
    text-align: center;
    border-bottom: 1px solid rgba(255, 175, 204, 0.4);
    color: #4a1a2e;
    font-family: "BalsamiqSans", Georgia, serif;
    font-weight: 700;
    border-radius: 0;
    width: 100%;
}

h2, h3, h4 {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 10px;
    margin: 18px 0 10px 0;
    background: rgba(255, 220, 235, 0.4);
    text-align: center;
    border-top: 1px solid rgba(255, 175, 204, 0.35);
    border-bottom: 1px solid rgba(255, 175, 204, 0.35);
    color: #872A4E;
    font-family: "BalsamiqSans", Georgia, serif;
    font-weight: 700;
    width: 100%;
    border-radius: 0;
}

/* -------------------------------------------------- SCROLLBOX */

#scrollbox {
    margin: 0 auto;
    height: auto;
    max-height: 420px;
    width: 100%;
    overflow-y: auto;
    text-align: center;
    border: 1px solid rgba(255, 175, 204, 0.4);
    border-radius: 10px;
    padding: 12px;
    background: rgba(255, 245, 250, 0.6);
}

#scrollbox::-webkit-scrollbar {
    width: 4px;
    background: rgba(255, 230, 240, 0.3);
}

#scrollbox::-webkit-scrollbar-thumb {
    background: rgba(255, 150, 190, 0.5);
    border-radius: 2px;
}

#scrollbox-status {
    margin: 0 auto;
    height: 90px;
    width: 100%;
    overflow-y: auto;
    text-align: left;
    border: 1px solid rgba(255, 175, 204, 0.4);
    border-radius: 10px;
    padding: 8px 10px;
    background: rgba(255, 245, 250, 0.6);
    font-size: 12px;
}

#scrollbox-status::-webkit-scrollbar {
    width: 4px;
    background: rgba(255, 230, 240, 0.3);
}

#scrollbox-status::-webkit-scrollbar-thumb {
    background: rgba(255, 150, 190, 0.5);
    border-radius: 2px;
}

#scrollbox-hori {
    margin: 0 auto;
    height: auto;
    max-height: 300px;
    width: 100%;
    overflow-y: auto;
    text-align: left;
    border: 1px solid rgba(255, 175, 204, 0.4);
    border-radius: 10px;
    padding: 8px 10px;
    background: rgba(255, 245, 250, 0.6);
}

#scrollbox-hori::-webkit-scrollbar {
    width: 4px;
}

#scrollbox-hori::-webkit-scrollbar-thumb {
    background: rgba(255, 150, 190, 0.5);
    border-radius: 2px;
}

/* -------------------------------------------------- PHOTOBOOK */

.pic {
    background: white;
    position: relative;
    display: inline-block;
    margin: 4px;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid rgba(255, 175, 204, 0.4);
    vertical-align: top;
}

.hov {
    opacity: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.hov:hover {
    opacity: 1;
}

.caption {
    position: absolute;
    top: 12%;
    bottom: 8%;
    left: 8%;
    width: 84%;
    padding: 12px;
    background: rgba(255, 248, 252, 0.96);
    border-radius: 10px;
    border: 1px solid rgba(255, 175, 204, 0.5);
    font-family: "BalsamiqSans", Georgia, serif;
    font-size: 10.5px;
    text-align: left;
    overflow: hidden;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.caption-content {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    line-height: 1.5;
    padding-right: 6px;
    -webkit-overflow-scrolling: touch;
    color: #3a1020;
}

.caption-content::-webkit-scrollbar {
    width: 3px;
    background: rgba(255, 230, 240, 0.3);
}

.caption-content::-webkit-scrollbar-thumb {
    background: rgba(255, 150, 190, 0.5);
    border-radius: 2px;
}

.caption-content b {
    color: #872A4E;
}

img.art {
    max-width: 143px;
    max-height: 243px;
    display: block;
}

img.figure {
    max-width: 222px;
    max-height: 323px;
    display: block;
}

/* -------------------------------------------------- BUTTONS */

button {
    border: 1px solid rgba(255, 150, 190, 0.5);
    background-color: rgba(255, 240, 248, 0.8);
    color: #872A4E;
    font-family: "BalsamiqSans", Georgia, serif;
    font-size: 10px;
    border-radius: 6px;
    padding: 3px 8px;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

button:hover {
    background-color: rgba(255, 200, 225, 0.6);
    border-color: rgba(200, 80, 120, 0.5);
}

/* -------------------------------------------------- MP3 */

iframe.mp3 {
    display: block;
    width: 100%;
    max-width: 320px;
    height: 500px;
    margin: 15px auto;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

/* -------------------------------------------------- DIVIDER */

.section-divider {
    width: 60%;
    margin: 14px auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 150, 190, 0.45), transparent);
    border: none;
}

/* -------------------------------------------------- CONTACT */

.social-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 20px;
  height: 20px;

  color: rgba(112, 36, 63, 0.65);

  text-decoration: none;

  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon.github svg {
  fill: currentColor;
  stroke: none;
}

.social-icon:hover {
  color: #70243f;
}