.logo-container {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-container.hidden {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    pointer-events: none;
}

.logo-container:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    width: 100%;
    max-width: 1300px;
    margin: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.menu-container.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.menu-button {
    width: 100%;
    height: 300px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.menu-button img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.menu-button:hover {
    transform: scale(1.05);
}

#submenu-content {
    display: flex;
    justify-content: center;
    align-items: center;

    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1600px;
    margin: auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
}

#submenu-content > div:hover {
    transform: scale(1.05);
}

#submenu-content img {
    width: 120%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

#submenu-content h2 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
}

#submenu-content p {
    font-size: 1.2rem;
    text-align: center;
    color: gray;
}