/* The entire website follows the astrict unless stated otherwise*/
*{
    font-family: neuropol;
    margin: 0;
    cursor: url(photo/Frutiger\ Aero--pointer--SweezyCursors.png), pointer;
    cursor: url(photo/Frutiger\ Aero--cursor--SweezyCursors.png), grab;
}

#topbar {
    display: flex;
    justify-content:flex-start;
    gap: 20px; 
    background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.0) 100%
  );
    color: black;
    backdrop-filter: blur(10px);
    
}
.toprow {
    transform: translateY(9px);
}
/* the icon at the top of the page */
.frutiger-icon {
    width: 30px;
    height: 30px;
    display: flex;
}
body {
    background-image: url(photo/asadal_stock_61.jpg);
    background-repeat: no-repeat;
    background-size:cover;
    background-attachment: fixed;
}
@font-face {
    font-family: neuropol ;
    src: url(fonts/neuropol-x-cufonfonts-webfont/neuropol\ x\ free.woff);
}
/*window container */
.window {
    margin-top: 0;
    top: 100px;
    left: 100px;
    background-color: rgba(255, 255, 255, 0.5);
    width: 500px;
    height: 400px;
    border: solid 2px black;
    border-radius: 5%;
    box-shadow: 5px 5px 5px rgb(127, 185, 255);
    transform: translateX(700px);
    position: absolute;
 }
/*window title bar */
.main-header{
    height: 60px;
    width: 460px;
    transform: translateY(-1.5px);
  
  /* Background Layers: 1. White top specular highlight, 2. Aero gradient base */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 50%), 
    linear-gradient(to bottom, #7da5c9 0%, #2f699c 50%, #174278 100%);
  
    /* Glossy/soft borders */
    border: 1px solid #102a4a;
    border-radius: 8px 8px 0 0;
  
     /* Subtle inner glow */
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5), 0px 2px 5px rgba(0, 0, 0, 0.3);
  
    /* Text Styling */
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: #ffffff;
    font-family:neuropol ;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0px -1px 1px rgba(0, 0, 0, 0.5);

    position:absolute;
    
}
.window-controls {
    display: flex;
    flex-direction:row;
    gap: 2px;

    position: flex;
    
}
#btn-minimize, #btn-maximize{
    width: 50px;
    height: 40px;
}
#btn-close{
    width: 70px;
    height: 40px;
}
.window-body {
    background-color: rgba(#12efff, #FFF, #12efff, 0.9);
    border: 2px solid;
    border-color: #808080 #ffffff #ffffff #808080; 
    border-radius: 5%;
    padding: 15px;
    margin: 2px 2px 2px 4px;
    width: 460px;
    min-height: 280px;
    transform: translateY(70px);

    text-align: center;
    

    position: absolute;
}
/* music app customization and handle customization */

.weather-handle {
    position: absolute;
    top: 120px;
    left: 90px;
}

#weather-header {
    display: flex;
    align-items:center;
    gap: 10px;
    cursor: grab;
}
/*
#music-header:active {
    text-decoration: underline;
}
*/

.weather-note {
    height: 50px;
    width: 50px;
    margin: 0;
}
/* Notes app customization and handle customization*/
.note-handle {
    position: absolute;
    top: 200px;
    left: 80px;
}
.note-pad {
    width: 55px;
    height: 55px
}
#note-header {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: grab;
}
/* Notes window customization */

.note-body {
    background-color: white;
    border: 2px solid;
    border-color: #808080 #ffffff #ffffff #808080; 
    border-radius: 5%;
    padding: 15px;
    margin: 2px 2px 2px 4px;
    width: 400px;
    min-height: 280px;
    transform: translateY(70px);
    position: absolute;
}
#note-content {
    width: calc(100% - 2px);
    height: 100%;
    border: none;
    resize: none;
    outline: none;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    padding: 10px;
    box-sizing: border-box;
    background: transparent;
}
.note-header {
    height: 60px;
    width: 400px;
    transform: translateY(-1.5px);
  
  /* Background Layers: 1. White top specular highlight, 2. Aero gradient base */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 50%), 
    linear-gradient(to bottom, #7da5c9 0%, #2f699c 50%, #174278 100%);
  
    /* Glossy/soft borders */
    border: 1px solid #102a4a;
    border-radius: 8px 8px 0 0;
  
     /* Subtle inner glow */
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5), 0px 2px 5px rgba(0, 0, 0, 0.3);
  
    /* Text Styling */
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: #ffffff;
    font-family:neuropol ;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0px -1px 1px rgba(0, 0, 0, 0.5);

    position:absolute;
}
.note-controls {
    margin-left: 30px;
    display: flex;
    
}

#btn-minimize, #btn-maximize{
    width: 50px;
    height: 40px;
}
#note-close{
    width: 70px;
    height: 40px;
}
.note-window {
    margin-top: 0;
    top: 100px;
    left: 100px;
    background-color: rgba(255, 255, 255, 0.5);
    width: 440px;
    height: 400px;
    border: solid 2px black;
    border-radius: 5%;
    box-shadow: 5px 5px 5px rgb(127, 185, 255);
    position: absolute;
}
#note-welcome {
    display: none;
}
footer {
    display: flex;
   
    justify-content: center;
    position: fixed;
    width: 100%;
    bottom: 0;
    padding-top: 10px;
    background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.0) 100%
  );
    backdrop-filter: blur(10px);
}
#doc {
    display: flex;
    align-items: center;
    justify-content: center;
}

.calc-handle {
    position: absolute;
    top: 280px;
    left: 80px;

 }
 #calculator-header {
    display: flex;
    align-items:center;
    gap: 10px;
    cursor: grab;

 }
/*
#note-header:active {
    text-decoration: underline;
}
*/

