@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&family=Patrick+Hand&display=swap');

body {
    margin: 0;
    background-color: pink;
    background-image: url(../pictures/cutewal.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Comic Neue', cursive;
}

.container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-height: 100vh;
}

/* Side decorative panels */
.CenterDiv {
    background-image: url("../pictures/CuteDiv.png");
    width: 100px;
    min-height: 100vh;
    background-size: cover;
}

/* Main content */
.Center {
    position: relative;
    padding: 25px;
    width: 60vw;
    background: linear-gradient(135deg, #ffd6ec, #ffc0cb);
    border-radius: 25px;
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.5);
    border: 3px dashed white;
}

/* Cute floating stickers */
.Center::before {
    content: "⭐";
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 30px;
}

.Center::after {
    content: "💖";
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 30px;
}

/* Title */
h1 {
    font-family: 'Patrick Hand', cursive;
    font-size: 3em;
    text-align: center;
    color: #ff4da6;
}

/* About layout */
.about-section {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* Polaroid image style */
.side-img {
    height: 200px;
    background: white;
    padding: 10px;
    border-radius: 10px;
    transform: rotate(-3deg);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* Friend book card */
.friend-book {
    background: #fff0f6;
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #ffb6d9;
    box-shadow: inset 0 0 10px rgba(255,182,217,0.5);
    width: 100%;
}

.friend-book h2 {
    text-align: center;
    color: #ff69b4;
    margin-bottom: 10px;
}

/* Entries */
.entry {
    background: white;
    padding: 10px;
    margin: 10px 0;
    border-radius: 12px;
    border: 2px dotted #ffb6d9;
    transition: 0.2s;
}

.entry:hover {
    transform: scale(1.03);
}

.entry span {
    font-weight: bold;
    color: #ff4da6;
}

/* Note */
.note {
    text-align: center;
    margin-top: 15px;
    font-style: italic;
    color: #ff69b4;
}

/* Kitty images */
.kitty-row {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    justify-content: center;
}

.kitty {
    width: 200px;
    height: 200px;
    object-fit: contain;
    transition: 0.3s;
}

.kitty:hover {
    transform: rotate(5deg) scale(1.1);
}

/* GIF */
.gif-center {
    text-align: center;
}

.gif-center img {
    width: 50%;
    border-radius: 12px;
    margin-top: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .Center {
        width: 90vw;
    }

    .CenterDiv {
        display: none;
    }
}