@import url('https://fonts.googleapis.com/css2?family=Emilys+Candy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mansalva&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Schoolbell&display=swap');

html {
  cursor: url(https://lettyverse.neocities.org/cafe-reviews/cursor.png), pointer;
}
  
.titleimage img {
  position: absolute;
  left: 360px;
  top: 170px;
  width: 700px;
  height: auto;
}

aside {
  width: 310px;
  height: 300vh;
  margin-top: 0px;
  margin-left: 0px;
}

.grid {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
  flex-wrap: wrap;
  margin-left: 0px;
  margin-top: 0px;
}

.grid-item {
  background-image: url(https://lettyverse.neocities.org/cafe-reviews/aside.png);
  background-size: 310px;
  width: 100%;
  height: 100%;
  padding: 20px;
  padding-top: 30px;
  box-sizing: border-box;
}

.grid-item h1 {
  font-family: Emilys Candy;
  color: #eee1d7;
  -webkit-text-stroke: 0.02px white;
}

.link a {
  font-family: Emilys Candy;
  color: #eee1d7;
  -webkit-text-stroke: 0.01px white;
  font-size: 1.25rem;
  transition: transform, filter 0.3s ease;
  cursor: url(https://lettyverse.neocities.org/cafe-reviews/cursor.png) 4 0, pointer;
}

.link:hover {
  transform: scale(1.2);
}

main {
  width: 900px;
  height: auto;
  margin-top: 5px;
}

.main-grid-item {
  background-color: #92b565;
  width: 100%;
  padding: 10px;
  padding-left: 20px;
  box-sizing: border-box;
  margin-top: 360px;
  margin-left: 100px;
}

.main-grid-item h1 {
  font-family: Mansalva;
  font-weight: normal;
  color: white;
  margin-bottom: 0px;
}

.main-grid-item p {
  font-family: Schoolbell;
  color: white;
  font-size: 1.4rem;
}

.entry-title {
  display: flex;
  width: 98%;
  justify-content: space-between;
  align-items: center;
}

.sticker {
  position: absolute;
  width: 360px;
  margin-left: 1040px;
  margin-top: 0px;
  transition: transform;
}

.sticker img {
  width: 100%;
  height: 100%;
  transition: transform, filter 0.3s ease;
}

.sticker:hover {
  transform: rotate(20deg) scale(1.05);
}

.flexcontainer {
  display: flex;
  margin-left: 80px;
  margin-top: 30px;
  width: 100%;
}

.rating {
  display: flex;
  position: absolute;
  gap: 5px;
}

.rating img {
  width: 50px;
}

.rating img:hover {
  animation: spin-effect 0.8s;
}

@keyframes spin-effect {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
}

.mySlides img {
  width: 300px;
}

/* Base button wrapper styles */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%); /* Centers vertical positioning smoothly */
  user-select: none;
  z-index: 10;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Left button placement */
.prev {
  left: -90px;
}

/* Right button placement */
.next {
  right: -90px;
}

/* Styles specifically for image arrows */
.prev img, .next img {
  width: 80px;       /* Set your desired width here */
  height: auto;
  display: block;
}

/* Smooth hover scaling effect instead of fixed width shifts */
.prev:hover, .next:hover {
  transform: translateY(-50%) scale(1.15);
}