/*
Theme Name: custom-wordpress-menu-theme
Author: Devbros
Version: 1.0
*/

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f8f8f8;
}

.header {
    text-align: center;
    padding: 1em;
    background-color: #333;
    color: #fff;
}

.menu {
    display: flex;
    overflow-x: auto;
    justify-content: center;
    padding: 1em;
    background: #fff;
}

.menu-item {
    margin: 0 10px;
    text-align: center;
    border: 2px solid black;
    padding: 10px;
    width: 311px;
    height: 794px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
    background-color: #fff;
}

.menu-item:hover {
    animation: heartbeat 1s ease-in-out 2;
}

.menu-item img {
    width: 100%;
    height: auto;
    border: 2px solid black;
}

.menu-item span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(0.95);
    }
    75% {
        transform: scale(1.02);
    }
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 150px;
    background: #ddd;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1em;
}

.sidebar img.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 10px 0;
}

.sidebar .list-menu {
    width: 100%;
    text-align: left;
    padding: 1em;
}

.banner {
    background: #4CAF50;
    padding: 1em;
    text-align: center;
    color: #fff;
    font-size: 1.2em;
}

.carousel, .footer, .icon-links {
    padding: 2em;
    text-align: center;
}

.footer {
    background: #222;
    color: #fff;
}