/* Fonts and Root */
@import url('https://saucyfiles.neocities.org/fonts/stylesheet.css');

:root{
    --linen: #ffeddf;
    --rose: #febbc7;
    --rasin: #884b59;
    --tea: #d0e3b4;
    --grape: #c9c; /* #dea3c1 (old hex)*/
    --peach: #ffd1bc;
    --salmon: #ff91a9;
    --sunlight: #fffcdd;
    --nearwhite: #FFFAF8;
    --spacing: 5px;
    --border: 2px solid var(--rose);
    --dashed: 2px dashed var(--rose);
    --shadow: 1px 1px #884b59;
    --text: var(--salmon);
    --bolder: robaga_rounded_blackregular;
    --bold: robaga_roundedbold;
    --regular: robaga_roundedregular;
    --thin: robaga_rounded_thinregular;
/* old --bolder: fabrikat_monoblack;
    --bold: fabrikat_monobold;
    --regular: fabrikat_monoregular;
    --thin: fabrikat_monolight; */
}

/* Container and Flex */
#container{
    max-width: 800px;
    margin: 0 auto;
}

#flex{
    display: flex;
}

/* Hyperlinks and Cursor */
a{
    cursor: url('https://saucyfiles.neocities.org/cursors/trans/Trans-link.cur'), pointer;
    color: var(--tea);
    text-shadow: 1px 1px #d9b6b6;
}

a:hover{
    color: var(--peach);
}

/* Top Banner */
#banner{
    padding: 0px;
    border-bottom: 0;
  /*  background-image: url('https://saucyfiles.neocities.org/img/bgs/pinkcottoncandy.jpg');
    background-repeat: repeat;
    background-size: 300px;
    background-position: 30px; */
}
.sun{
    float: right;
}

/* Navigation Bar */
#navbar{
    margin-bottom: var(--spacing);
    border-top:0;
    position: sticky;
    top: 0;
    font-family: var(--bolder);
    background-image: url('https://saucyfiles.neocities.org/img/frames/titlegradient-big.gif');
    background-repeat: repeat-y;
    background-size: 100%;
/*old background-image: url('https://saucyfiles.neocities.org/img/bgs/pinkcottoncandy.jpg');
    background-repeat: repeat;
    background-size: 300px;
    background-position: bottom; */
}

#navbar ul{
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: space-evenly;
    position: relative;
}
#navbar li{
    display: inline;
    border: 2px solid var(--linen);
    border-top: 0px;
    border-bottom: 0px;
    margin: 1px;
}
#navbar li a{
    padding: 5px 24px;
    text-align: center;
    text-decoration: none;
    color: var(--linen);
    text-shadow: 1px 1px var(--rose);
    font-size: 18pt;
}
#navbar li:hover{
    background-color: var(--rose);
}

/* Main Content */
main{
    flex: 75%;
    margin: 0;
}
.content{
    border: var(--dashed);
    background-image: url('https://saucyfiles.neocities.org/img/bgs/creamcanvas.gif');
    text-align: center;
    margin-bottom: var(--spacing);
    border-top: 0;
}
.title{
    background-image: url('https://saucyfiles.neocities.org/img/frames/titlegradient.gif');
    background-repeat: repeat-y;
    background-size: 100%;
    text-align: center;
    border-bottom: 0;
    height: 32px;
    color: var(--linen);
    text-shadow: 1px 1px var(--rose);
    font-family: 'var(--bold)';
}
/* Body */
body{
    font-family: var(--body);
    font-size: 14pt;
    background-image: url('https://saucyfiles.neocities.org/img/bgs/pinkcloudbg.gif');
    background-color:#f9cde6;
    background-attachment: fixed;
    background-position: bottom;
    margin: 0px;
    padding: 0px;
    cursor: url('https://saucyfiles.neocities.org/cursors/trans/Trans-normal.cur'), default;
    color: var(--grape);
}

#talk{
    background-color: rgba(204, 153, 204,.2);
    background-image: none;
    border: var(--dashed);
}

/* Body Font Settings */
h1{
    margin: 0;
    padding: 0;
    font-size: x-large;
    color: var(--linen);
    font-family: var(--bolder);
}
h2, h3{
    margin: 0;
    padding: 0;
    font-size: x-large;
    color: #dea3c1;
    font-family: var(--bold);
}
.center{
    text-align: center;
}
p{
    margin: 0px 5px;
    padding: 5px;
    text-align: left;
    font-family: var(--regular);
}
/* Aside */
aside{
    flex: 25%;
    background-size: 200px;
    text-align: center;
    height: auto;
    padding: 0;
    margin-left: var(--spacing);
    margin-bottom: var(--spacing);
    font-size: medium;
    order: 1;
    font-family: var(--regular);
    z-index: -1;
}
.box {
    background-color: rgba(204, 153, 204,.5);
    border: var(--dashed);
    padding: 5px;
    color: var(--linen);
    border-right: 0;
    border-left: 0;
    margin-top: 0px;
    margin-bottom: 10px;
}
.sideh1{
    font-size: x-large; 
    border-bottom: var(--border);
}
.sideh2{
    margin-top: 5px; 
    font-size: larger;
}

.sticky{
    position: sticky;
    top: 35px;
}
.cat{
    position: absolute;
    max-height: 200px;
    z-index: 2;
    right: 35px;
}
.cloud{
    max-height: 175px;
    position: absolute;
    right: 0px;
    bottom: 50px;
    margin: 0;
    z-index: -10;
}
/* Button */
button{
    background-color: var(--salmon) ;
    border: none;
    color: var(--linen);
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 10%;
}
button:hover{
    background-color: #febbc7;
    cursor: url('https://saucyfiles.neocities.org/cursors/trans/Trans-link.cur'), pointer;
}
/* Table */
td{
    margin: 5px auto;
}
/* Footer */
footer{
    height: 32px;
    font-size: 24px;
    padding: 0px;
/*old  background-image: url('https://saucyfiles.neocities.org/img/bgs/pinkcottoncandy.jpg');
    background-repeat: repeat;
    background-size: 200px; */
    text-align: center;
    bottom: 0;
    position: relative;
    width: auto;
    text-shadow: 2px 2px var(--salmon);
    color: var(--linen);
    font-family: var(--bold);
}

/* Responsive Scaling*/
@media screen and (max-width:700px) {
    #flex{
        flex-wrap: wrap;
    }
    #banner, img, #navbar, main, footer, aside{
        max-width: 100%;
        height: auto;
        margin: 0px;
    }
    #navbar li a{
        padding: 2px 5px;
    }
    #navbar{
        margin-bottom: var(--spacing);
    }
}
@media screen and (max-width: 560px) {
    .sun{
        display: none;
    }
   /* #navbar{
        background-color: var(--rose) ;
        background-image: none;
    } */
}

/* Sakura */  
#sakura-bg {
     content: '';
     display: block;
     position: absolute;
     z-index: 2;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     pointer-events: none;
     background-image: url('https://web.archive.org/web/20200117143131/http://www.mcctours.com.my/wp-content/uploads/2018/01/sakura-1-1.png'), url('https://web.archive.org/web/20200118095723/https://www.mcctours.com.my/wp-content/uploads/2018/01/sakura-2.png');
      animation: snow 20s linear infinite;
  }

  #sakura-btn{
    background: url('https://saucyfiles.neocities.org/img/icons/sakura.gif');
    background-size: 30px;
    background-repeat: none;
    padding: 0;
    margin: 0;
    height: 25px;
    width: 25px;
    position: absolute;
    right: 5px;
  }
  #sakura-btn:hover{
    background: url('https://saucyfiles.neocities.org/img/icons/sakura2.gif');
    background-size: 30px;
    background-repeat: none;
    padding: 0;
    margin: 0;
    height: 25px;
    width: 25px;
  }
  
  @keyframes snow {
   0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
   50% {background-position: 500px 500px, 100px 200px, -100px 150px;}
   100% {background-position: 500px 1000px, 200px 400px, -100px 300px;}
  }
  
  @media (max-width: 768px) {
      .woocommerce ul.products li.product, 
      .woocommerce-page ul.products li.product, 
      .woocommerce-page[class*=columns-] ul.products li.product,
      .woocommerce[class*=columns-] ul.products li.product {
          width: 100%;
          float: left;
          clear: both;
          margin: 0 7em;
      }
  }

  /* Map */
#map{
    background-image: url('https://saucyfiles.neocities.org/img/pixels/map.gif');
    background-size: cover;
    height: 750px;
    position: relative;
    overflow: hidden;
}
.excavator{
    position: absolute;
    bottom: 75px;
    left: 100px;
    height: 150px;
    z-index: 3;
}
.dozer{
    position: absolute;
    bottom: 130px;
    right: 75px;
}
.dirt{
    position:absolute;
    bottom: 50px;
    left: 215px;
    z-index: 4;
}
.smoke{
    position: absolute;
    left: -50px;
    top: -26px;
    overflow: hidden;
}
.fountain{
    position: absolute;
    height: 75px;
    left: 350px;
    top: 100px;
    z-index: 100;
}
.construction{
    position: absolute;
    height: 100px;
    left: 250px;
    bottom: 150px;
    z-index: 0;
}
.cafe{
    position: absolute;
    height: 225px;
    top: 145px;
    left: 0px;
}
.computer{
    position:absolute;
    height: 155px;
    left: 328px;
    top:265px;
}
