:root {
    --color-highlight: #0078d7;
    --color-window: #ece9d8;
}

body {
    background-color: #008080;
    background-image: url('bliss.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    padding: 20px;
}

.desktop-icon {
    display: inline-block;
    width: 80px;
    margin: 10px;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 2px black;
    cursor: pointer;
}

.desktop-icon img {
    width: 48px;
    height: 48px;
    margin-bottom: 5px;
}

.window {
    position: absolute;
    z-index: 100;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
}

.taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: rgba(42, 42, 42, 0.85);
    /* Semi-transparent black */
    backdrop-filter: blur(10px);
    /* Frosted glass effect */
    display: flex;
    align-items: center;
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.start-button {
    height: 100%;
    padding: 0 15px;
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.start-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.windows-logo {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.start-text {
    color: white;
    padding-left: 6px;
    font-weight: bold;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.taskbar-icons {
    display: flex;
    height: 100%;
    margin-left: 5px;
}

.taskbar-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    font-size: 16px;
}

.taskbar-icon:hover {
    background: rgba(255, 255, 255, 0.1);
}

.taskbar-icon.active {
    background: rgba(255, 255, 255, 0.2);
    border-bottom: 3px solid #0078d7;
}

.system-tray {
    margin-left: auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 5px;
}

.tray-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    cursor: pointer;
}

/* .tray-icon:hover {
            background: rgba(255, 255, 255, 0.1);
        } */

.clock {
    color: white;
    font-size: 12px;
    padding: 0 10px;
    text-align: center;
    cursor: pointer;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.clock:hover {
    background: rgba(255, 255, 255, 0.1);
}

.icon-hover:hover {
    background: rgba(255, 255, 255, 0.1);
}

.show-desktop {
    width: 5px;
    height: 100%;
    background: transparent;
    cursor: pointer;
}

.show-desktop:hover {
    background: rgba(255, 255, 255, 0.1);
}

.program-files {
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}

.tech-icon {
    font-size: 2rem;
    margin: 5px;
}

.project-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 15px;
    margin-bottom: 15px;
}

.project-card h4 {
    color: var(--color-highlight);
    margin-top: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}

/* .contact-form button {
    background-color: var(--color-highlight);
    color: black;
    border: none;
    padding: 5px 15px;
    cursor: pointer;
} */

.win-button {
    font-family: Segoe UI, Tahoma, sans-serif;
    font-size: 14px;
    padding: 6px 14px;
    color: #000;
    background: linear-gradient(to bottom, #ffffff 0%, #e6e6e6 40%, #d2d2d2 100%);
    border: 1px solid #7f9db9;
    border-radius: 4px;
    box-shadow: inset 0 1px 0 #fff, 0 1px 2px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    text-shadow: 0 1px 4 #fff;
    transition: background 0.3s ease;
}

.win-button:hover {
    background: linear-gradient(to bottom, #f0f8ff 0%, #dbefff 40%, #c2e0ff 100%);
}

.win-button:active {
    background: linear-gradient(to bottom, #c2e0ff 0%, #a5c8e0 100%);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}