@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&display=swap');
/* Phase 6: Motion */
/* Boot up animation */
@keyframes osBoot {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

body {
    animation: osBoot 1.2s ease-in forwards;
}

/* Window opening animation */
@keyframes windowPop {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

.os-window {
    animation: windowPop 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Hover state enhancement for desktop icons */
.desktop-icon:hover {
    filter: brightness(1.2);
    transition: filter 0.2s;
}

/* Admin Bar (Taskbar) Custom Styling */
.taskbar {
    background: #e6c5d1 !important;
    border-top: 2px solid #f9eaf0 !important;
    padding: 3px 5px;
}

.taskbar .start-button {
    background: #e6c5d1 !important;
    border: 2px outset #f9eaf0 !important;
}

.taskbar .start-button:active,
.taskbar .start-button.active {
    border: 2px inset #c99ba9 !important;
    background: #d4aab7 !important;
}

/* Override the Start button icon with the Seen logo */
.taskbar .start-button .icon, 
.taskbar .start-button img {
    content: url('../../images/icons/seenlogo.png');
    height: 16px;
    width: auto;
}

.taskbar .task {
    background: #e6c5d1 !important;
    border: 2px outset #f9eaf0 !important;
}

.taskbar .task.selected {
    background: #d39fb6 !important;
    border: 2px inset #b87b96 !important;
    color: #fff !important;
}

.taskbar .tray {
    background: #e6c5d1 !important;
    border-left: 2px inset #c99ba9 !important;
}

/* SEEN Desktop Logo */
.seen-desktop-logo {
    position: absolute;
    top: 5%;
    right: 16%;
    width: 350px;
    height: auto;
    pointer-events: none;
    z-index: 10;
}
/* Interactive Sticky Note Widget */

.seen-sticky-note {
    position: absolute;
    top: 50%;
    right: 20%;
    width: 216px;
    height: 208px;
    background-color: #fc99b4;
    box-shadow: 2px 5px 15px rgba(0,0,0,0.4);
    z-index: 20;
    cursor: move;
    transform: rotate(0deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.seen-sticky-note .tape {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 25px;
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.seen-sticky-note .content {
    padding: 30px 15px 15px 15px;
    font-family: 'Caveat', cursive;
    font-size: 26px;
    color: #4a1d2e;
    line-height: 1;
    text-align: left;
}