* {
  box-sizing: border-box;
}

/* Apply to the whole site */
* {
    cursor: url('Photos/CursorPink.png'), auto;
}

/* Apply to clickable items (links, buttons, etc) */
a, button, label, .nav-item, .playpause-track, .seek_slider {
    cursor: url('Photos/Pointer.png'), 0 0 pointer;
}

/* The 'Text' pointer (the I-beam) */
p, span, h1, h2 {
    cursor: url('Photos/Pointer.png'), 0 0 text;
}



/* Preloader */
#preloader {
  /* 1. The Main Background Image */
  background-image: url("Photos/bg.png");
  background-size: cover;
  background-position: center;
  background-color: #e3abb4; /* Fallback color while image loads */

  /* 2. Layout for the Loading Icon */
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* 3. Full Screen Positioning */
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 9999;
}

/* =========================== HEADER =========================== */
body {
  font-family: 'Quicksand', sans-serif;
  color: #4d4040;
  background-image: url('Photos/bg.png');
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 0 16px;
  height: 100%
}

::selection {
/* Change highlight background color */
background: #ac9396;
/* Change highlight text color */
color: #FFFFFF;
}

.outer-border {
  border: 7px solid;
  border-image: url("Photos/Border3.png") 7 fill round;    
  margin: 10px auto;
  width: clamp(320px, 90%, 1000px);
  padding: 5px;
  min-height: 100vh;
  position: relative;
  display: flex; 
  flex-direction: column;
}

.inner-border {
  border: 9px solid;
  border-image: url('Photos/Dull.png') 39 fill round;
  box-shadow: 0 0 0 1px #746262;
  position: relative; 
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: 2;
  padding: 0;
}

.topper {
  background: url('Photos/HeaderBG.jpg') no-repeat 50% 38% / cover;
  border: 1px solid #746262;
  width: 100%;
  position: relative;
  height: auto;
  padding-top: 20%;
  overflow: hidden;
  z-index: 3;
}

.logo {
  background: transparent url('Photos/Header.png') no-repeat center / contain;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  z-index: 4;
}

.bows {
 background: url('Photos/pinkbows.png') repeat-x 0 0 / auto 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15%;
  min-height: 10px;
  z-index: 5;
} 

.interact-area {
    text-align: center;
    margin-top: 5px;
}


/* =========================== NAVIGATION =========================== */
.nav-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); 
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    gap: 10px;
    padding: 0 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.nav-background {
    background: url('Photos/PinkGingham.jpg');
    background-repeat: repeat;
    background-size: 150px;
    display: block;
    width: 100%;
    border: 1px solid #746262; /* top | right | bottom | left */
    border-top: none;
    overflow: visible;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; 
    height: 80px;
    width: 100%;
    max-width: 100px;
    background-image: url('Photos/Bbutton.png');
    background-size: contain; /* Prevents squish */
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s ease-out;
}

.nav-item span {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%); 
    z-index: 12;
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    color: #746262;
    font-weight: bold;
    pointer-events: none;
    transition: transform 0.1s ease, filter 0.1s ease;
}

.nav-item:hover {
    transform: scale(1.1);
}

.nav-item:hover span {
    transform: translate(-50%, -50%) scale(1.1);
    filter: drop-shadow(0 0 5px white);
}

/*=========================== BODY ===========================*/
/* Main Container Layout */
.grid-container {
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}
.box {
    background: #ffe5e8;
    padding: 15px;
    position: relative;
    overflow: hidden;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #746262;
}

.box:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border-width: 0 0 1px 1px; /* top | right | bottom | left */
    border-style: solid; 
    border-color: #746262; 
}

.box:last-child {
    display: flex;
    flex-direction: column;
    align-items: center; 
    padding: 15px;
    border-width: 0 1px 1px 0; /* top | right | bottom | left */
    border-style: solid; 
    border-color: #746262;         
}

/* Box Header */
.washi {
    background-image: url('Photos/Washi.png');
    background-size: contain; 
    background-position: center;
    background-repeat: no-repeat;
    width: 100%; 
    height: 35px; /* Increase this to make the tape look bigger */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px auto;
    font-weight: bold;
    font-size: 15px;
    letter-spacing: 1px;
}

/* Dividers */
.divider {
    background-image: url("Photos/Divider.gif");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100px;
    display: block;      
    width: 100%;        
    height: 26px;      
     
    flex-shrink: 0;
}

.divider2 {
    background-image: url("Photos/Divider2.gif");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 200px;
    display: block;      
    width: 100%;        
    height: 26px;      
    margin: 15px 0;     
    flex-shrink: 0;
}

.divider3 {
    background-image: url("Photos/Divider3.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    display: block;      
    width: 100%;        
    height: 70px;      
    margin: 15px 0;     
    flex-shrink: 0;
}

.sheet {
    background-image: url('Photos/sheet.png');
    background-repeat: no-repeat;
    background-size: auto 32px;
    display: inline-block;
    vertical-align: middle;
    width: 32px;
    height: 32px;
    margin: 5px;
}

.sheet:hover {
  transform: scale(1.3); 
}
/* Emoji List */
.sunflower { background-position: 0 0; }
.orange    { background-position: -32px 0; }
.snowflake { background-position: -64px 0; }
.thumbsup  { background-position: -96px 0; }
.annoyed   { background-position: -128px 0; }
.mad       { background-position: -160px 0; } 
.mad2      { background-position: -192px 0; }
.frustrate { background-position: -224px 0; } 
.zzz       { background-position: -256px 0; } 
.tired     { background-position: -288px 0; }
.pupeyes   { background-position: -320px 0; }
.pupeyes2  { background-position: -352px 0; } 
.shame     { background-position: -384px 0; } 
.sob       { background-position: -416px 0; }
.swt       { background-position: -448px 0; }
.cry       { background-position: -480px 0; } 
.shock     { background-position: -512px 0; }
.drink     { background-position: -544px 0; } 
.cupcake   { background-position: -576px 0; }
.wink      { background-position: -608px 0; }
.broken    { background-position: -640px 0; }
.stare     { background-position: -672px 0; }
.question  { background-position: -704px 0; }
.neutral   { background-position: -736px 0; }
.music     { background-position: -768px 0; }
.smile     { background-position: -800px 0; }
.yellow    { background-position: -832px 0; }
.wink2     { background-position: -864px 0; }
.heart     { background-position: -896px 0; }
.cute      { background-position: -928px 0; }
.ok        { background-position: -960px 0; }
.peach     { background-position: -992px 0; }

.holder {
  width: 100%;
  height: 100%;
  background-image: url('Photos/Placeholder.jpg');
  background-size: cover;
  background-position: center;
  z-index: 10;
}

/* =========================== LEFT Content =========================== */
.border1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
  padding: 20px; 
  border-width: 7px;
  border-style: solid;
  border-image: url("Photos/border.png") 7 fill round;
  flex-shrink: 0;
  margin: 10px;
}

.border2 {
  display: flex;
  justify-content: center;
  align-items: center;
  border-width: 7px;
  border-style: solid;
  border-image: url("Photos/border2.png") 7 fill round;
  width: 200px;
  height: 200px;
  margin-bottom: 5px;
  flex-shrink: 0;
}

.clap-button {
    height: 60px;
    width: 110px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.profile {
  width: 100%;
  height: 100%;
  background-image: url('Photos/pfp.jpg');
  background-size: cover;
  background-position: center;
  z-index: 10;
}

.status {
    width: 200px;
    padding: 5px;
    margin: 10px;
    border: 1px solid #e8bbbb;
    background: #e3abb4;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    border-style: solid;
    border-color: #746262;
}

.status2 {
    width: 100%;
    padding: 5px;
    margin: 10px;
    border: 1px solid #e8bbbb;
    background: #e3abb4;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    border-style: solid;
    border-color: #746262;
}


#calendar-container {
    width: 100%; /* Adjust this to resize the whole calendar */
    margin: 10px auto;
    font-family: 'Quicksand', sans-serif;
    align-items: center;       /* Vertical center */
    justify-content: center;   /* Horizontal center */
}

#calendar-container table {
    width: 100%;
    background-color: #e3abb4;
    border-radius: 12px;
    border-collapse: collapse;
    overflow: hidden;
    align-items: center;       /* Vertical center */
    justify-content: center;   /* Horizontal center */
}

.month-header {
    background-color: #ebc6cc;
    color: #d98c99;
    font-weight: bold;
    font-size: 16px;
    padding: 12px;
    text-align: center;
    
}

/* Day Names Row */
.day-names td {
    font-weight: bold;
    padding: 8px 0;
    color: #555;
    font-size: 12px;
    text-align: center;
}

.number-circle {
    display: flex;           
    align-items: center;     /* Vertical center */
    justify-content: center; /* Horizontal center */
    
    
    width: 24px; 
    height: 24px;
    margin: 0 auto;         
  
    border-radius: 8px;    
    border: 1px solid #746262;
    background: rgba(255, 255, 255, 0.2);
    
    font-size: 11px;
    line-height: normal;
    transition: all 0.2s;
}

/* Special styling for "Today" circle */
.today .number-circle {
    background-color: #d27988;
    color: #ffe5e8;
    font-weight: bold;
    border: 1px solid #d27988;
}

.stamp {
  width: 99px;
  height: 56px;
}

/* =========================== CENTER Content =========================== */
.scroll {    
    scrollbar-width: auto; /* Firefox */
    scrollbar-color: #d18f9e #f0d2d7;
    overflow: scroll;
    width: 100%;
  }

  /* Chrome, Edge, and Safari */
  ::-webkit-scrollbar {
    width: 16px;
  }

  ::-webkit-scrollbar-track {
    background: #f0d2d7;
  }

  ::-webkit-scrollbar-thumb {
    background-color: #d18f9e;
    border-radius: 10px;
  }
  

/* Music Player Start */
 .player {
        width:fit-content;
        border: #CECECE solid 2px;
        border-radius: 100px;
        margin-left:auto;
        margin-right:auto;
      background: linear-gradient(0deg, rgba(255,215,215,.6) 0%, rgba(230,230,230,1) 30%, rgba(255,255,255,1) 100%); 
      padding:5px;
    }

.seek_slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 6px;
  background: #e4d5dc;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
  border-radius: 8px;
}

.seek_slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 8px;
  height: 8px;
  background: white;
  cursor: pointer;
  border-radius: 50%;
  border:1px solid #cecece;
  padding-top:3px;
  position:relative;
  bottom:3px;
}
 
button,input,label,option,select,table,textarea,ul.tree-view {
  -webkit-font-smoothing:none;font-family:"Quicksand";font-size:12px}h1{font-size:5rem}h2{font-size:2.5rem}h3{font-size:2rem}h4{font-size:1.5rem}u{border-bottom:.5px solid #222;text-decoration:none}button,input[type=reset],input[type=submit]{border:none;border-radius:0;box-sizing:border-box;color:transparent;min-height:23px;min-width:75px;padding:0 12px;text-shadow:0 0 #222}.vertical-bar,button,input[type=reset],input[type=submit].vertical-bar{height:20px;width:4px}button:not(:disabled):active,input[type=reset]:not(:disabled):active,input[type=submit]:not(:disabled):active{opacity:0.5}}@media (not(hover)){button:not(:disabled):hover,input[type=reset]:not(:disabled):hover,input[type=submit]:not(:disabled):hover{box-shadow:inset -1px -1px #fff,inset 1px 1px #0a0a0a,inset -2px -2px #dfdfdf,inset 2px 2px grey}}button:focus,input[type=reset]:focus,input[type=submit]:focus{opacity:1}button::-moz-focus-inner,input[type=reset]::-moz-focus-inner,input[type=submit]::-moz-focus-inner{border:0}:disabled,:disabled+label,input[readonly],input[readonly]+label{color:grey}:disabled+label,button:disabled,input[type=reset]:disabled,input[type=submit]:disabled{text-shadow:1px 1px 0 #fff}}
 
@media (not(hover)){
	button:not(:disabled):hover {
    box-shadow:inset -1px -1px #fff,inset 1px 1px #0a0a0a,inset -2px -2px #dfdfdf,inset 2px 2px grey}
}
 
.window, .title-bar {
  font-family: "Myriad Pro";
  -webkit-font-smoothing: none;
  font-size: 12px;
}
 
.window {
  padding:10px;
  width:290px;
}
 
 
.window-body { 
  display:block;
  margin:auto; 
  border-radius:0em;
}
 
 
 
input[type=range] {
        -webkit-appearance: none;
        appearance:none;
        width: 100%;
    }
 
    input[type=range]:focus {
        outline: none;
    }
 
    /* settings for chrome browsers */
    input[type=range]::-webkit-slider-runnable-track {
        width: 100%;
        height: 2px; /* thickness of seeking track */
        cursor: pointer;
    }
 
 
    /* settings for firefox browsers */
    input[type=range]::-moz-range-track {
        width: 100%;
        height: 2px; /* thickness of seeking track */
        cursor: pointer;
    }
 
    .flex {display: flex;}
 
   
 
 
    
 
    #musicplayer {
display:block;
        float:right;
      background: linear-gradient(0deg, #F1E3F0, white) padding-box, linear-gradient(to top, white, #A2A2A2) border-box;
  border-radius: 60em;
  border: 2px solid transparent;
      margin-left:8px;
      padding-left:10px;
      box-shadow: 1px 1px 10px 0px rgba(128,128,128,0.27) inset;
-webkit-box-shadow: 1px 1px 10px 0px rgba(128,128,128,0.27) inset;
-moz-box-shadow: 1px 1px 10px 0px rgba(128,128,128,0.27) inset;
    }

 
    .wheel {
      display: block;
  justify-content: center;
        margin:auto;
      background: linear-gradient(white, white) padding-box, linear-gradient(to top, white, #A2A2A2) border-box;
  border-radius: 50em;
  border: 2px solid transparent;
      padding-top:0px;
      box-shadow: 1px 1px 10px 0px rgba(128,128,128,0.27) inset;
-webkit-box-shadow: 1px 1px 10px 0px rgba(128,128,128,0.27) inset;
-moz-box-shadow: 1px 1px 10px 0px rgba(128,128,128,0.27) inset;
    }

.innerwheel {
  border-radius: 50em;
  border: 2px solid #E2E2E2;
  
      padding:9px;
  padding-left:10px;
  padding-right:12px;
  margin:0;
  box-shadow: 1px 1px 10px 0px rgba(128,128,128,0.17) inset;
-webkit-box-shadow: 1px 1px 10px 0px rgba(128,128,128,0.17) inset;
-moz-box-shadow: 1px 1px 10px 0px rgba(128,128,128,0.17) inset;
  
}
th{
  width:20px;
 
  margin:0;
}
.fas fa-minus{
  margin: 0;
  padding-bottom:5px;
}

 
    .wheelcontrols {
        font-size:14px; /* size of controls */
        text-align:center;
        padding-top:2px;
color: #aaa;
    opacity: 0.8;
    }

.wheelcontrols button {
    background: none;
    border: none;
    color: #aaa;
    opacity: 0.6;
    font-size: 14px;
    padding: 2px;
    cursor: pointer;
}
.wheelcontrols button:hover {
  opacity: 1;
}

.controls button:hover {
   opacity: 1;
  
}

.playpause-track button{
  display:block;
  color:#C1C1C1;
  font-size: 20px;
  margin:auto;
}

.playpause-track {
    font-size: 22px !important;
    padding: 3px;
}
 
    .songtitle {
        padding:25px; /* padding around song title */
        color:#A3A3A3;
      padding-bottom:0;
      margin-left:15px;
      margin-right:20px;
        font-size: 20px;
        display:block;
        font-family:Myriad Pro;
    }
 
    .controls button{
      display:block;
      
      margin-left:15px;
        font-size:14px; /* size of controls */
        text-align:center;
        color:#ccb3be;
      opacity:0.6
        
    } 
 
    button {
      min-width:20px;
      background:none;
      
      text-align:center;
    }
button:active {
    opacity: 0.7;
}

 
    .seeking {
        display:flex;
        justify-content: space-evenly;
        padding:10px; /* padding around seeking bar */
      padding-left:0;
      padding-bottom:0px;
      color:#A3A3A3;
    }
 
    .current-time {
        padding-right:5px;
    }
 
    .total-duration {
        padding-left:5px;
    }
    
/* Music Player End */

/* =========================== RIGHT Content =========================== */
.todo-scroll {
  margin: 50px 15px 0 10px; /* Top, Right, Bottom, Left */
  width: 170px;
  height: 120px;
  overflow-y: auto;
  box-sizing: border-box; 
  line-height: 2.2; 
  font-size: 12px;
  font-weight: 600;
  scrollbar-color: #d18f9e #f0d2d7;
}

  
.todo {
  background-image: url('Photos/Notes.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;  
  height: 100%;
}


/* =========================== ABOUT ME SECTION =========================== */
#about-grid { 
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto;
  width: 100%;
  margin: 0 auto;
  min-height: 80vh;
}

.box-style {
  border: red;
  border-style: dotted;
  border-width: 5px;
    background: #ffe5e8;
    padding: 15px;
    position: relative;
    overflow: hidden;
}

.box-style:first-child {
  border: blue;
  border-style: dotted;
  border-width: 5px;
    display: flex;
    flex-direction: row;
    padding: 15px;
}

#about-aside {
  grid-column: 1;
  grid-row: 1;
  position: sticky;
  top: 10px;
  align-self: flex-start;
  width: 100%;
}

#about-picture {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

#about-likes {
  margin-bottom: 10px;  
  height: 200px;
}

#about-dislikes {
  height: 200px;
}

#about-body {
  grid-column: 2; 
  grid-row: 1;
  border: 3px ridge var(--dk-color);
  animation: scroll 60s linear infinite;
  background-image: url("Photos/bg.png");
  padding: 10px;
  min-width: 0;
}

.box-styling {
border-width:8px;
border-style:solid;
border-image: url("Photos/border2.png") 7 fill round;
margin-bottom:8px;
} 





/* =========================== MOBILE RESPONSIVENESS =========================== */
@media screen and (max-width: 800px) {
.outer-border {
    width: 95%; 
    padding: 2px;
}

/* Stack the 3-column layout into 1 column */
.grid-container {
    grid-template-columns: 1fr; 
}

/* Adjust navigation for small screens */
.nav-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 buttons per row instead of 5 */
    max-width: 100%;
    gap: 5px;
}

/* Reset borders so they don't look weird when stacked */
.box:first-child, .box:last-child {
    border-left: 1px solid #746262;
    border-right: 1px solid #746262;
    border-bottom: 1px solid #746262;
}

/* Center the profile image container on mobile */
.border1 {
    margin: 10px auto;
  }
}