/* Enhanced Logo Styles */
.logo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    border-radius: 8px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.logo img {
    max-height: 50px !important;
    width: auto;
    filter: brightness(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text .brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #e6d595;
    letter-spacing: 0.5px;
}

.logo-text .brand-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    color: #f4e8ba;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .logo-text {
        display: none;
    }

    .logo {
        padding: 8px 12px;
    }
}