/*--Fonts--*/

@font-face {
    font-family: Press;
    src: url(Fonts/PressStart2P-Regular.ttf);
}

@font-face {
    font-family: Bubbly;
    src: url(Fonts/Bubbly-Regular.otf);
}

/*-header--*/

.header-title {
    font-family: 'Bubbly';
    font-size: 25px;
    text-align: center;
    color: #bb745d;
    margin-bottom: 0px;
}

/*--visitor counter--*/

.visitor-counter {
  text-align: center;
  font-family: 'Bubbly';
  font-size: 20px;
  margin: -10px;
}

/*--everything--*/

html {
    cursor: url('Cursors/bunnydotcloud.gif'), auto;
}

body {
    margin: 0;
    height: 200vh;
}

.page-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    margin-right: 7.7%;
}


/*--Left/Nav Bar--*/

@keyframes softGlow {
    0% {box-shadow: 0 0 25px rgba(134, 68, 78, 0.5); }
    50% {box-shadow: 0 0 45px rgba(255, 182, 193, 0.9); }
    100% {box-shadow: 0 0 25px rgba(134, 68, 78, 0.5); }
}

.side-bar-left {
    animation: softGlow 4s ease-in-out infinite;
    border: 1px solid rgb(174, 107, 107);
    box-shadow: 0 0 35px rgba(109, 55, 63, 0.7);
    background-image: linear-gradient(rgba(255, 234, 243, 0.8), rgba(255, 234, 243, 0.8)), url('Backgrounds/clovertile.png');
    background-repeat: repeat;
    background-size: 64px 64px;
    position: relative;
    height: auto;
    width: 180px;
    padding: 10px;
    box-sizing: border-box;
    align-items: center;
    overflow: visible;
    top: 3%;
}

.nav-header {
    font-family: 'Bubbly';
    font-size: 30px;
    margin-left: 20;
    margin-top: 0px;
    margin-bottom: 5px;
    color: #bb745d;
    text-align: center;
}

.home-button-link {
    position: relative;
    display: inline-block;
    transition: transform 0.2s ease;
}

.home-button-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 240, 245, 0);
    transition: background 0.3s ease;
    border-radius: 12px;
}

.home-button-link:hover::after {
    background: rgba(255, 240, 245, 0.4);
}

.home-button-link:hover {
    transform: scale(1.05);
}

.home-button {
    width: 75px;
    image-rendering: pixelated;
    position: relative;
    display: block;
}

.about-button {
    width: 75px;
    image-rendering: pixelated;
    position: relative;
    display: block;
}

.about-button-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 240, 245, 0);
    transition: background 0.3s ease;
    border-radius: 12px;
}

.about-button-wrapper:hover::after {
    background: rgba(255, 240, 245, 0.4);
}

.about-button-wrapper:hover {
    transform: scale(1.05);
}

/*--Dropdown Menus--*/
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 234, 243, 0.9);
    border: 1px solid #bb745d;
    border-radius: 12px;
    padding: 5px;
    z-index: 10;
    flex-direction: column;
    align-items: center;
}

.dropdown-content a {
    display: block;
    margin: 5px 0;
    position: relative;
    display: inline-block;
}

.dropdown-content img {
    width: 70px;
    image-rendering: pixelated;
    transition: transform 0.2s ease;
    display: block;
    border-radius: 12px;
}

.dropdown-content img:hover {
    transform: scale(1.05);
}
.dropdown:hover .dropdown-content {
    display: flex;
}

.dropdown-content a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 240, 245, 0);
    transition: background 0.3s ease;
    border-radius: 12px;
}

.dropdown-content a:hover::after {
    background: rgba(255, 240, 245, 0.4);

}

.dropdown-content a:hover img {
    transform: scale(1.05);
}

.portfolio-button {
    width: 75px;
    image-rendering: pixelated;
    position: relative;
    display: block;
    transition: transform 0.2s ease;
}

.portfolio-button-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 240, 245, 0);
    transition: background 0.3s ease;
    border-radius: 12px;
}

.portfolio-button-wrapper:hover::after {
    background: rgba(255, 240, 245, 0.4);
}

.portfolio-button-wrapper:hover {
    transform: scale(1.05);
}

.brewing-button {
    width: 75px;
    image-rendering: pixelated;
    position: relative;
    display: block;
    transition: transform 0.2s ease;
}

.brewing-button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 240, 245, 0);
    transition: background 0.3s ease;
    border-radius: 12px;
}

.brewing-button:hover::after {
    background: rgba(255, 240, 245, 0.4);
}

.brewing-button:hover {
    transform: scale(1.05);
}

.links-button {
    width: 75px;
    image-rendering: pixelated;
    position: relative;
    display: block;
    transition: transform 0.2s ease;
}

.links-button-link {
    position: relative;
    display: inline-block;
    transition: transform 0.2s ease;
}

.links-button-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 240, 245, 0);
    transition: background 0.3s ease;
    border-radius: 12px;
}

.links-button-link:hover::after {
    background: rgba(255, 240, 245, 0.4);
}

.links-button-link:hover {
    transition: scale(1.05);
}

.guestbook-button {
    width: 75px;
    image-rendering: pixelated;
    position: relative;
    display: block;
    transition: transform 0.2s ease;
}

.guestbook-button-link {
    position: relative;
    display: inline-block;
    transition: transform 0.2s ease;
}

.guestbook-button-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 240, 245, 0);
    transition: background 0.3s ease;
    border-radius: 12px;
}

.guestbook-button-link:hover::after {
    background: rgba(255, 240, 245, 0.4);
}

.guestbook-button-link:hover {
    transform: scale(1.05);
}

/*--Bunnies--*/

.bunnies {
    position: absolute;
    bottom: 96%;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    pointer-events: none;
    z-index: 999;
}

.journal-button {
    width: 75px;
    image-rendering: pixelated;
    position: relative;
    display: block;
    transition: transform 0.2s ease;
}

.journal-button-link {
    position: relative;
    display: inline-block;
    transition: transform 0.2s ease;
}

.journal-button-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 240, 245, 0);
    transition: background 0.3s ease;
    border-radius: 12px;
}

.journal-button-link:hover::after {
    background: rgba(255, 240, 245, 0.4);
}

.journal-button-link:hover {
    transform: scale(1.05);
}

/*pixel divider*/

.pixel-divider {
    width: 100%;
    height: 25.5px;
    background: url("Pixel Dividers/pinkheartsparkle.gif") repeat-x left;
    background-size: auto 56%;
    image-rendering: pixelated;
}

/*--Status--*/

#statuscafe {
    padding: 0px !important;
    font-family: 'Bubbly';
    color: #bb745d;
    top: 5px;
}

#statuscafe-username {
    margin-bottom: .5em;
    font-size: 23px;
    text-align: center !important;
}

#statuscafe-username a {
  color: #bb745d;
}

#statuscafe-username a:hover {
  color: #e0a693;
}

#statuscafe-content {
    text-align: center !important;
    color: black;
    font-family: 'Press';
    font-size: 10px;
    line-height: 11px;
}

/*--Main Content--*/

.main-content {
    display: block;
    animation: softGlow 4s ease-in-out infinite;
    border: 1px solid rgb(174, 107, 107);
    box-shadow: 0 0 35px rgba(109, 55, 63, 0.7);
    background-image: linear-gradient(rgba(255, 234, 243, 0.8), rgba(255, 234, 243, 0.8)), url('Backgrounds/clovertile.png');
    background-repeat: repeat;
    background-size: 64px 64px;
    position: relative;
    left: 4%;
    min-height: 100vh;
    height: auto;
    width: 650px;
    padding-top: 0;
    padding-left: 2%;
    padding-right: 2%;
    margin-top: 0;
    box-sizing: border-box;
    align-items: center;
    overflow: visible;
    top: 3.1%
}

.entry {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.entry-header {
    font-size: 25px;
    color: #bb745d;
    font-family: 'Bubbly';
    text-align: center;
    margin-top: 15px;
    margin-bottom: 3px;
}

.entry-date {
    font-family: 'Press';
    font-size: 10px;
    margin: 1%;
}

.entry-text {
    font-family: 'Press';
    line-height: 120%;
    font-size: 65%;
}

/*right side bar*/

.side-bar-right {
    animation: softGlow 4s ease-in-out infinite;
    border: 1px solid rgb(174, 107, 107);
    box-shadow: 0 0 35px rgba(109, 55, 63, 0.7);
    background-image: linear-gradient(rgba(255, 234, 243, 0.8), rgba(255, 234, 243, 0.8)), url('Backgrounds/clovertile.png');
    background-repeat: repeat;
    background-size: 64px 64px;
    position: relative;
    left: 7.9%;
    height: auto;
    width: 180px;
    padding: 10px;
    box-sizing: border-box;
    align-items: center;
    top: 3.1%;
}

.bunnies-2 {
    position: absolute;
    bottom: 94%;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    pointer-events: none;
    z-index: 999;
}

.reminder-header {
    font-size: 25px;
    color: #bb745d;
    font-family: 'Bubbly';
    margin-top: 0%;
    margin-bottom: 0%;
    text-align: center;
}

.reminder {
    font-family: 'Press';
    padding: 0;
    text-align: center;
    line-height: 120%;
    font-size: 65%;
}

.pixel-divider-content {
  width: 100%;
  height: 24.9px; /* match your gif’s natural height */
  background: url("Pixel Dividers/pinkheartsparkle.gif") repeat-x left;
  background-size: auto 57%;
  image-rendering: pixelated;
}

.mybutton-header {
    font-size: 25px;
    color: #bb745d;
    font-family: 'Bubbly';
    margin-top: 0%;
    margin-bottom: 0%;
    text-align: center;  
}

.mybuttonlink {
  display: block;
  text-align: center;
}

.mybutton {
  width: 88px;
  height: 31px;
}