
/* Disable scrolling */

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#page {
    width: 100vw;
    height: 100vh;
    position: relative;
    background: #f5c8d0; /* Your pink background */
}

/* ============ TOP VINES ============ */
.vein {
  position: absolute;
  pointer-events: none;
  z-index: 10;
}

/* Manually control each one */
.v1 {
  top: -10px;
  left: 0px;
  width: 260px;
}

.v2 {
  top: -10px;
  left: 240px;
  width: 260px;
  transform: rotate(0deg);
}

.v3 {
  top: -10px;
  left: 470px;
  width: 260px;
}

.v4 {
  top: -10px;
  left: 710px;
  width: 260px;
}

.v5 {
  top: -10px;
  left: 940px;
  width: 260px;
}

.v6 {
  top: -10px;
  right: 0px;
  width: 260px;
}

.v7 {
  top: -10px;
  left: -26px;
  width: 260px;
}


/* ============ BOTTOM GRASS ============ */
.bottom-grass2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("images/other/grass2.png") repeat-x;
    background-size: contain;
    z-index: 5;
     pointer-events: none;
}

.bottom-grass1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("images/other/grass1.png") repeat-x;
    background-size: contain;
    z-index: 7;
     pointer-events: none;
}

.bottom-left-vein {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 85px;
    height: 330px;
    z-index: 4;
    pointer-events: none; /* optional if you want click-through */
}

#vein {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



/* ============ LEFT PANEL ============ */
.left-panel {
    position: absolute;
    left: 5px;
    top: 40px;
    width: 220px;
    height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* optional */
}


/* Profile area */

.profile-container {
    position: relative;
    width: 150px;
    height: 150px;
}

.profile-pic {
    position: absolute;
    width: 115px;
    height: 115px;
    left: 30px;
    top: 18px;
    border-radius: 50%;
}

.profile-frame {
    position: absolute;
    top: 0;
    left: -10;
    width: 150px;
    height: 150px;
}


/* Cloud */
/* Weather container MUST be positioned */
#weather {
    position: absolute;
    top: 170px;
    left: 30px;
    width: 200px;
}

/* Cloud container stays relative so rain follows it */
#cloud-container {
    position: relative;
    width: 200px;
    height: 120px; /* enough space for cloud */
}

#cloud {
    width: 120px;
    height: auto; /* you forgot px */
    display: block;
}

/* Rain starts exactly under the cloud */
#rain-area {
    position: absolute;
    top: 75px;    /* same as cloud height */
    left: -10px;
    width: 120px;  /* match cloud width */
    height: 500px;
    pointer-events: none;
}

.rain-drop {
    position: absolute;
    width: 18px;
    height: auto;
    animation: fall linear forwards;
    pointer-events: none;
}

@keyframes fall {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(500px); opacity: 0; }
}



/* Cat */
#cat { 
    position: absolute;     /* lets you move it manually */
    top: 285px;             /* change these two */
    left: 50px;
    width: 75px;
    height: 35px;
    object-fit: contain;
    image-rendering: pixelated;
    cursor: pointer; 
} 

.cat-container {
    position: relative;     /* container for absolute-cat */
    width: 75px;
    height: 35px;
    border: 1px solid red;
}

.sakura-container {
    position: absolute;   /* isolates it */
    top: 330px;           /* adjust freely */
    left: 10px;           /* adjust freely */
    width: 30px;
    height: 30px;
    z-index: 9;
    /* optional: makes it invisible for clicks */
}



.sakura {
    position: absolute;
    width: 28px;
    height: 28px;
    object-fit: contain;
    image-rendering: pixelated;
    cursor: pointer;
}


.flip {
    transform: scaleX(-1);
}

/* Menu boxes */
.menu {
    margin-top: 166px;
    margin-bottom: 75px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-box {
    width: 180px;
    height: 60px;
    background: rgba(255,255,255,0.5);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    backdrop-filter: blur(4px);
    transition: 0.25s;
}

.menu-box:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.05);
}

/* ============ RIGHT SIDE DECORS ============ */
.branch {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 250px;
    z-index: 11;
    transform: rotate(8deg);
}

.lamp {
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 190px;
    z-index: 6;
}

/* ============ CONTENT AREA ============ */
#content {
    position: absolute;
    left: 300px;
    top: 100px;
    width: calc(100vw - 350px);
    height: calc(100vh - 200px);
    padding: 20px;
    overflow: hidden;
}
