
/* JSON-Driven Logo Styles */
.logo-placeholder {
    width: 200px;
    height: 150px;
    background-image: url('../newimages/old-pony-martini-pub-logo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo-placeholder:hover {
    transform: scale(1.05);
}

/* Logo link styling */
.logo-link {
    cursor: pointer;
}

/* Responsive logo adjustments */
@media (max-width: 768px) {
    .logo-placeholder {
        width: 160px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .logo-placeholder {
        width: 120px;
        height: 90px;
    }
}
