 /*
Demo Only — Not for Use
This is a preview of a paid HTML/CSS layout by Itinerae.
Please do not copy or reuse any code from this demo.
Buy this layout: ko-fi.com/itinerae/shop
*/
    
:root{
  
  /* base font */
  --base-font: Georgia, "Times New Roman", serif;
  --base-font-size: 11px;
  --base-line-height: 1.4;
  --base-letter-spacing: 1px;

  /* text colors */
  --text: #695c5c;
  --muted: #938384;
  --link: #d48c9e;
  --link-hover: #7f6d6f;

  /* backgrounds */
  
  --body-bg: url(https://shye.nekoweb.org/premium/13/rose.webp) fixed;
  --paper: #fff8f9;
  --panel: #fffafb;
  --panel-soft: #f9eef0;
  --panel-pink: #fcf5f6;
  --panel-white: #fff8f9;
  --panel-header: #f7ecee;
  --label-bg: #f1e1e4;

  /* borders */
  --border: #e4d4d8;
  --border-soft: #eedfe2;

  /* layout sizes */
  --page-max-width: 1000px;
  --sidebar-width: 200px;
  --hero-min-height: 200px;
  --gap: 8px;
  --radius: 6px;
  --page-radius: 10px;
  --box-radius: 5px;

  /* effects */
  --shadow: 0 3px 10px rgba(109,88,93,.035);
}


/* basics */
    
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;}

html,
body{
  height: 100%;}

body{
  font-family: var(--base-font);
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
  letter-spacing: var(--base-letter-spacing);
  color: var(--text);
  background: var(--body-bg);
  padding: 10px;
  overflow-x: hidden;}

body::before{
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0,0,0,.02),
    rgba(0,0,0,.04) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
  z-index: 1000;}
    
    
/* links */
a{
  color: var(--link);
  text-decoration: none;
  transition: .15s ease;}

a:hover{
  color: var(--link-hover);}

button,
input,
textarea{
  font: inherit;
  letter-spacing: inherit;
  color: inherit;}

img{
  max-width: 100%;}

.page,
.layout,
.column,
.box,
.box-body,
.box-head{
  min-width: 0;}
  
  
    
/* scrollbar */
::-webkit-scrollbar{
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track{
  background: #f7ecee;
  border-left: 1px solid #ead9dd;
}

::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, #e6cfd3, #d6b7be);
  border: 1px solid #cfaeb6;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover{
  background: linear-gradient(180deg, #dcc0c7, #cfaab3);
}

::-webkit-scrollbar-corner{
  background: #f7ecee;
}


/* layout */
.page{
  position: relative;
  max-width: var(--page-max-width);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--page-radius);
  box-shadow: var(--shadow);
  background:
    linear-gradient(rgba(255,255,255,.34), rgba(255,255,255,.34)),
    var(--paper);
}

.page::after{
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(130,108,113,.06);
  border-radius: 5px;
  pointer-events: none;
}

.layout{
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr) var(--sidebar-width);
  gap: var(--gap);
  padding: var(--gap);
}

.column{
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
    
    
    

/* banner + site name + subtitle + navi + rightside icons */
.banner{
  position: relative;
  overflow: hidden;
  min-height: var(--hero-min-height);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #e8d6da 0%, #f1e3e5 28%, #f6edef 62%, #fdf8f8 100%);
}

.banner::before{
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,250,251,.22);
  border-radius: 7px;
  pointer-events: none;
}

.banner::after{
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  pointer-events: none;
  background: url(https://shye.nekoweb.org/premium/13/banner.jpg) top no-repeat;
  background-size: cover;
}

.banner-inner{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--hero-min-height);
  padding: 18px 14px 14px;
  text-align: center;
}

.site-title{
  position: relative;
  width: fit-content;
  border-radius: 999px;
  font-family:'Homemade Apple', georgia, cursive, times;
  font-size: 32px;
  font-style: italic;
  letter-spacing: 1px;
  color: #fffafa;
  text-shadow:
    0 1px 0 rgba(120,88,96,.20),
    0 2px 5px rgba(104,78,84,.28);
}

.site-subtitle{
  display: inline-block;
  width: fit-content;
  padding: 5px 12px 4px;
  border: 1px dashed rgba(255,250,251,.95);
  border-radius: 999px;
  background: rgba(248,233,236,.72);
  box-shadow: 0 0 0 1px rgba(232,214,219,.35) inset;
  color: #765f64;
  font-size: 10px;
  font-style: italic;
  letter-spacing: 1.4px;
  text-transform: lowercase;
}

.banner-navi{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: 2px;
  padding: 6px 8px;
  border: 1px solid rgba(255,249,250,.32);
  border-radius: 999px;
  background: rgba(255,247,248,.22);
  box-shadow: 0 0 0 1px rgba(235,218,222,.18) inset;
}

.banner-navi a{
  position: relative;
  padding: 5px 12px 3px;
  border: 1px solid rgba(224,204,209,.9);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,252,252,.96), rgba(250,239,242,.92));
  box-shadow:
    0 1px 0 rgba(255,255,255,.75) inset,
    0 0 0 1px rgba(243,229,232,.55);
  font-style: italic;
  color: #7c696d;
  letter-spacing: 1.2px;
}

.banner-navi a:hover{
  transform: translateY(-1px);
  color: #715d61;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(252,242,244,.96));
  box-shadow:
    0 1px 0 rgba(255,255,255,.8) inset,
    0 2px 8px rgba(143,111,118,.08);
}

.banner-rightside{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  gap: 11px;
  padding: 3px 7px;
  border: 1px solid rgba(224,204,209,.9);
  border-radius: 999px;
  background: rgba(255,247,248,.8);
  box-shadow: 0 0 0 1px rgba(235,218,222,.18) inset;
}

.banner-rightside a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: .7;
}

.banner-rightside a:hover{
  opacity: 1;
  transform: translateY(-1px);
}

.banner-rightside img{
  display: block;
}
    
    
    

/* re-usable boxes and titles */
.box{
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--box-radius);
  background: var(--panel);
}

.box::after{
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px dotted rgba(120,100,100,.06);
  border-radius: 2px;
  pointer-events: none;
}

.box-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 9px;
  border-bottom: 1px solid var(--border-soft);
  background: var(--panel-header);
}

.box-body{
  padding: 9px;
}

.box-title{
  margin: 0;
  font-size: 12px;
  font-style: italic;
  font-weight: normal;
  color: #746668;
  text-transform: lowercase;
}

.head-dots{
  display: flex;
  align-items: center;
  gap: 4px;
}

.head-dots span{
  width: 8px;
  height: 8px;
  border: 1px solid rgba(128,108,113,.09);
  border-radius: 999px;
  background: #fff8f9;
}

.box-soft .box-body{
  background: var(--panel-soft);
  color: #837371;
  font-style: italic;
}

.soft{
  color: var(--muted);
}

.quote{
  padding: 9px;
  border: 1px dashed #dccdd1;
  border-radius: 4px;
  background: var(--panel-pink);
  color: #846f73;
  font-style: italic;
}

.update-log{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.note{
  padding: 7px 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-pink);
  color: var(--muted);
  font-style: italic;
}

.mini-box{
  padding: 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-pink);
}

.mini-title{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
  padding: 4px 10px 1px;
  border-radius: 999px;
  background: var(--label-bg);
  color: #846f73;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mini-title img{
  width: 12px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}
    
    
/* site info */

.site-info{
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: rgba(255,248,249,.45);
}

.site-info-row{
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 7px 8px;
  border-bottom: 1px dashed #dccdd1;
}

.site-info-row:last-child{
  border-bottom: none;
}

.site-info-label{
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
  color: #7b666a;
  font-style: italic;
}

.site-info-label img{
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  object-fit: contain;
  opacity: .75;
}

.site-info-label b{
  font-size: 10px;
  letter-spacing: 1px;
  color: #7a6267;
}

.site-info-value{
  padding-left: 16px;
  line-height: 1.3;
  color: var(--muted);
  font-style: italic;
}

.site-info-value a{
  color: inherit;
  border-bottom: 1px dotted #cdb9be;
}

.site-info-value a:hover{
  color: #7a6469;
}

    
    
    
/* LEFT SIDEBAR things */
    
.profile-photo{
  width: 100%;
  margin-bottom: 8px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-white);
}

.profile-photo img{
  display: block;
  width: 100%;
  height: auto;
}
    
/* social media links */

.socials{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.socials a{
  display: flex;
  justify-content: space-between;
  gap: 6px;
  padding: 7px 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-pink);
  font-style: italic;
}

.social-name{
  color: var(--text);
}

.social-user{
  color: var(--link);
}
    
/* calendar, the script is bottom of the html page */    

.calendar{
  padding: 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-pink);
}

.calendarTop{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 8px;
}

.calendarTop button{
  width: 22px;
  height: 22px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: var(--panel-white);
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
}

.calendarTop button:hover{
  background: #fff;
}

#calMonth{
  font-style: italic;
  color: #7a676a;
}

.calendarWeekdays,
.calendarDays{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendarWeekdays{
  margin-bottom: 4px;
}

.calendarWeekdays span{
  text-align: center;
  font-size: 9px;
  color: var(--muted);
  text-transform: lowercase;
}

.calendarDays span{
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-white);
  font-size: 10px;
  color: var(--text);
}

.calendarDays .empty{
  border: none;
  background: transparent;
}

.calendarDays .today{
  border: 1px solid #d8bcc3;
  background: var(--label-bg);
  color: #7a5e64;
  font-weight: 700;
}
    
    
/* now playing */    

.music-widget{
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: linear-gradient(180deg, #f7edef, #fcf6f7);
}

.music-cd{
  display: block;
  width: 32px;
  height: 32px;
  padding: 3px;
  border: 1px solid var(--border-soft);
  background: var(--panel-white);
  border-radius:999px;
}

.music-cd img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.music-info{
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.music-song{
  line-height: 1;
  color: #5f4f53;
}


.music-link{
  display: block;
  margin-top: 0;
  padding-top: 4px;
  border-top: 1px dashed #dac8cd;
  font-size: 10px;
  font-style: italic;
  letter-spacing: 1px;
  text-transform: lowercase;
  color: #8a7478;
}

.music-link:hover{
  padding-left: 3px;
  color: #6f5b5f;
}

    
    
    
/* Main section (center) stylings */
    
    
.icon-float-left{
  float: left;
  margin-right: 5px;
  opacity: .6;
}    
    
    
.feature{
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 8px;
  align-items: stretch;
}

.feature-image{
  min-height: 110px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-white);
}

.feature-image img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}

.feature-text{
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 110px;
  padding: 9px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: #fdf8f9;
}

.feature-text b{
  font-style: italic;
}
    
/* lists */

.three-lists{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 7px;
}

.mini-box ul{
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}

.mini-box li{
  padding: 7px 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-white);
  color: var(--muted);
  font-style: italic;
  line-height: 1.35;
}

    
    
    
/* journal entries */
   
.entries{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.entry{
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 8px;
  align-items: start;
  padding: 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-pink);
}

.entry-pen{
  opacity: .7;
}   
    
.entry-date{
  padding: 8px 6px;
  border: 1px dashed #d9c8cc;
  border-radius: 4px;
  background: var(--panel-white);
  text-align: center;
  font-style: italic;
  line-height: 1.35;
}

.entry-date b{
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
}

.entry-text{
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.entry-text b{
  font-style: italic;
  font-weight: 700;
}

.entry-subtitle{
  color: var(--muted);
  font-style: italic;
}
    
    
/* polaroid gallery */

.gallery{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 10px 8px 14px;
}

.polaroid{
  width: 120px;
  margin: 6px;
  padding: 7px 7px 13px;
  border: 1px solid #eadde0;
  border-radius: 3px;
  background: #fffdfd;
  box-shadow: 0 4px 12px rgba(109,88,93,.06);
  text-align: center;
}

.polaroid:nth-child(1){
  transform: rotate(-3deg);
}

.polaroid:nth-child(2){
  transform: rotate(2deg);
}

.polaroid:nth-child(3){
  transform: rotate(-1deg);
}

.polaroid img{
  display: block;
  width: 100%;
  height: 88px;
  margin-bottom: 7px;
  border: 1px solid var(--border-soft);
  object-fit: cover;
  background: #f7eef0;
}

.polaroid figcaption{
  font-size: 10px;
  line-height: 1.2;
  font-style: italic;
  color: #8a7a7c;
}
    
    
    
    

/* RIGHT SIDEBAR things */

.palette{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.colour{
  width: 30px;
  height: 30px;
  border: 1px solid rgba(110,92,92,.08);
  border-radius: 6px;
}
    
    
/* currently */

.current{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 9px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-pink);
}

.row-left{
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  font-style: italic;
}

.row-left img{
  display: block;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  object-fit: cover;
  border-radius: 3px;
}

.row-value{
  white-space: nowrap;
  line-height: 1;
  font-style: italic;
  color: var(--muted);
}
    
    
    
/* button wall */

.button-wall-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.button-wall{
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 3px 5px 4px 3px;
  border: 1px dashed #ddd;
  border-radius: 4px;
  background: #fff;
}

.button-wall img{
  display: block;
  width: 100%;
  max-width: 88px;
  height: auto;
  image-rendering: auto;
  opacity: 0.5;
}
    
    
/* update log */

.updatez{
  display: block;
  margin-top: 4px;
  padding-top: 4px;
  border-bottom: 1px dashed #dac8cd;
  color: #8a7478;
  font-size: 10px;
  letter-spacing: 1px;
}

.note .updatez:last-child{
  border-bottom: none;
}
    
    
/* link me */

.link-me{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.link-button img{
  display: block;
  width: 88px;
  height: 31px;
}


.link-me textarea{
  width: 100%;
  height: 70px;
  resize: none;
  padding: 7px;
  border: 1px dashed #dccdd1;
  border-radius: 4px;
  background: var(--panel-white);
  font-family: monospace;
  font-size: 10px;
  line-height: 1.5;
  color: #6f5e62;
}
    
    
    

/* Footer + Credits */
.footer{
  position: relative;
  z-index: 1;
  padding: 12px 14px 14px;
  border-top: 1px solid var(--border);
  background: rgba(247,236,238,.7);
  text-align: center;
}

.footer-inner{
  padding: 8px 10px;
  border: 1px dashed #dccdd1;
  border-radius: 4px;
  background: rgba(255,248,249,.75);
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
}
    
    
    

/* RESPONSIVENESS */
    
    
@media (max-width:980px){
  .layout{
    grid-template-columns: 1fr;
  }
  
  
  
  
  /* 
   Change order numbers to rearrange layout on mobile.
   Smaller number = appears higher on the page.
   
   To hide a section on mobile, use:
   
   display:none;

   example:
   .sidebar-right{ display:none; }
*/




  .main-content{
    order: 1;
  }

  .sidebar-left{
    order: 2;
  }

  .sidebar-right{
    order: 3;
  }

  .site-title{
    padding: 8px 16px 10px;
    font-size: 30px;
  }

  .banner,
  .banner-inner{
    min-height: 260px;
  }

  .banner-rightside{
    display: none;
  }

  .feature,
  .three-lists,
  .entry{
    grid-template-columns: 1fr;
  }

  .banner-navi{
    padding: 7px;
  }
}