.title-style{
    font-size: 2rem;
    margin-bottom: 2px;
    font-weight: 800;
    font-family: "Josefin Sans", sans-serif;
    margin-bottom: 2vh;
    text-shadow: 3px 1px 1px #f1f1f1;
}

.p-style{
    font-family: "Roboto", sans-serif;
    font-size: 19px;
    margin-bottom: 4vh;
}

.menu-page {
    display: flex;
    
    width: 100vw;
    flex-direction: row;
    overflow: hidden;
    margin-top: 9vh; /*additional adjust*/
}

.left-side, .right-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1s forwards;
}

  /* Optional: different background colors */
.left-side {
    background-color: #bfe4f7;
    animation-delay: 0.2s;
}

.right-side {
    background-color: #f1f1f1;
    animation-delay: 0.7s;
}

.left-side img, .right-side img {
    max-width: 70%;
    height: auto;
    margin-top: 1rem;
    border-radius: 7px 0 7px 0;
    box-shadow: 4px 2px 2px #111;
}

.left-link, .right-link{
    margin-top: 18px;
    font-weight: 600;
    font-size: 22px;
    color: rgb(54, 84, 255);
}
.left-link:hover, .right-link:hover{
    color: rgb(244, 62, 120);
    font-weight: bolder;
    font-size: 24px;
}

  /* ====== Animation Keyframes ====== */
@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
        }
    }


  /* ====== Responsive for mobile ====== */
@media (max-width: 768px) {
    .menu-page {
        flex-direction: column;
        margin-top: 14%;
        height: auto; /* Allow content to grow naturally on mobile */
    }

    .left-side, .right-side {
        width: 100%;
        height: 50vh;
    }

    .left-side img, .right-side img {
        max-width: 50%;
        height: auto;
        margin-top: 2%;
    }
}

.site-footer{
    margin-top: 0;
}



.show-more-btn {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #8dd1f8;
    color: rgb(84, 84, 84);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
}

.show-more-btn:hover {
    background-color: #f05757;
    color: rgb(231, 231, 231);
    font-weight: 600;
}