@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&family=Raleway:wght@300;400&display=swap');

body {
  background: url('https://i.pinimg.com/1200x/40/ce/34/40ce3414c8a830ecfb72a5163caad2e5.jpg') center/cover no-repeat fixed;
  font-family: 'Raleway', sans-serif;
  color: #6b4f4f;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* dreamy overlay */
body::after {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 230, 240, 0.6);
  z-index: -1;
}

/* ✨ Main box centered like selachemist */
.main-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 900px;
  background: rgba(255, 200, 215, 0.6);
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 0 30px rgba(255, 180, 200, 0.4);
  backdrop-filter: blur(8px);
}

/* title */
.main-box h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 4em;
  color: #d18393;
  text-shadow: 2px 2px 6px rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

/* welcome text */
.welcome {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2em;
  color: #7a5b65;
  margin-bottom: 30px;
}

/* collage images */
.collage {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.collage img {
  width: 160px;
  border-radius: 12px;
  border: 2px solid #f4cbd3;
  box-shadow: 0 0 10px rgba(255, 180, 200, 0.4);
  transition: transform 0.3s ease;
}

.collage img:hover {
  transform: scale(1.05);
}

/* 🌸 Slide-out sidebar */
.sidebar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 100;
}

.tab {
  display: flex;
  align-items: center;
  background: rgba(255, 240, 245, 0.9);
  border: 2px solid #f9c9d5;
  border-radius: 15px 0 0 15px;
  padding: 10px 15px;
  width: 60px;
  overflow: hidden;
  transition: width 0.4s ease, background 0.3s ease;
  text-decoration: none;
  color: #b96b82;
  box-shadow: 0 4px 10px rgba(255, 150, 170, 0.3);
}

.tab img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 10px;
}

.tab span {
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-family: 'Dancing Script', cursive;
  font-size: 1.5em;
}

/* Slide out on hover */
.tab:hover {
  width: 160px;
  background: rgba(255, 225, 235, 0.95);
}

.tab:hover span {
  opacity: 1;
}

/* cute cursor */
body {
  cursor: url('bow-cursor.png') 16 16, auto;
}
